* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #221F20;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

main {
	max-width: 480px;
	margin: 0 auto;
	padding: 40px 24px 48px;
}

/* Logo */
.logo-container {
	text-align: center;
	margin-bottom: 8px;
}

.logo {
	width: 140px;
	height: auto;
}

.subtitulo {
	text-align: center;
	font-size: 14px;
	color: #888;
	margin-bottom: 32px;
	letter-spacing: 0.02em;
}

/* CTAs */
.cta-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 36px;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.2s, transform 0.1s;
	cursor: pointer;
}

.btn:active {
	transform: scale(0.97);
}

.btn-catalogo {
	background: #CD2721;
	color: #fff;
}

.btn-catalogo:visited {
	color: #fff;
}

.btn-whatsapp {
	background: #25D366;
	color: #fff;
}

.btn-whatsapp:visited {
	color: #fff;
}

/* Info section */
.info-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 36px;
}

.info-card h2 {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #CD2721;
	margin-bottom: 8px;
}

.info-card p {
	font-size: 15px;
	line-height: 1.6;
}

/* Contact links */
.contact-link {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	line-height: 2;
	text-decoration: none;
	padding: 4px 8px;
	margin: 2px -8px;
	border-radius: 8px;
	transition: background 0.15s;
}

.contact-link,
.contact-link:visited {
	color: #221F20;
}

.contact-link:hover {
	background: #f5f5f5;
}

.contact-link svg {
	flex-shrink: 0;
	color: #CD2721;
}

.whatsapp-link svg {
	color: #25D366;
}

/* Ubicación */
.ubicacion-section h2 {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #CD2721;
	margin-bottom: 8px;
}

.direccion {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 2px;
}

.detalle {
	font-size: 13px;
	color: #888;
	margin-bottom: 12px;
}

/* Mapa */
.mapa-container {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #e8e8e8;
}

.mapa-container iframe {
	width: 100%;
	height: 220px;
	border: 0;
	display: block;
}

/* Desktop — centrado vertical, sin scroll */
@media (min-width: 700px) {
	body {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 100vh;
	}

	main {
		max-width: 820px;
		padding: 40px;
	}

	.logo {
		width: 120px;
	}

	.subtitulo {
		margin-bottom: 24px;
	}

	.cta-row {
		flex-direction: row;
		max-width: 440px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 28px;
	}

	.btn {
		flex: 1;
		padding: 12px 20px;
		font-size: 15px;
	}

	/* Info en fila */
	.info-section {
		flex-direction: row;
		gap: 0;
		margin-bottom: 24px;
	}

	.info-card {
		flex: 1;
		text-align: center;
	}

	.info-card + .info-card {
		border-left: 1px solid #e8e8e8;
	}

	.contact-link {
		justify-content: center;
	}

	/* Ubicación al lado del mapa */
	.ubicacion-section {
		display: flex;
		gap: 24px;
		align-items: stretch;
	}

	.ubicacion-texto {
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.detalle {
		margin-bottom: 0;
	}

	.mapa-container {
		flex: 1;
	}

	.mapa-container iframe {
		height: 100%;
		min-height: 150px;
	}
}
