:root {
	--aa-blue: #22689e;
	--aa-blue-dark: #1a527d;
	--aa-blue-mid: #2a7ab8;
	--aa-sea: #3a8f9c;
	--aa-blush: #e8a0b0;
	--aa-blush-soft: #f7e8ec;
	--aa-sand: #f6f3f5;
	--aa-ink: #2a2430;
	--aa-text: #3d3742;
	--aa-muted: #7a7280;
	--aa-border: #e6dde3;
	--aa-font: "Outfit", "Segoe UI", system-ui, sans-serif;
	--aa-display: "Source Serif 4", Georgia, "Times New Roman", serif;
	--aa-max: 1000px;
	--aa-max-wide: 1280px;
	--aa-radius: 18px;
	--aa-shadow: 0 16px 42px rgba(34, 104, 158, .14);
	--aa-shadow-soft: 0 10px 28px rgba(42, 36, 48, .07);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--aa-font);
	color: var(--aa-text);
	line-height: 1.65;
	background:
		radial-gradient(900px 420px at 8% -5%, rgba(232, 160, 176, .14), transparent 55%),
		radial-gradient(1000px 420px at 100% 0%, rgba(34, 104, 158, .1), transparent 50%),
		linear-gradient(180deg, #faf7f8 0%, #fff 32%, #fff 100%);
	font-size: 15.5px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--aa-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { color: var(--aa-ink); font-weight: 600; line-height: 1.25; letter-spacing: -.015em; }

.aa-wrap { width: min(var(--aa-max), 92vw); margin: 0 auto; }
.aa-wrap--wide { width: min(var(--aa-max-wide), 96vw); }
.aa-page-narrow { width: min(860px, 100%); margin-left: auto; margin-right: auto; }
.aa-page-mid { width: min(1280px, 96vw); margin-left: auto; margin-right: auto; }

@keyframes aa-rise {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes aa-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
	.aa-gallery-open:hover img,
	.aa-gallery-open:focus-visible img {
		transform: none;
	}
	.aa-gallery-item:hover {
		transform: none;
	}
}

/* Top bar */
.aa-topbar {
	background: linear-gradient(90deg, var(--aa-blue-dark), var(--aa-blue) 55%, #2a7ab8);
	color: #fff;
	font-size: 13px;
	padding: .55rem 0;
}
.aa-topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.aa-topbar a { color: #fff; text-decoration: none; opacity: .95; }
.aa-topbar a:hover { text-decoration: underline; opacity: 1; }
.aa-topbar-sep { opacity: .45; margin: 0 .35rem; }
.aa-topbar-tools {
	display: flex;
	align-items: center;
	gap: .75rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.aa-topbar .aa-lang-flag {
	opacity: .9;
	border-color: rgba(255,255,255,.25);
	background: rgba(255,255,255,.08);
}
.aa-topbar .aa-lang-flag:hover,
.aa-topbar .aa-lang-flag.is-active {
	opacity: 1;
	border-color: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,.18);
	background: rgba(255,255,255,.18);
}
.aa-topbar .aa-icon-btn {
	width: 32px;
	height: 32px;
	background: rgba(255,255,255,.14);
	color: #fff;
}
.aa-topbar .aa-icon-btn:hover {
	background: #fff;
	color: var(--aa-blue-dark);
	transform: translateY(-1px);
}
.aa-topbar .aa-icon-btn--wa:hover { background: #25d366; color: #fff; }
.aa-topbar .aa-icon-btn--fb:hover { background: #1877f2; color: #fff; }

/* Header / logo centrado encima del menú */
.aa-header {
	background: rgba(255,255,255,.96);
	border-bottom: 1px solid var(--aa-border);
	backdrop-filter: blur(8px);
	position: sticky;
	top: 0;
	z-index: 40;
}
.aa-header-bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 0 .35rem;
}
.aa-brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.aa-brand img,
.aa-brand .custom-logo {
	height: 92px;
	width: auto;
	max-width: min(280px, 70vw);
	object-fit: contain;
}
.aa-nav {
	padding: .15rem 0 .95rem;
	border-top: 1px solid transparent;
}
.aa-nav .aa-menu,
.aa-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: .1rem .2rem;
}
.aa-nav a {
	color: #5c6b75;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .01em;
	text-decoration: none;
	padding: .55rem .9rem;
	display: inline-block;
	border-radius: 999px;
	transition: color .2s ease, background .2s ease;
}
.aa-nav a:hover {
	color: var(--aa-blue);
	background: rgba(34, 104, 158, .08);
	text-decoration: none;
}
.aa-nav .current-menu-item > a,
.aa-nav .current_page_item > a {
	color: #fff;
	background: var(--aa-blue);
	text-decoration: none;
}

/* Banderas idioma */
.aa-lang-flags {
	display: flex;
	align-items: center;
	gap: .35rem;
}
.aa-lang-flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	padding: 2px;
	border-radius: 4px;
	border: 1px solid transparent;
	text-decoration: none !important;
	opacity: .72;
	transition: opacity .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.aa-lang-flag:hover,
.aa-lang-flag.is-active {
	opacity: 1;
	border-color: rgba(34, 104, 158, .35);
	box-shadow: 0 2px 8px rgba(34, 104, 158, .18);
}
.aa-lang-flag.is-active { border-color: var(--aa-blue); }
.aa-flag-svg {
	display: block;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

/* Iconos contacto */
.aa-header-icons {
	display: flex;
	align-items: center;
	gap: .35rem;
}
.aa-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: #eef5fa;
	color: var(--aa-blue-dark);
	text-decoration: none !important;
	transition: transform .2s ease, background .2s ease, color .2s ease;
}
.aa-icon-btn:hover {
	background: var(--aa-blue);
	color: #fff;
	transform: translateY(-1px);
}
.aa-icon-btn--wa { background: #e8f8ef; color: #128c7e; }
.aa-icon-btn--wa:hover { background: #25d366; color: #fff; }
.aa-icon-btn--fb { background: #e8f0fb; color: #1877f2; }
.aa-icon-btn--fb:hover { background: #1877f2; color: #fff; }

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.aa-skip-link.screen-reader-text:focus {
	clip: auto;
	width: auto;
	height: auto;
	margin: 0;
	padding: .75rem 1.1rem;
	left: 1rem;
	top: 1rem;
	z-index: 100000;
	overflow: visible;
	white-space: normal;
	background: var(--aa-blue);
	color: #fff !important;
	border-radius: 10px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

@media (min-width: 769px) {
	.aa-nav-toggle { display: none !important; }
	.aa-header-bar {
		flex-wrap: wrap;
	}
	.aa-nav-shell {
		flex: 0 0 100%;
		width: 100%;
	}
	.aa-nav {
		position: static;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		width: auto;
		max-height: none;
		padding: .15rem 0 .95rem;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		background: transparent;
		overflow: visible;
	}
}
.aa-nav-toggle {
	display: none;
	position: relative;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	background: #fff;
	border: 1px solid var(--aa-border);
	border-radius: 10px;
	padding: 10px;
	cursor: pointer;
	z-index: 2;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.aa-nav-toggle-bar {
	display: block;
	height: 2px;
	background: #1c2a32;
	border-radius: 1px;
	transition: transform .22s ease, opacity .22s ease;
}
.aa-nav-toggle[aria-expanded="true"] {
	background: var(--aa-blue);
	border-color: var(--aa-blue);
	box-shadow: 0 10px 24px rgba(34, 104, 158, .28);
}
.aa-nav-toggle[aria-expanded="true"] .aa-nav-toggle-bar {
	background: #fff;
}
.aa-nav-toggle[aria-expanded="true"] .aa-nav-toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.aa-nav-toggle[aria-expanded="true"] .aa-nav-toggle-bar:nth-child(2) {
	opacity: 0;
}
.aa-nav-toggle[aria-expanded="true"] .aa-nav-toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.aa-nav-backdrop {
	display: none;
}

@media (max-width: 768px) {
	.aa-nav-shell {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		z-index: 52;
	}

	.aa-nav-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 45;
		background: rgba(12, 24, 34, .2);
		opacity: 0;
		pointer-events: none;
		transition: opacity .22s ease;
	}
	.aa-nav-backdrop.is-visible {
		opacity: 1;
		pointer-events: auto;
	}

	.aa-nav {
		position: absolute;
		top: calc(100% + .65rem);
		right: 0;
		left: auto;
		bottom: auto;
		width: min(16.75rem, calc(100vw - 1.5rem));
		max-height: min(72vh, 28rem);
		z-index: 50;
		margin: 0;
		padding: .45rem;
		border: 1px solid rgba(34, 104, 158, .14);
		border-radius: 16px;
		background: #fff;
		box-shadow:
			0 1px 0 rgba(255, 255, 255, .95) inset,
			0 18px 44px rgba(12, 24, 34, .16),
			0 6px 0 rgba(34, 104, 158, .08);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-6px) scale(.97);
		transform-origin: top right;
		transition:
			transform .22s cubic-bezier(.2, .8, .2, 1),
			opacity .22s ease,
			visibility .22s ease;
	}
	.aa-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0) scale(1);
	}
	.aa-nav .aa-menu,
	.aa-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: .15rem;
	}
	.aa-nav a {
		display: block;
		padding: .72rem .85rem;
		border-radius: 10px;
		font-size: 1rem;
		font-weight: 500;
		color: var(--aa-text);
		background: transparent;
		min-height: 44px;
		line-height: 1.35;
		text-align: left;
		border-bottom: 0;
		transition: color .2s ease, background .2s ease;
	}
	.aa-nav a:hover {
		color: var(--aa-blue);
		background: rgba(34, 104, 158, .08);
	}
	.aa-nav .current-menu-item > a,
	.aa-nav .current_page_item > a {
		color: var(--aa-blue);
		background: rgba(34, 104, 158, .1);
		font-weight: 700;
	}
}

/* Hero — mismo ancho/caja que el hero de Servicios (foto + título) */
.aa-hero {
	position: relative;
	overflow: hidden;
	background: #0d1a24;
	isolation: isolate;
}
.aa-hero--boxed {
	/* Misma huella que aa-page-hero--boxed: cols 1.05+1, media 4/3 */
	aspect-ratio: 2.05 / 0.7875;
	min-height: 280px;
	max-height: none;
	margin: 0 auto;
	border-radius: 22px;
	border: 1px solid rgba(255,255,255,.95);
	box-shadow:
		0 1px 0 rgba(255,255,255,.9) inset,
		0 14px 36px rgba(34, 104, 158, .16),
		0 4px 0 rgba(34, 104, 158, .1),
		0 22px 50px rgba(42, 36, 48, .06);
	transform: perspective(1200px) rotateX(.4deg);
	touch-action: pan-y pinch-zoom;
}
.aa-hero-slides, .aa-hero-slide { position: absolute; inset: 0; }
.aa-hero-slide {
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 1s ease, transform 6.5s ease;
}
.aa-hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
}
.aa-hero-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.aa-hero-veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(105deg, rgba(10, 24, 36, .42) 0%, rgba(10, 24, 36, .22) 48%, rgba(10, 24, 36, .1) 100%),
		linear-gradient(to top, rgba(10, 24, 36, .32), transparent 45%);
	pointer-events: none;
}
.aa-hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(1.4rem, 3.5vw, 2.4rem) clamp(1.25rem, 3vw, 2.2rem) clamp(2.6rem, 5vw, 3.4rem);
	color: #fff;
	animation: aa-rise .9s ease both;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .35), 0 8px 24px rgba(0, 0, 0, .25);
}
.aa-hero-brand {
	margin: 0 0 .55rem;
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	font-family: var(--aa-display);
	font-weight: 600;
	letter-spacing: .02em;
	text-transform: none;
	color: #fff;
}
.aa-hero-title {
	margin: 0 0 .65rem;
	max-width: 16ch;
	font-family: var(--aa-font);
	font-size: clamp(1.35rem, 3.2vw, 1.85rem);
	font-weight: 500;
	line-height: 1.25;
	color: rgba(255,255,255,.92);
	text-wrap: balance;
}
.aa-hero-sub {
	margin: 0;
	max-width: 36ch;
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: rgba(255,255,255,.88);
	line-height: 1.5;
}
.aa-hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.aa-btn--hero {
	background: #fff;
	color: var(--aa-blue-dark) !important;
	box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.aa-btn--hero:hover { background: #e8f4fa; color: var(--aa-ink) !important; }
.aa-btn--hero-ghost {
	background: transparent;
	color: #fff !important;
	border: 1px solid rgba(255,255,255,.55);
	box-shadow: none;
}
.aa-btn--hero-ghost:hover {
	background: rgba(255,255,255,.12);
	color: #fff !important;
}
.aa-hero-dots {
	position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
	display: flex; gap: 8px; z-index: 3;
}
.aa-hero-dots button {
	width: 9px; height: 9px; border-radius: 50%; border: 0;
	background: rgba(255,255,255,.4); cursor: pointer; padding: 0;
	transition: transform .2s, background .2s;
}
.aa-hero-dots button.is-active { background: #fff; transform: scale(1.2); }

/* Feature triad — estilo cards (inicio) */
.aa-home-features { padding-top: 2.25rem; }
.aa-home-feature-track {
	margin-top: 0;
}
.aa-home-feature-track .aa-service-card {
	min-height: 0;
}
.aa-home-feature-track .aa-service-body h3,
.aa-home-feature-track .aa-service-body p {
	min-height: 0;
}
.aa-home-feature-track .aa-service-body p { margin-bottom: .85rem; }
.aa-feature-link--ink {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	margin-top: auto;
	color: var(--aa-blue) !important;
	font-size: .88rem;
	font-weight: 700;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(34, 104, 158, .35);
	padding-bottom: .1rem;
	transition: border-color .2s, gap .2s;
}
.aa-feature-link--ink::after { content: "→"; }
.aa-feature-link--ink:hover { border-color: var(--aa-blue); gap: .5rem; }

/* Legacy feature panels (por si quedan en caché) */
.aa-features-shell {
	position: relative;
	z-index: 3;
	margin-top: -3.25rem;
	padding: 0 0 1rem;
}
.aa-features-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.15rem;
}
.aa-feature {
	position: relative;
	color: #fff;
	border-radius: 18px;
	overflow: hidden;
	isolation: isolate;
	box-shadow: var(--aa-shadow);
	transition: transform .35s ease, box-shadow .35s ease;
}
.aa-feature:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 60px rgba(20, 61, 92, .22);
}
.aa-feature--1 { background: linear-gradient(160deg, #1e6fa3 0%, #155a86 100%); }
.aa-feature--2 { background: linear-gradient(160deg, #176b78 0%, #0f5560 100%); }
.aa-feature--3 { background: linear-gradient(160deg, #1a4f73 0%, #123a56 100%); }
.aa-feature-frame {
	position: absolute;
	inset: 10px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 12px;
	pointer-events: none;
	z-index: 1;
}
.aa-feature-frame::before,
.aa-feature-frame::after {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	border-color: rgba(255,255,255,.7);
	border-style: solid;
}
.aa-feature-frame::before {
	top: -1px; left: -1px;
	border-width: 2px 0 0 2px;
}
.aa-feature-frame::after {
	bottom: -1px; right: -1px;
	border-width: 0 2px 2px 0;
}
.aa-feature-inner {
	position: relative;
	z-index: 2;
	padding: 2rem 1.55rem 1.75rem;
	text-align: left;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.aa-feature-num {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .16em;
	opacity: .55;
	margin-bottom: .85rem;
}
.aa-feature-icon {
	width: 42px;
	height: 42px;
	margin: 0 0 1rem;
	color: #fff;
	opacity: .95;
}
.aa-feature h2 {
	color: #fff;
	font-size: 1.15rem;
	font-family: var(--aa-display);
	font-weight: 600;
	margin: 0 0 .65rem;
	line-height: 1.25;
	text-transform: none;
	letter-spacing: -.01em;
}
.aa-feature p {
	margin: 0 0 1.25rem;
	font-size: .92rem;
	opacity: .9;
	line-height: 1.55;
	flex: 1;
}
.aa-feature-link {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: #fff !important;
	font-size: .88rem;
	font-weight: 700;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(255,255,255,.45);
	padding-bottom: .15rem;
	align-self: flex-start;
	transition: border-color .2s, gap .2s;
}
.aa-feature-link::after { content: "→"; transition: transform .2s; }
.aa-feature-link:hover { border-color: #fff; }
.aa-feature-link:hover::after { transform: translateX(3px); }

/* Home widgets — ocultos (ya no se usan en inicio) */
.aa-home-widgets-section { display: none; }
.aa-home-sidebar {
	display: grid;
	gap: 1.15rem;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.aa-home-sidebar .aa-widget,
.aa-widget {
	position: relative;
	background: #fff;
	border: 1px solid var(--aa-border);
	border-radius: 16px;
	padding: 1.35rem 1.3rem 1.4rem;
	box-shadow: var(--aa-shadow-soft);
}
.aa-home-sidebar .aa-widget::before {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(30, 95, 140, .12);
	border-radius: 10px;
	pointer-events: none;
}
.aa-widget-title {
	margin: 0 0 .75rem;
	font-family: var(--aa-display);
	font-size: 1.15rem;
	color: var(--aa-blue-dark);
	padding-bottom: .5rem;
	border-bottom: 2px solid rgba(30, 95, 140, .15);
}
.aa-widget ul { margin: 0; padding-left: 1.1rem; }
.aa-widget p:last-child { margin-bottom: 0; }

/* Welcome + CTA */
.aa-eyebrow {
	margin: 0 0 .5rem;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--aa-sea);
}
.aa-welcome { padding-top: 1.5rem; }
.aa-welcome-panel {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	align-items: stretch;
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.95);
	box-shadow:
		0 1px 0 rgba(255,255,255,.9) inset,
		0 14px 36px rgba(34, 104, 158, .16),
		0 4px 0 rgba(34, 104, 158, .1),
		0 22px 50px rgba(42, 36, 48, .06);
}
.aa-welcome-copy {
	padding: clamp(1.5rem, 3.5vw, 2.35rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.aa-welcome-copy h2 {
	font-family: var(--aa-display);
	font-size: clamp(1.55rem, 3vw, 2.15rem);
	margin: 0 0 1rem;
	color: var(--aa-blue-dark);
}
.aa-welcome-copy .aa-notice-banner { margin-bottom: 1.15rem; }
.aa-welcome-copy > p { color: var(--aa-muted); margin: 0 0 .85rem; font-size: .95rem; line-height: 1.6; }
.aa-welcome-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.15rem; }
.aa-welcome-media {
	margin: 0;
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	min-height: 0;
	background: #123;
}
.aa-welcome-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s ease;
}
.aa-welcome-media:hover img { transform: scale(1.04); }
.aa-welcome-media figcaption {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 1.1rem 1.2rem;
	background: linear-gradient(transparent, rgba(10,24,36,.75));
	color: #fff;
	font-size: .88rem;
	font-weight: 600;
}
.aa-cta-strip {
	background: linear-gradient(100deg, var(--aa-blue-dark), var(--aa-blue) 55%, var(--aa-sea));
	color: #fff;
	padding: 1.6rem 0;
	margin-top: 1rem;
}
.aa-cta-strip-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}
.aa-cta-strip strong { display: block; font-size: 1.15rem; margin-bottom: .2rem; }
.aa-cta-strip span { opacity: .85; font-size: .9rem; }

/* Content sections */
.aa-section { padding: 3rem 0; }
.aa-section--alt { background: linear-gradient(180deg, var(--aa-sand), #fff); }
.aa-section h1, .aa-section h2 {
	font-size: clamp(1.4rem, 3vw, 1.85rem);
	margin: 0 0 1rem;
}
.aa-prose { max-width: 780px; margin: 0 auto; }
.aa-prose p { margin: 0 0 1rem; color: #555; }
.aa-notice-banner {
	background: linear-gradient(165deg, #eef6fb, #f7fafc);
	border: 1px solid rgba(34, 104, 158, .18);
	border-left: 4px solid var(--aa-blue);
	border-radius: 14px;
	padding: 1rem 1.2rem;
	margin: 0 0 1.5rem;
	color: var(--aa-ink);
	box-shadow: 0 8px 20px rgba(34, 104, 158, .08);
}
.aa-notice-banner strong {
	display: block;
	color: var(--aa-blue-dark);
	font-family: var(--aa-display);
	font-size: 1.05rem;
	margin-bottom: .35rem;
}
.aa-notice-banner p {
	margin: 0;
	color: var(--aa-muted);
	font-size: .92rem;
	line-height: 1.5;
}

/* Cards / services grid */
.aa-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.aa-card {
	background: #fff;
	border: 1px solid var(--aa-border);
	padding: 1.25rem;
}
.aa-card h3 { margin: 0 0 .4rem; font-size: 1.05rem; color: var(--aa-blue); }
.aa-card p { margin: 0; color: #666; font-size: .92rem; }

/* Pricing */
.aa-prices {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.aa-price-card {
	border: 1px solid var(--aa-border);
	padding: 1.75rem;
	text-align: center;
	background: #fff;
}
.aa-price-card h3 { color: var(--aa-blue); margin-top: 0; }
.aa-price-amount {
	font-size: 2.2rem;
	font-weight: 700;
	color: #222;
	margin: .5rem 0;
}
.aa-price-amount span { font-size: 1rem; font-weight: 500; color: #777; }
.aa-price-card ul {
	list-style: none; margin: 1rem 0 0; padding: 0; text-align: left;
}
.aa-price-card li {
	padding: .4rem 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: .92rem;
}

/* Gallery */
.aa-gallery-head { text-align: center; }
.aa-gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	justify-content: center;
	margin-bottom: 1.5rem;
}
.aa-gallery-filter {
	border: 1px solid var(--aa-border);
	background: linear-gradient(165deg, #fff, #fbf8fa);
	color: var(--aa-muted);
	padding: .5rem 1.05rem;
	border-radius: 999px;
	cursor: pointer;
	font-size: .88rem;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(34, 104, 158, .06);
	transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.aa-gallery-filter:hover { border-color: var(--aa-blue); color: var(--aa-blue); }
.aa-gallery-filter.is-active {
	background: var(--aa-blue);
	color: #fff;
	border-color: var(--aa-blue);
	box-shadow: 0 8px 18px rgba(34, 104, 158, .22);
}
.aa-gallery-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}
.aa-gallery-item {
	margin: 0;
	flex: 0 1 calc(25% - .75rem);
	width: calc(25% - .75rem);
	max-width: 280px;
	min-width: min(100%, 200px);
	border-radius: 18px;
	overflow: hidden;
	background: #1a2832;
	border: 1px solid var(--aa-border);
	box-shadow:
		0 1px 0 rgba(255,255,255,.95) inset,
		0 10px 24px rgba(34, 104, 158, .1),
		0 3px 0 rgba(34, 104, 158, .08);
	content-visibility: auto;
	contain-intrinsic-size: 220px 165px;
	transition: transform .22s ease, box-shadow .22s ease;
}
.aa-gallery-item:hover {
	transform: translateY(-3px);
	box-shadow:
		0 1px 0 #fff inset,
		0 16px 32px rgba(34, 104, 158, .16),
		0 4px 0 rgba(34, 104, 158, .1);
}
.aa-gallery-item.is-hidden,
.aa-gallery-item.is-filtered { display: none; }
.aa-gallery-open {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.aa-gallery-open img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: translateZ(0) scale(1);
	transition: transform .28s ease;
	backface-visibility: hidden;
}
.aa-gallery-open:hover img,
.aa-gallery-open:focus-visible img {
	transform: translateZ(0) scale(1.04);
}
.aa-gallery-overlay {
	position: absolute;
	inset: auto 0 0 0;
	display: flex;
	align-items: flex-end;
	padding: .85rem 1rem;
	color: #fff;
	pointer-events: none;
	background: linear-gradient(transparent, rgba(20, 40, 55, .72));
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .22s ease, transform .22s ease;
}
.aa-gallery-open:hover .aa-gallery-overlay,
.aa-gallery-open:focus-visible .aa-gallery-overlay {
	opacity: 1;
	transform: translateY(0);
}
.aa-gallery-cap { margin: 0; font-size: .85rem; font-weight: 600; }
.aa-gallery-dots { margin-top: 1.35rem; }

@media (max-width: 959px) {
	.aa-gallery-item {
		flex-basis: calc(33.333% - .7rem);
		width: calc(33.333% - .7rem);
		max-width: 260px;
	}
}
@media (max-width: 699px) {
	.aa-gallery-item {
		flex-basis: calc(50% - .5rem);
		width: calc(50% - .5rem);
		max-width: none;
		min-width: 0;
	}
}

.aa-lightbox {
	position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.9);
	display: grid; place-items: center; padding: 1rem;
}
.aa-lightbox[hidden] { display: none; }
.aa-lightbox-stage img { max-height: 80vh; max-width: 100%; margin: 0 auto; }
.aa-lightbox-caption, .aa-lightbox-counter { color: #ddd; text-align: center; margin: .5rem 0 0; }
.aa-lightbox-close, .aa-lightbox-prev, .aa-lightbox-next {
	position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff;
	width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.4rem;
}
.aa-lightbox-close { top: 1rem; right: 1rem; }
.aa-lightbox-prev { left: .5rem; top: 50%; transform: translateY(-50%); }
.aa-lightbox-next { right: .5rem; top: 50%; transform: translateY(-50%); }

/* Map / contact */
.aa-map { position: relative; overflow: hidden; border: 1px solid var(--aa-border); }
.aa-map iframe { width: 100%; min-height: 380px; border: 0; }
.aa-map-info {
	position: absolute; top: 10px; left: 10px; background: #fff;
	padding: .5rem .75rem; box-shadow: 0 2px 8px rgba(0,0,0,.12); font-size: .85rem;
}
.aa-contact-grid {
	display: grid; gap: 2rem;
	grid-template-columns: 1.2fr .8fr;
}
.aa-contact-form label { display: block; font-weight: 600; margin-bottom: .85rem; font-size: .9rem; }
.aa-contact-form input:not([type="checkbox"]),
.aa-contact-form textarea,
.aa-contact-form select {
	width: 100%; margin-top: .3rem; padding: .65rem .7rem;
	border: 1px solid #ccc; font: inherit; font-size: 16px;
}
.aa-contact-form textarea { min-height: 120px; resize: vertical; }
.aa-honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.aa-form-check {
	margin: 0 0 1rem;
}
.aa-privacy-check {
	margin: 0 0 1.1rem;
}
.aa-form-check-label {
	display: flex !important;
	align-items: flex-start;
	gap: .75rem;
	margin: 0 !important;
	font-weight: 500 !important;
	font-size: .92rem;
	line-height: 1.45;
	color: var(--aa-text);
	cursor: pointer;
}
.aa-privacy-check .aa-form-check-label {
	align-items: flex-start;
}
.aa-privacy-check .aa-form-check input[type="checkbox"] {
	margin-top: 0.18em !important;
}
.aa-form-check input[type="checkbox"] {
	appearance: auto;
	-webkit-appearance: checkbox;
	width: 1.125rem !important;
	height: 1.125rem;
	min-width: 1.125rem;
	margin: 0 !important;
	padding: 0 !important;
	flex-shrink: 0;
	accent-color: var(--aa-blue);
	cursor: pointer;
}
.aa-form-check-text {
	flex: 1;
	min-width: 0;
	line-height: 1.45;
}
.aa-form-check-error {
	display: block;
	margin: .5rem 0 0;
	padding-left: calc(1.125rem + .75rem);
	font-size: .88rem;
	font-weight: 500;
	line-height: 1.4;
	color: #b42318;
}
.aa-form-check-error[hidden] {
	display: none;
}
.aa-form-check-text a {
	color: var(--aa-blue);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.aa-btn {
	display: inline-block; background: var(--aa-blue); color: #fff !important;
	border: 0; padding: .75rem 1.45rem; font-weight: 600; cursor: pointer; font-size: .95rem;
	border-radius: 999px; letter-spacing: .01em;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
	box-shadow: 0 8px 18px rgba(34, 104, 158, .22);
}
.aa-btn:hover { background: var(--aa-blue-dark); text-decoration: none; transform: translateY(-1px); }
.aa-notice { padding: .75rem 1rem; margin-bottom: 1rem; }
.aa-notice--ok { background: #e6f6ee; }
.aa-notice--err { background: #fdeaea; }
.aa-notice--warn { background: #fff6e6; }
.aa-contact-aside h3 { color: var(--aa-blue); margin-top: 0; }
.aa-contact-aside p { margin: .35rem 0; color: #555; }

/* Footer — mismo azul de la topbar (banderas), con degradado */
.aa-footer {
	background:
		radial-gradient(ellipse 70% 80% at 0% 100%, rgba(58, 143, 156, .35), transparent 55%),
		radial-gradient(ellipse 55% 70% at 100% 0%, rgba(42, 122, 184, .45), transparent 50%),
		linear-gradient(135deg, var(--aa-blue-dark) 0%, var(--aa-blue) 48%, #2a7ab8 100%);
	color: rgba(255, 255, 255, .88);
	padding: 3rem 0 1.25rem;
	margin-top: 0;
	font-size: .9rem;
}
.aa-footer-grid {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: clamp(1.25rem, 4vw, 3.5rem);
}
.aa-footer-grid > div {
	flex: 1 1 0;
	min-width: 0;
}
.aa-footer-grid > div:last-child {
	text-align: right;
}
.aa-footer-grid > div:nth-child(2) {
	text-align: center;
}
.aa-footer h3 {
	color: #fff;
	font-family: var(--aa-display);
	font-size: 1.05rem;
	margin: 0 0 .75rem;
}
.aa-footer a { color: #fff; }
.aa-footer a:hover { text-decoration: underline; opacity: .92; }
.aa-footer p { margin: 0 0 .5rem; line-height: 1.5; }
.aa-copy {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .22);
	margin: 2.25rem 0 0;
	padding-top: 1.1rem;
	font-size: .8rem;
	color: rgba(255, 255, 255, .78);
}

.aa-content-wrap { padding: 2rem 0 3rem; }
.aa-page-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 1.25rem;
	padding-bottom: .5rem;
	border-bottom: 2px solid var(--aa-blue);
	display: inline-block;
}

/* Page hero — caja centrada 3D (ancho mid, imagen con proporción fija) */
.aa-page-hero-outer {
	padding: 1.75rem 0 .5rem;
}
.aa-page-hero--boxed {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	margin: 0 auto;
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(255,255,255,.95);
	box-shadow:
		0 1px 0 rgba(255,255,255,.9) inset,
		0 14px 36px rgba(34, 104, 158, .16),
		0 4px 0 rgba(34, 104, 158, .1),
		0 22px 50px rgba(42, 36, 48, .06);
	transform: perspective(1200px) rotateX(.4deg);
}
.aa-page-hero-media {
	background-size: cover;
	background-position: center;
	aspect-ratio: 4 / 3;
	min-height: 0;
}
.aa-page-hero-copy {
	background: linear-gradient(155deg, var(--aa-blue-dark) 0%, var(--aa-blue) 52%, var(--aa-blue-mid) 100%);
	color: #fff;
	padding: clamp(1.4rem, 3.5vw, 2.2rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.aa-page-hero-copy h1 {
	color: #fff;
	font-family: var(--aa-display);
	font-size: clamp(1.45rem, 3.2vw, 2.05rem);
	margin: 0 0 .45rem;
	font-weight: 600;
	letter-spacing: -.01em;
	text-transform: none;
}
.aa-page-hero-highlight {
	margin: 0 0 1rem;
	padding: .6rem .85rem;
	font-family: var(--aa-display);
	font-size: clamp(1.05rem, 2.3vw, 1.22rem);
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	opacity: 1;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 12px;
}
.aa-page-hero-copy > p { margin: 0 0 .9rem; opacity: .92; font-size: .95rem; }
.aa-page-hero-copy > p.aa-page-hero-highlight { opacity: 1; font-size: clamp(1.05rem, 2.3vw, 1.22rem); }
.aa-page-hero .aa-notice-banner {
	background: rgba(255,255,255,.16);
	border: 1px solid rgba(255,255,255,.22);
	border-left: 3px solid rgba(255,255,255,.7);
	border-radius: 12px;
	color: #fff;
	backdrop-filter: blur(4px);
	box-shadow: none;
	margin-bottom: 0;
}
.aa-page-hero .aa-notice-banner strong { color: #fff; }
.aa-page-hero .aa-notice-banner p { color: rgba(255,255,255,.92); margin: .35rem 0 0; font-size: .85rem; }

/* Servicios — cards 3D + carrusel */
.aa-services-carousel { margin: 1.5rem 0 1rem; }
.aa-services-track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
	align-items: stretch;
}
.aa-services-track--static { margin-top: 1.75rem; }
.aa-nearby-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	margin: 1.5rem 0 0;
}
.aa-nearby-highlight {
	background: linear-gradient(165deg, #fff 0%, #fbf8fa 100%);
	border: 1px solid var(--aa-border);
	border-radius: 18px;
	padding: 1.35rem 1.4rem 1.45rem;
	box-shadow:
		0 1px 0 rgba(255,255,255,.95) inset,
		0 10px 24px rgba(34, 104, 158, .1),
		0 3px 0 rgba(34, 104, 158, .08);
}
.aa-nearby-highlight .aa-eyebrow {
	margin: 0 0 .45rem;
	font-size: .78rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--aa-blue);
	font-weight: 600;
}
.aa-nearby-highlight h3 {
	margin: 0 0 .55rem;
	font-size: 1.2rem;
	font-family: var(--aa-display);
	color: var(--aa-blue-dark);
}
.aa-nearby-highlight > p {
	margin: 0 0 .75rem;
	font-size: .92rem;
	color: var(--aa-muted);
	line-height: 1.55;
}
.aa-nearby-highlight > p:last-child { margin-bottom: 0; }
.aa-nearby-highlight p:last-child {
	margin: 0;
	font-size: .92rem;
	color: var(--aa-muted);
	line-height: 1.55;
}
.aa-service-card {
	display: flex;
	gap: .95rem;
	align-items: flex-start;
	height: 100%;
	min-height: 7.25rem;
	background: linear-gradient(165deg, #fff 0%, #fbf8fa 100%);
	border: 1px solid var(--aa-border);
	border-radius: 18px;
	padding: 1.1rem 1.1rem 1.15rem;
	box-shadow:
		0 1px 0 rgba(255,255,255,.95) inset,
		0 10px 24px rgba(34, 104, 158, .1),
		0 3px 0 rgba(34, 104, 158, .08);
	transition: transform .25s ease, box-shadow .25s ease;
}
.aa-service-card:hover {
	transform: translateY(-4px);
	box-shadow:
		0 1px 0 #fff inset,
		0 18px 36px rgba(34, 104, 158, .16),
		0 4px 0 rgba(34, 104, 158, .1);
}
.aa-service-card.is-hidden { display: none; }
.aa-service-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	color: var(--aa-blue);
	background: linear-gradient(145deg, #eaf4fb, #f7e8ec);
	box-shadow: 0 6px 14px rgba(34, 104, 158, .12);
}
.aa-service-icon svg { width: 28px; height: 28px; }
.aa-service-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}
.aa-service-body h3 {
	margin: 0 0 .35rem;
	font-size: 1.02rem;
	line-height: 1.3;
	min-height: calc(1.3em * 2);
	color: var(--aa-blue-dark);
	font-family: var(--aa-display);
}
.aa-service-body p {
	margin: 0;
	font-size: .88rem;
	color: var(--aa-muted);
	line-height: 1.45;
	min-height: calc(1.45em * 2);
}
.aa-services-dots {
	display: flex;
	justify-content: center;
	gap: .55rem;
	margin-top: 1.25rem;
}
.aa-services-dots button {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	padding: 0;
	background: #d5c9d0;
	cursor: pointer;
	transition: transform .2s, background .2s, width .2s;
}
.aa-services-dots button.is-active {
	background: var(--aa-blue);
	width: 22px;
	box-shadow: 0 4px 10px rgba(34, 104, 158, .3);
}

.aa-intro { max-width: 640px; margin: 0 auto 1.5rem; color: var(--aa-muted); font-size: 1.02rem; text-align: center; }
.aa-intro--stack { margin-top: -.65rem; margin-bottom: 1rem; max-width: 720px; }
.aa-section-title { margin: 0 0 1.25rem; font-size: 1.45rem; font-family: var(--aa-display); text-align: center; }
.aa-cta-line {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 1.75rem;
}
.aa-btn--cta-fixed {
	min-width: 15.5rem;
	text-align: center;
	box-sizing: border-box;
}
.aa-nearby-grid {
	display: grid;
	gap: .85rem;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.aa-nearby-item {
	display: flex;
	gap: .75rem;
	align-items: center;
	background: #fff;
	border-radius: 16px;
	padding: .95rem 1rem;
	border: 1px solid var(--aa-border);
	box-shadow: var(--aa-shadow-soft);
}
.aa-nearby-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	color: var(--aa-blue);
	background: var(--aa-blush-soft);
	flex-shrink: 0;
}
.aa-nearby-icon svg { width: 20px; height: 20px; }
.aa-nearby-item strong { display: block; font-size: .95rem; }
.aa-nearby-item em { font-style: normal; color: var(--aa-blue); font-weight: 600; font-size: .85rem; }

/* legacy icon grid kept for safety */
.aa-icon-grid { display: none; }

/* Pitch / tarifas cards — mismo lenguaje visual que servicios */
.aa-pitch-cards {
	display: grid;
	gap: 1.2rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 0;
	position: relative;
	z-index: 2;
	align-items: stretch;
}
.aa-pitch-card {
	background: linear-gradient(165deg, #fff 0%, #fbf8fa 100%);
	border-radius: 18px;
	overflow: hidden;
	box-shadow:
		0 1px 0 rgba(255,255,255,.95) inset,
		0 10px 24px rgba(34, 104, 158, .1),
		0 3px 0 rgba(34, 104, 158, .08);
	display: flex;
	flex-direction: column;
	border: 1px solid var(--aa-border);
	transition: transform .25s ease, box-shadow .25s ease;
	height: 100%;
}
.aa-pitch-card:hover {
	transform: translateY(-4px);
	box-shadow:
		0 1px 0 #fff inset,
		0 18px 36px rgba(34, 104, 158, .16),
		0 4px 0 rgba(34, 104, 158, .1);
}
.aa-pitch-card-img {
	aspect-ratio: 4 / 3;
	height: auto;
	background-size: cover;
	background-position: center;
}
.aa-pitch-card-body { padding: 1.35rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.aa-pitch-card h2 {
	font-size: 1.2rem;
	margin: 0 0 .4rem;
	color: var(--aa-blue-dark);
	font-family: var(--aa-display);
}
.aa-pitch-lead { color: var(--aa-muted); font-size: .92rem; margin: 0 0 .75rem; line-height: 1.5; }
.aa-pitch-card .aa-price-amount {
	margin: 0 0 .35rem;
	color: var(--aa-blue);
	font-family: var(--aa-display);
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.1;
}
.aa-pitch-card .aa-price-amount span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--aa-muted);
}
.aa-pitch-card ul { list-style: none; margin: 0 0 1.25rem; padding: 0; flex: 1; }
.aa-pitch-card li {
	padding: .45rem 0;
	border-bottom: 1px solid #f0f4f7;
	font-size: .9rem;
	padding-left: 1.2rem;
	position: relative;
	color: var(--aa-text);
}
.aa-pitch-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--aa-blue);
	font-weight: 700;
}
.aa-extra-list li {
	display: flex;
	justify-content: space-between;
	gap: .75rem;
	padding-left: 0 !important;
}
.aa-extra-list li::before { display: none; }
.aa-pill {
	display: inline-block;
	background: linear-gradient(145deg, #eaf4fb, #f7e8ec);
	color: var(--aa-blue);
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding: .3rem .65rem;
	border-radius: 999px;
	margin-bottom: .55rem;
}
.aa-pitch-card--xxl { box-shadow:
	0 1px 0 rgba(255,255,255,.95) inset,
	0 12px 28px rgba(34, 104, 158, .14),
	0 3px 0 rgba(34, 104, 158, .12);
}
.aa-pitch-cards--duo {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.aa-tarifas-teasers {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.aa-tarifas-extras {
	margin-top: 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.aa-tarifas-extras .aa-service-card {
	min-height: 0;
}
.aa-tarifas-extras .aa-service-body h3,
.aa-tarifas-extras .aa-service-body p {
	min-height: 0;
}
.aa-extra-price {
	display: inline-block;
	margin-top: .55rem;
	font-family: var(--aa-display);
	font-size: 1.35rem;
	color: var(--aa-blue);
	font-weight: 600;
}
.aa-pitch-note { margin: 0 0 1rem; }
.aa-tarifas-notes {
	display: flex;
	flex-direction: column;
	gap: .2rem;
	margin: -.25rem 0 1.15rem;
	font-size: .8rem;
	color: var(--aa-muted);
}
.aa-btn--light { background: #fff; color: var(--aa-blue) !important; border: 1px solid var(--aa-blue); }
.aa-btn--light:hover { background: var(--aa-blue); color: #fff !important; }
.aa-btn--outline { background: transparent; color: var(--aa-blue) !important; border: 1px solid var(--aa-blue); }
.aa-btn--outline:hover { background: var(--aa-blue); color: #fff !important; }
.aa-muted { color: #888; font-size: .88rem; }
@media (max-width: 900px) {
	.aa-tarifas-teasers { grid-template-columns: 1fr; }
	.aa-pitch-cards--duo { grid-template-columns: 1fr; }
	.aa-tarifas-extras { grid-template-columns: 1fr; }
}

/* Ocio tabs — mismo lenguaje que filtros galería / pills servicios */
.aa-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	justify-content: center;
	margin-bottom: 1.35rem;
}
.aa-tab-btn {
	border: 1px solid var(--aa-border);
	background: linear-gradient(165deg, #fff, #fbf8fa);
	color: var(--aa-muted);
	padding: .5rem 1.05rem;
	border-radius: 999px;
	cursor: pointer;
	font-size: .88rem;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(34, 104, 158, .06);
	transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.aa-tab-btn:hover { border-color: var(--aa-blue); color: var(--aa-blue); }
.aa-tab-btn.is-active {
	background: var(--aa-blue);
	border-color: var(--aa-blue);
	color: #fff;
	box-shadow: 0 8px 18px rgba(34, 104, 158, .22);
}
.aa-tab-panel {
	display: none;
	margin: 0 auto;
	max-width: 820px;
}
.aa-tab-panel.is-active,
.aa-tab-panel.is-active:not([hidden]) { display: block; }
.aa-tab-panel[hidden] { display: none !important; }
.aa-tab-panel.aa-nearby-highlight {
	margin-left: auto;
	margin-right: auto;
}
.aa-ocio-cards { display: none; /* legacy */ }

/* Area page */
.aa-area-intro { text-align: center; }
.aa-area-intro h2,
.aa-area-intro .aa-section-title {
	font-family: var(--aa-display);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin: 0 0 1rem;
}
.aa-area-intro p,
.aa-area-intro .aa-intro { color: var(--aa-muted); max-width: 42rem; margin: 0 auto; }
.aa-stats-section { padding-top: 0; }
.aa-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.1rem;
}
.aa-stat-card {
	text-align: center;
	background: linear-gradient(165deg, #fff, #fbf8fa);
	border: 1px solid var(--aa-border);
	border-radius: 18px;
	padding: 1.35rem 1rem;
	box-shadow:
		0 1px 0 #fff inset,
		0 12px 28px rgba(34, 104, 158, .1),
		0 3px 0 rgba(34, 104, 158, .08);
	height: 100%;
}
.aa-stat-card strong {
	display: block;
	font-family: var(--aa-display);
	font-size: clamp(1.8rem, 3.5vw, 2.4rem);
	color: var(--aa-blue);
	line-height: 1.1;
	margin-bottom: .45rem;
}
.aa-stat-card span {
	display: block;
	font-size: .84rem;
	color: var(--aa-muted);
	line-height: 1.35;
}
.aa-area-duo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}
.aa-area-recepcion {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	margin: 0 auto;
	overflow: hidden;
	max-width: none;
	min-height: 0;
}
.aa-area-recepcion-media {
	background-size: cover;
	background-position: center;
	aspect-ratio: 4 / 3;
	min-height: 0;
}
.aa-area-recepcion-copy {
	background: linear-gradient(155deg, var(--aa-blue-dark) 0%, var(--aa-blue) 55%, var(--aa-blue-mid) 100%);
	color: #fff;
	padding: clamp(1.4rem, 3.5vw, 2.1rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.aa-area-recepcion-copy h2 {
	color: #fff;
	font-family: var(--aa-display);
	font-size: clamp(1.35rem, 2.8vw, 1.85rem);
	margin: 0 0 .7rem;
}
.aa-area-recepcion-copy > p { margin: 0 0 .85rem; opacity: .94; font-size: .95rem; }
.aa-eyebrow--light { color: rgba(255,255,255,.8); }
.aa-area-langs { font-weight: 600; opacity: 1 !important; }
.aa-area-langs-plain { font-weight: 600; color: var(--aa-text); margin-top: 1rem !important; }
.aa-map-frame {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--aa-border);
	box-shadow:
		0 1px 0 #fff inset,
		0 12px 28px rgba(34, 104, 158, .1),
		0 3px 0 rgba(34, 104, 158, .08);
}
.aa-map-frame .aa-map { border: 0; }
.aa-map-frame--contact {
	max-width: none;
	margin: 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 280px;
	align-self: stretch;
}
.aa-map-frame--contact .aa-map {
	flex: 1 1 auto;
	height: 100% !important;
	min-height: 280px;
	border: 0;
}
.aa-map-frame--contact .aa-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	max-height: none;
	border: 0;
}
.aa-contact-form-card .aa-contact-heading {
	margin: 0 0 .75rem;
	font-family: var(--aa-display);
	font-size: 1.35rem;
	color: var(--aa-blue-dark);
	text-align: left;
}
.aa-contact-lead {
	margin: 0 0 1.25rem;
	color: var(--aa-muted);
	font-size: .95rem;
}
.aa-contact-form-card .aa-contact-form input:not([type="checkbox"]),
.aa-contact-form-card .aa-contact-form textarea {
	border-radius: 12px;
	border-color: var(--aa-border);
}
.aa-contact-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: stretch;
}
.aa-contact-split-col {
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.aa-contact-split .aa-section-title {
	margin-top: 0;
	text-align: left;
}
.aa-contact-split .aa-intro {
	margin: 0 0 .65rem;
	max-width: none;
	text-align: left;
}
.aa-contact-split .aa-intro + .aa-nearby-highlight,
.aa-contact-split .aa-intro + .aa-contact-place-body {
	margin-top: 1rem;
}
.aa-contact-split-form .aa-contact-form-card {
	margin-top: 1.1rem;
	flex: 1 1 auto;
}
.aa-contact-split-map .aa-contact-place-body--plain {
	margin: .35rem 0 1.1rem;
}
.aa-contact-place-body--plain {
	display: grid;
	gap: .85rem;
}
.aa-contact-place-body--plain strong {
	display: block;
	font-size: .82rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--aa-blue);
	margin-bottom: .25rem;
}
.aa-contact-place-body--plain p {
	margin: 0;
	color: var(--aa-text);
	font-size: .95rem;
	line-height: 1.45;
}
.aa-math-check label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .65rem .85rem;
	margin: 0 0 1rem !important;
	font-weight: 600;
}
.aa-math-check input[type="number"] {
	width: 5.5rem !important;
	margin-top: 0 !important;
	text-align: center;
}
.aa-contact-hero-lead {
	margin: 0 0 1.1rem !important;
	max-width: 34ch;
	line-height: 1.5;
	opacity: .95 !important;
}
.aa-contact-hero-hours {
	display: grid;
	gap: .2rem;
	margin: 0;
}
.aa-contact-hero-hours strong {
	font-size: .72rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	opacity: .8;
	font-weight: 600;
}
.aa-contact-hero-hours span {
	font-size: .95rem;
	line-height: 1.4;
	opacity: .95;
}
.aa-contact-place {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 1rem;
	margin: 0 auto 1.5rem;
	max-width: 820px;
}
.aa-contact-place--single {
	grid-template-columns: 1fr;
	max-width: 560px;
}
.aa-contact-place-item {
	display: flex;
	align-items: flex-start;
	gap: .9rem;
	background: #fff;
	border: 1px solid var(--aa-border);
	border-radius: 16px;
	padding: 1.1rem 1.2rem;
	box-shadow:
		0 1px 0 #fff inset,
		0 10px 24px rgba(34, 104, 158, .08),
		0 3px 0 rgba(34, 104, 158, .06);
}
.aa-contact-place-body {
	display: grid;
	gap: .85rem;
	flex: 1;
}
.aa-contact-place-icon {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 12px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	color: var(--aa-blue);
	background: rgba(34, 104, 158, .1);
}
.aa-contact-place-icon svg { width: 1.45rem; height: 1.45rem; }
.aa-contact-place-item strong {
	display: block;
	font-size: .82rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--aa-blue);
	margin-bottom: .25rem;
}
.aa-contact-place-item p {
	margin: 0;
	color: var(--aa-text);
	font-size: .95rem;
	line-height: 1.45;
}

/* Area split */
.aa-split {
	display: grid;
	grid-template-columns: 1.3fr .9fr;
	gap: 2rem;
	align-items: start;
}
.aa-checklist { list-style: none; padding: 0; margin: 1.25rem auto 0; max-width: 36rem; }
.aa-checklist li {
	padding: .75rem 1rem .75rem 2.4rem;
	position: relative;
	margin-bottom: .65rem;
	background: linear-gradient(165deg, #fff 0%, #fbf8fa 100%);
	border: 1px solid var(--aa-border);
	border-radius: 14px;
	box-shadow: 0 6px 16px rgba(34, 104, 158, .08);
	color: var(--aa-text);
	font-size: .95rem;
}
.aa-checklist li::before {
	content: "✓";
	position: absolute;
	left: .9rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--aa-blue);
	font-weight: 700;
}
.aa-info-card {
	background: linear-gradient(165deg, #f4f9fc, #fff);
	border: 1px solid #dce8f0;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 12px 30px rgba(34, 104, 158, .08);
}
.aa-info-card h3 { margin-top: 0; color: var(--aa-blue); }
.aa-cta-band {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	background: #f4f9fc;
	border-radius: 16px;
	padding: 1.75rem 2rem;
	border: 1px solid #dce8f0;
}
.aa-cta-band h2 { margin: 0 0 .35rem; }
.aa-cta-band p { margin: 0; color: #666; }
.aa-cta-band-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

@media (max-width: 900px) {
	.aa-features-row { grid-template-columns: 1fr; }
	.aa-features-shell { margin-top: -2rem; padding: 0 .15rem 1rem; }
	.aa-contact-grid { grid-template-columns: 1fr; }
	.aa-contact-split { grid-template-columns: 1fr; }
	.aa-contact-split-map .aa-map-frame--contact {
		flex: 0 0 auto;
		min-height: 320px;
		height: 42vh;
		max-height: 420px;
	}
	.aa-contact-place { grid-template-columns: 1fr; }
	.aa-footer-grid {
		flex-direction: column;
		gap: 1.5rem;
	}
	.aa-footer-grid > div:nth-child(2),
	.aa-footer-grid > div:last-child {
		text-align: left;
	}
	.aa-page-hero--boxed { grid-template-columns: 1fr; transform: none; }
	.aa-page-hero-media { aspect-ratio: 16 / 10; }
	.aa-services-track { grid-template-columns: repeat(2, 1fr); }
	.aa-nearby-highlights { grid-template-columns: 1fr; }
	.aa-pitch-cards { grid-template-columns: 1fr; margin-top: 1.5rem; }
	.aa-ocio-cards { grid-template-columns: 1fr; }
	.aa-split { grid-template-columns: 1fr; }
	.aa-cta-band { flex-direction: column; align-items: flex-start; }
	.aa-stats { grid-template-columns: repeat(2, 1fr); }
	.aa-area-duo { grid-template-columns: 1fr; }
	.aa-area-recepcion { grid-template-columns: 1fr; transform: none; }
	.aa-area-recepcion-media { aspect-ratio: 16 / 10; }
	.aa-welcome-panel { grid-template-columns: 1fr; }
	.aa-welcome-media { aspect-ratio: 16 / 10; max-height: 360px; }
	.aa-hero-title { max-width: 18ch; }
}

@media (max-width: 768px) {
	.aa-brand img,
	.aa-brand .custom-logo { height: 72px; max-width: min(220px, 62vw); }
	.aa-nav-toggle {
		display: flex;
		min-width: 44px;
		min-height: 44px;
	}
	.aa-header {
		padding-left: env(safe-area-inset-left);
		padding-right: env(safe-area-inset-right);
	}
	.aa-header-bar {
		padding: .85rem 2.75rem .4rem;
		align-items: center;
		flex-wrap: nowrap;
	}
	.aa-topbar-tools { gap: .45rem; }
	.aa-topbar .aa-icon-btn { width: 30px; height: 30px; }
	.aa-topbar { padding: .45rem 0; padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
	.aa-topbar-inner { justify-content: center; text-align: center; font-size: 12px; gap: .55rem; }
	.aa-topbar-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: .15rem .35rem; }
	.aa-topbar-tools { width: 100%; justify-content: center; }
	.aa-feature-inner { padding: 1.55rem 1.2rem 1.35rem; }
	.aa-tabs-nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: .25rem; gap: .35rem; }
	.aa-tab-btn { flex-shrink: 0; min-height: 40px; }
	.aa-cookie-banner {
		padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom));
	}
	.aa-cookie-banner-inner { flex-direction: column; align-items: stretch; }
	.aa-cookie-actions { width: 100%; }
	.aa-cookie-actions .aa-btn {
		flex: 1;
		text-align: center;
		min-height: 44px;
		padding: .75rem 1rem;
	}
	.aa-hero--boxed {
		transform: none;
		aspect-ratio: 16 / 10;
		min-height: 260px;
	}
	.aa-hero-content {
		padding: 1.35rem 1.15rem calc(2.6rem + env(safe-area-inset-bottom));
	}
	.aa-hero-cta .aa-btn { min-height: 44px; }
	.aa-cta-strip-inner { flex-direction: column; align-items: flex-start; }
	.aa-cta-strip { padding-bottom: calc(1.4rem + env(safe-area-inset-bottom)); }
	.aa-btn { min-height: 44px; }
	.aa-welcome-actions { width: 100%; }
	.aa-welcome-actions .aa-btn { flex: 1; text-align: center; }
	.aa-page-hero-copy { padding: 1.35rem 1.15rem; }
	.aa-page-hero-outer { padding-top: 1.1rem; }
	.aa-contact-form input,
	.aa-contact-form textarea {
		font-size: 16px; /* evita zoom iOS */
		min-height: 44px;
	}
	.aa-cookie-reopen {
		bottom: calc(.75rem + env(safe-area-inset-bottom));
		left: calc(.75rem + env(safe-area-inset-left));
	}
	.aa-nearby-grid { grid-template-columns: 1fr; }
	.aa-services-track { grid-template-columns: 1fr; }
	.aa-services-carousel { touch-action: pan-y pinch-zoom; }
}

@media (max-width: 420px) {
	.aa-hero-brand { font-size: 1.05rem; }
	.aa-hero-sub { font-size: .95rem; }
	.aa-lang-flag .aa-flag-svg { width: 22px; height: 15px; }
	.aa-topbar-contact { font-size: 11px; }
}

/* Cookie consent */
.aa-cookie-root {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 10050;
	pointer-events: none;
}
.aa-cookie-root.is-open { pointer-events: auto; }
.aa-cookie-banner {
	background: rgba(20, 36, 48, .96);
	color: #eef3f7;
	padding: 1.1rem 0;
	box-shadow: 0 -8px 32px rgba(0,0,0,.25);
	backdrop-filter: blur(8px);
}
.aa-cookie-banner-inner {
	width: min(1120px, 94vw);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}
.aa-cookie-copy { flex: 1; min-width: 0; }
.aa-cookie-copy strong {
	display: block;
	font-size: 1.05rem;
	margin-bottom: .25rem;
	color: #fff;
}
.aa-cookie-copy p {
	margin: 0;
	font-size: .9rem;
	line-height: 1.5;
	color: rgba(255,255,255,.82);
}
.aa-cookie-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
	flex-shrink: 0;
}
.aa-cookie-actions .aa-btn {
	box-shadow: none;
	padding: .65rem 1.15rem;
	font-size: .88rem;
}
.aa-cookie-actions .aa-btn--outline {
	background: transparent;
	color: #fff !important;
	border: 1px solid rgba(255,255,255,.45);
}
.aa-cookie-actions .aa-btn--outline:hover {
	background: #fff;
	color: var(--aa-blue-dark) !important;
}
.aa-cookie-link {
	background: none;
	border: 0;
	color: #9ec7e6;
	text-decoration: underline;
	cursor: pointer;
	font: inherit;
	font-size: .85rem;
	padding: .35rem .5rem;
}
.aa-cookie-link:hover { color: #fff; }

.aa-cookie-modal {
	position: fixed;
	inset: 0;
	background: rgba(10, 20, 30, .55);
	display: grid;
	place-items: center;
	padding: 1rem;
	z-index: 10060;
}
.aa-cookie-modal[hidden] { display: none !important; }
.aa-cookie-modal-dialog {
	position: relative;
	background: #fff;
	color: #2a3439;
	width: min(520px, 100%);
	max-height: min(90vh, 720px);
	overflow: auto;
	border-radius: 16px;
	padding: 1.5rem 1.4rem 1.25rem;
	box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.aa-cookie-modal-dialog h2 {
	margin: 0 0 .5rem;
	font-size: 1.25rem;
	padding-right: 2rem;
}
.aa-cookie-modal-dialog > p {
	margin: 0 0 1rem;
	color: #666;
	font-size: .92rem;
}
.aa-cookie-modal-close {
	position: absolute;
	top: .7rem;
	right: .8rem;
	border: 0;
	background: #f0f4f7;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	font-size: 1.35rem;
	cursor: pointer;
	line-height: 1;
	color: #333;
}
.aa-cookie-pref {
	display: block;
	border: 1px solid #e2e9ef;
	border-radius: 12px;
	padding: .85rem 1rem;
	margin-bottom: .65rem;
	background: #f8fbfd;
}
.aa-cookie-pref.is-locked { opacity: .92; }
.aa-cookie-pref-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: .25rem;
}
.aa-cookie-pref-label { font-weight: 600; font-size: .95rem; }
.aa-cookie-pref-desc { display: block; font-size: .82rem; color: #667; line-height: 1.45; }
.aa-cookie-pref input[type="checkbox"] {
	width: 1.15rem;
	height: 1.15rem;
	accent-color: var(--aa-blue);
}
.aa-cookie-modal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-top: 1rem;
}

.aa-cookie-reopen {
	position: fixed;
	left: .75rem;
	bottom: .75rem;
	z-index: 10040;
	border: 1px solid var(--aa-border);
	background: #fff;
	color: var(--aa-blue-dark);
	font: inherit;
	font-size: .75rem;
	font-weight: 600;
	padding: .4rem .7rem;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.aa-cookie-root.is-open ~ .aa-cookie-reopen,
body:has(.aa-cookie-root.is-open) .aa-cookie-reopen { display: none; }

.aa-cookie-footer-link {
	background: none;
	border: 0;
	color: inherit;
	font: inherit;
	text-decoration: underline;
	cursor: pointer;
	padding: 0;
	opacity: .85;
}
.aa-cookie-footer-link:hover { opacity: 1; }

.aa-map-blocked {
	display: grid;
	place-items: center;
	gap: .85rem;
	min-height: 280px;
	padding: 2rem 1.25rem;
	text-align: center;
	background: #f3f7fa;
	border: 1px dashed #c5d5e2;
	border-radius: 12px;
	color: #556;
}

/* Legal pages */
/* Legales — mismo lenguaje que Servicios (highlights) */
.aa-legal-card {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}
.aa-legal-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
}
.aa-legal-list {
	list-style: none;
	margin: .75rem 0 0;
	padding: 0;
}
.aa-legal-list li {
	margin: 0 0 .55rem;
	padding: .55rem .75rem;
	background: rgba(255,255,255,.65);
	border: 1px solid rgba(230, 221, 227, .9);
	border-radius: 12px;
	font-size: .92rem;
	color: var(--aa-text);
	line-height: 1.45;
}
.aa-legal-list li:last-child { margin-bottom: 0; }
.aa-nearby-highlight .aa-legal-list + p,
.aa-nearby-highlight p + .aa-legal-list { margin-top: .85rem; }
@media (max-width: 900px) {
	.aa-legal-grid { grid-template-columns: 1fr; }
}

/* legacy legal prose */
.aa-legal { max-width: 820px; }
.aa-legal-lead { color: #556; margin: -.5rem 0 0.75rem; }
.aa-legal-updated { font-size: .85rem; color: #888; margin: 0 0 1.5rem; }
.aa-legal-body h2 {
	font-size: 1.15rem;
	margin: 1.75rem 0 .65rem;
	color: var(--aa-blue-dark);
}
.aa-legal-body ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.aa-legal-body li { margin: .35rem 0; }
.aa-legal-body p { margin: 0 0 .85rem; color: #444; }
