/* ========================================
   MICRO CMS — MODERN DESIGN SYSTEM
   Mobile-first, accessible, performant
   ======================================== */

/* === DESIGN TOKENS === */
:root {
  --bg: #f4f7fc;
  --surface: #ffffff;
  --surface-2: #f8faff;
  --txt: #0c1829;
  --txt-secondary: #3d4f6b;
  --muted: #6b7d99;
  --line: #e2e9f4;
  --line-soft: #edf1f8;
  --blue: #0057a8;
  --blue-2: #1d77d8;
  --blue-light: #e8f1fd;
  --blue-dark: #003d78;
  --yellow: var(--theme-tertiary, #f4b400);
  --yellow-light: #fff8e1;
  --green: #16a34a;
  --green-light: #ecfdf5;
  --red: #dc2626;
  --shadow-xs: 0 1px 3px rgba(10, 25, 50, .06);
  --shadow-sm: 0 4px 12px rgba(10, 25, 50, .07);
  --shadow-md: 0 8px 30px rgba(10, 25, 50, .1);
  --shadow-lg: 0 20px 50px rgba(10, 25, 50, .14);
  --shadow-blue: 0 8px 24px rgba(0, 87, 168, .2);
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
  --transition-bounce: .4s cubic-bezier(.34, 1.56, .64, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition)
}

a:hover {
  color: var(--blue-dark)
}

/* === THEME PRESETS === */

/* ── CLASSIC ── default look, refined transitions */
body.theme-classic {
  --yellow: var(--theme-tertiary, #f4b400);
}

body.theme-classic .card:hover,
body.theme-classic .highlight:hover,
body.theme-classic .review-card:hover {
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s ease;
}

body.theme-classic .section-alt {
  background: linear-gradient(180deg, var(--surface-2) 0%, rgba(0, 87, 168, .03) 50%, var(--bg) 100%);
}

/* ══════════════════════════════════════════════════════════
   MODERN — Space Grotesk · esquinas rectas · bordes gruesos
   sombras duras · layout 2-col hero · pill buttons · uppercase
   ══════════════════════════════════════════════════════════ */
body.theme-modern {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  --radius: 0;
  --radius-lg: 0;
  --radius-xl: 0;
  --shadow-sm: 4px 4px 0 rgba(10, 25, 50, .08);
  --shadow-md: 6px 6px 0 rgba(10, 25, 50, .12);
  --shadow-lg: 8px 8px 0 rgba(10, 25, 50, .16);
  --shadow-blue: 4px 4px 0 rgba(0, 87, 168, .25);
  --line: #1a2a44;
  --surface: #ffffff;
  --surface-2: #f0f4fa;
}

/* Nav — angular, uppercase links */
body.theme-modern .topbar {
  background: #0c1829;
  border-bottom: 3px solid var(--yellow);
  backdrop-filter: none;
}

body.theme-modern .topbar.scrolled {
  background: #0c1829;
  box-shadow: 0 4px 0 var(--yellow)
}

body.theme-modern .brand {
  color: #fff
}

body.theme-modern .brand span {
  color: var(--yellow)
}

body.theme-modern .brand-dot {
  background: var(--yellow);
  border-radius: 0;
  width: 10px;
  height: 10px
}

body.theme-modern .nav-links a {
  color: #8a9bb8;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  border-radius: 0;
}

body.theme-modern .nav-links a:hover {
  color: var(--yellow);
  background: rgba(244, 180, 0, .1)
}

body.theme-modern .nav-cta {
  border-radius: 0;
  background: var(--yellow);
  color: #0c1829;
  box-shadow: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: .78rem;
}

body.theme-modern .nav-cta:hover {
  background: #fff;
  color: #0c1829
}

body.theme-modern .menu-toggle span {
  background: #fff
}

body.theme-modern .menu-toggle:hover {
  background: rgba(255, 255, 255, .1)
}

/* Hero — full bleed, angular, big type */
body.theme-modern .hero {
  min-height: 92vh;
  background:
    linear-gradient(135deg, #0a0f1a 0%, #0c1829 50%, #142240 100%);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

@media (max-width: 768px) {
  body.theme-modern .hero {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    min-height: 80vh;
  }
}

body.theme-modern .hero-bg {
  opacity: .08;
  mix-blend-mode: screen
}

body.theme-modern .hero-content {
  padding: 7rem 0 6rem;
  max-width: 800px
}

body.theme-modern h1 {
  font-weight: 900;
  letter-spacing: -2px;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: .98;
  text-transform: uppercase;
}

body.theme-modern .subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #7a9cc0;
  border-left: 3px solid var(--yellow);
  padding-left: 1rem;
}

body.theme-modern .kicker {
  background: var(--yellow);
  color: #0c1829;
  border: none;
  border-radius: 0;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: .72rem;
  padding: .3rem .8rem;
}

body.theme-modern .kicker-dot {
  display: none
}

/* Buttons — pill, uppercase */
body.theme-modern .btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 4px 4px 0 rgba(0, 87, 168, .3);
  border: 2px solid transparent;
}

body.theme-modern .btn:hover {
  box-shadow: 6px 6px 0 rgba(0, 87, 168, .4);
  transform: translate(-2px, -2px);
}

body.theme-modern .btn-lg {
  padding: 1.1rem 2.6rem;
  font-size: .88rem
}

body.theme-modern .btn-ghost {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background: transparent;
  box-shadow: 4px 4px 0 rgba(244, 180, 0, .2);
}

body.theme-modern .btn-ghost:hover {
  background: var(--yellow);
  color: #0c1829
}

body.theme-modern .trust-check {
  border-radius: 0;
  background: var(--yellow)
}

body.theme-modern .trust-check svg path {
  stroke: #0c1829
}

body.theme-modern .trust li {
  color: #7a9cc0
}

body.theme-modern .quick-info {
  background: rgba(244, 180, 0, .08);
  border: 2px solid rgba(244, 180, 0, .2);
  border-radius: 0;
}

/* Sections — left-aligned headers */
body.theme-modern .section {
  padding: 5.5rem 0
}

body.theme-modern .section-alt {
  background: linear-gradient(180deg, #0c1829 0%, #101e36 100%);
}

body.theme-modern .section-alt h2,
body.theme-modern .section-alt .section-lead {
  color: #c0d4e8
}

body.theme-modern .section-alt .card,
body.theme-modern .section-alt .gallery-item {
  border-color: #1e3050;
  background: rgba(255, 255, 255, .04);
}

body.theme-modern .section-alt .card:hover,
body.theme-modern .section-alt .gallery-item:hover {
  background: rgba(255, 255, 255, .08);
}

body.theme-modern .section-alt .card h3,
body.theme-modern .section-alt .card p,
body.theme-modern .section-alt .highlight h3,
body.theme-modern .section-alt .highlight p {
  color: #a0b8d8
}

body.theme-modern .section-header {
  text-align: left;
  margin-left: 0;
  max-width: 500px;
}

body.theme-modern .section-header h2::after {
  width: 60px;
  height: 4px;
  border-radius: 0;
  background: var(--yellow);
  margin: .8rem 0 0;
}

body.theme-modern h2 {
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
}

body.theme-modern .section-lead {
  text-align: left
}

/* Cards — hard edges, left yellow bar, hard shadow */
body.theme-modern .card,
body.theme-modern .highlight,
body.theme-modern .review-card {
  border: 2px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
}

body.theme-modern .card:hover,
body.theme-modern .highlight:hover,
body.theme-modern .review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translate(-3px, -3px);
  border-color: var(--yellow);
}

body.theme-modern .card-icon {
  border-radius: 0;
  background: var(--yellow);
}

body.theme-modern .card-icon svg {
  color: #0c1829
}

body.theme-modern .card:hover .card-icon {
  background: var(--blue)
}

body.theme-modern .card:hover .card-icon svg {
  color: #fff
}

body.theme-modern .highlight::before {
  height: 0;
}

body.theme-modern .highlight-icon {
  border-radius: 0
}

body.theme-modern .highlight-icon.blue {
  background: var(--blue);
  color: #fff
}

body.theme-modern .highlight-icon.yellow {
  background: var(--yellow);
  color: #0c1829
}

body.theme-modern .highlight-icon.green {
  background: var(--green);
  color: #fff
}

/* Gallery — square, no radius, overlay with border */
body.theme-modern .gallery-item {
  border-radius: 0;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--line);
}

body.theme-modern .gallery-item::after {
  background: linear-gradient(180deg, transparent 40%, rgba(12, 24, 41, .7));
}

/* Reviews — monospace quote style */
body.theme-modern .review-card blockquote {
  font-size: .9rem;
  letter-spacing: .2px;
  border-left: 3px solid var(--yellow);
  padding-left: 1rem;
}

body.theme-modern .review-avatar {
  border-radius: 0;
  background: var(--yellow);
  color: #0c1829
}

body.theme-modern .review-stars svg {
  color: var(--yellow)
}

body.theme-modern .review-author {
  border-top: 2px solid var(--line)
}

/* FAQ — angular */
body.theme-modern .faq-list details {
  border-radius: 0;
  border: 2px solid var(--line);
}

body.theme-modern .faq-list details[open] {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm)
}

body.theme-modern .faq-list summary {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px
}

body.theme-modern .faq-list summary::after {
  font-weight: 800
}

/* Contact — angular form */
body.theme-modern .contact-card {
  border: 2px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow-md);
}

body.theme-modern .contact-info-icon {
  border-radius: 0;
  background: var(--yellow);
  color: #0c1829
}

body.theme-modern .contact-map {
  border-radius: 0;
  border: 2px solid var(--line)
}

body.theme-modern .form-group input,
body.theme-modern .form-group textarea {
  border-radius: 0;
  border: 2px solid var(--line);
}

body.theme-modern .form-group input:focus,
body.theme-modern .form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, .15);
}

/* Footer — dark, angular */
body.theme-modern .footer {
  background: #060d18;
  color: #5a7094;
  border-top: 4px solid var(--yellow);
  padding: 3rem 0 2rem;
}

body.theme-modern .footer-brand {
  color: #fff
}

body.theme-modern .footer-brand span {
  color: var(--yellow)
}

body.theme-modern .footer-copy {
  color: #3a5070
}

body.theme-modern .footer-links a {
  color: #5a7094;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .8px
}

body.theme-modern .footer-links a:hover {
  color: var(--yellow)
}

body.theme-modern .network-badge {
  color: #5a7094
}

body.theme-modern .social-icons a {
  border-radius: 0;
  background: rgba(244, 180, 0, .08);
  border: 2px solid rgba(244, 180, 0, .2);
  color: var(--yellow);
}

body.theme-modern .social-icons a:hover {
  background: var(--yellow);
  color: #0c1829;
  border-color: var(--yellow);
  box-shadow: 3px 3px 0 rgba(244, 180, 0, .3);
  transform: translate(-2px, -2px);
}

/* Cookie banner */
body.theme-modern .cookie-banner {
  border-radius: 0
}

body.theme-modern .fab-wa {
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(37, 211, 102, .3)
}

/* ══════════════════════════════════════════════════════════
   EDITORIAL — Playfair Display serif · soft radius · sin sombras
   centrado en lectura · tipografía grande · separadores finos
   ══════════════════════════════════════════════════════════ */
body.theme-editorial {
  font-size: 16.5px;
  line-height: 1.8;
  --radius: .35rem;
  --radius-lg: .5rem;
  --radius-xl: .6rem;
  --shadow-xs: none;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-blue: none;
  --surface-2: #faf9f7;
  --bg: #f8f6f3;
  --line: #ddd8d0;
  --line-soft: #e8e4dc;
  --txt: #1a1a18;
  --txt-secondary: #4a4a44;
  --muted: #7a7a70;
}

body.theme-editorial h1,
body.theme-editorial h2,
body.theme-editorial h3,
body.theme-editorial .brand,
body.theme-editorial .footer-brand,
body.theme-editorial .review-name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Nav — clean, minimal, serif brand */
body.theme-editorial .topbar {
  background: rgba(248, 246, 243, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

body.theme-editorial .topbar.scrolled {
  background: rgba(248, 246, 243, .97);
  box-shadow: none
}

body.theme-editorial .brand {
  font-size: 1.2rem;
  letter-spacing: -.5px
}

body.theme-editorial .brand-dot {
  display: none
}

body.theme-editorial .nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .3px;
}

body.theme-editorial .nav-links a:hover {
  color: var(--txt);
  background: transparent
}

body.theme-editorial .nav-cta {
  background: var(--txt);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: none;
  font-weight: 600;
}

body.theme-editorial .nav-cta:hover {
  background: var(--blue)
}

/* Hero — limpio, centrado, tipografía dominante */
body.theme-editorial .hero {
  min-height: 75vh;
  background: linear-gradient(170deg, #1a1a18 0%, #2a2a28 100%);
}

body.theme-editorial .hero-bg {
  opacity: .05
}

body.theme-editorial .hero-content {
  max-width: 640px;
  padding: 8rem 0 6rem;
  text-align: center;
  margin: 0 auto;
}

body.theme-editorial h1 {
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -.5px;
  font-style: italic;
}

body.theme-editorial .subtitle {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #a0a098;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

body.theme-editorial .kicker {
  background: none;
  border: none;
  border-radius: 0;
  font-family: 'Playfair Display', serif;
  font-size: .82rem;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--yellow);
  text-transform: uppercase;
  padding: 0;
}

body.theme-editorial .kicker-dot {
  display: none
}

body.theme-editorial .cta-row {
  justify-content: center
}

body.theme-editorial .btn {
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: none;
  border: 1.5px solid transparent;
  letter-spacing: .5px;
}

body.theme-editorial .btn:hover {
  transform: none;
  box-shadow: none
}

body.theme-editorial .btn-lg {
  border-radius: var(--radius)
}

body.theme-editorial .btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .4);
  background: transparent;
}

body.theme-editorial .btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  transform: none;
}

body.theme-editorial .trust-check {
  background: var(--txt);
  border-radius: 50%
}

body.theme-editorial .trust li {
  color: #8a8a82
}

body.theme-editorial .quick-info {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
}

/* Sections — mucho aire, separadores finos */
body.theme-editorial .container {
  width: min(880px, 88%)
}

body.theme-editorial .section {
  padding: 6rem 0
}

body.theme-editorial .section-alt {
  background: var(--surface-2);
}

body.theme-editorial .section-header {
  text-align: center;
  max-width: 540px;
  margin-bottom: 4rem;
}

body.theme-editorial h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
}

body.theme-editorial .section-header h2::after {
  content: "—";
  display: block;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  font-size: 1.5rem;
  color: var(--muted);
  margin-top: .5rem;
  font-family: 'Playfair Display', serif;
  font-style: normal;
}

body.theme-editorial .section-lead {
  font-size: 1.05rem;
  line-height: 1.85;
}

/* Cards — flat, borde fino, sin hover transform */
body.theme-editorial .cards-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem
}

body.theme-editorial .card,
body.theme-editorial .highlight,
body.theme-editorial .review-card {
  box-shadow: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

body.theme-editorial .card:hover,
body.theme-editorial .highlight:hover,
body.theme-editorial .review-card:hover {
  box-shadow: none;
  transform: none;
  border-color: var(--txt);
}

body.theme-editorial .card-icon {
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  width: 52px;
  height: 52px;
}

body.theme-editorial .card:hover .card-icon {
  background: var(--txt);
  border-color: var(--txt);
}

body.theme-editorial .card-icon svg {
  color: var(--txt)
}

body.theme-editorial .card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

body.theme-editorial .highlight::before {
  display: none
}

body.theme-editorial .highlight-icon {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

body.theme-editorial .highlight-icon.blue {
  background: transparent;
  border: 1.5px solid var(--blue);
  color: var(--blue)
}

body.theme-editorial .highlight-icon.yellow {
  background: transparent;
  border: 1.5px solid #b8860b;
  color: #b8860b
}

body.theme-editorial .highlight-icon.green {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green)
}

body.theme-editorial .highlight h3 {
  font-family: 'Playfair Display', serif
}

/* Gallery — 2 col, tall aspect, border fino */
body.theme-editorial .gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

body.theme-editorial .gallery-item {
  border-radius: var(--radius-lg);
  box-shadow: none;
  aspect-ratio: 3/2;
}

body.theme-editorial .gallery-item:hover img {
  transform: scale(1.02)
}

body.theme-editorial .gallery-item::after {
  display: none
}

/* Reviews — cita grande, itálica, comillas decorativas */
body.theme-editorial .reviews-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 640px;
  margin: 0 auto
}

body.theme-editorial .review-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

body.theme-editorial .review-card:hover {
  border-color: var(--txt)
}

body.theme-editorial .review-stars {
  justify-content: center
}

body.theme-editorial .review-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--txt);
}

body.theme-editorial .review-author {
  justify-content: center;
  border-top: none
}

body.theme-editorial .review-avatar {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--line);
}

/* FAQ — minimal separators */
body.theme-editorial .faq-list {
  max-width: 640px
}

body.theme-editorial .faq-list details {
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

body.theme-editorial .faq-list details:hover {
  border-color: var(--txt)
}

body.theme-editorial .faq-list details[open] {
  box-shadow: none;
  border-color: var(--txt)
}

body.theme-editorial .faq-list summary {
  padding: 1.2rem 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .97rem;
}

body.theme-editorial .faq-list summary:hover {
  background: transparent
}

body.theme-editorial .faq-list details p {
  padding: 0 0 1.2rem
}

/* Contact — limpio, sin sombra */
body.theme-editorial .contact-card {
  border-radius: var(--radius-lg);
  box-shadow: none;
  border: 1px solid var(--line);
}

body.theme-editorial .contact-info-icon {
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  color: var(--txt);
}

body.theme-editorial .contact-map {
  border-radius: var(--radius-lg);
  box-shadow: none;
  border: 1px solid var(--line);
}

body.theme-editorial .form-group input,
body.theme-editorial .form-group textarea {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

body.theme-editorial .form-group input:focus,
body.theme-editorial .form-group textarea:focus {
  border-color: var(--txt);
  box-shadow: none;
}

/* Footer — mínimo, integrado */
body.theme-editorial .footer {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
}

body.theme-editorial .footer-brand {
  font-size: 1.1rem
}

body.theme-editorial .social-icons a {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

body.theme-editorial .social-icons a:hover {
  background: var(--txt);
  color: #fff;
  border-color: var(--txt);
  box-shadow: none;
  transform: none;
}

body.theme-editorial .fab-wa {
  border-radius: var(--radius)
}

/* ══════════════════════════════════════════════════════════
   COMPACT — DM Sans · muy denso · hero minimalista
   bordes finos · colores neutros · dashboard feel
   ══════════════════════════════════════════════════════════ */
body.theme-compact {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  --radius: .35rem;
  --radius-lg: .45rem;
  --radius-xl: .55rem;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow-md: 0 3px 8px rgba(0, 0, 0, .08);
  --shadow-lg: 0 6px 16px rgba(0, 0, 0, .1);
  --shadow-blue: 0 2px 8px rgba(0, 87, 168, .15);
  --bg: #f3f4f6;
  --surface: #ffffff;
  --surface-2: #f9fafb;
  --line: #e5e7eb;
  --line-soft: #f0f1f3;
  --txt: #111827;
  --txt-secondary: #4b5563;
  --muted: #6b7280;
}

/* Nav — slim, funcional */
body.theme-compact .topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

body.theme-compact .topbar.scrolled {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06)
}

body.theme-compact .brand {
  font-size: .95rem;
  font-weight: 800
}

body.theme-compact .brand-dot {
  width: 6px;
  height: 6px
}

body.theme-compact .nav-links a {
  font-size: .8rem;
  padding: .35rem .6rem;
  font-weight: 600;
}

body.theme-compact .nav-cta {
  padding: .35rem .7rem;
  font-size: .78rem;
  border-radius: var(--radius);
  box-shadow: none;
}

body.theme-compact .nav-cta:hover {
  box-shadow: var(--shadow-sm)
}

body.theme-compact .menu-toggle {
  width: 36px;
  height: 36px
}

body.theme-compact .menu-toggle span {
  width: 16px
}

/* Hero — strip horizontal, no full-bleed */
body.theme-compact .hero {
  min-height: auto;
  padding: 0;
  background:
    linear-gradient(135deg, var(--blue) 0%, var(--blue-2, var(--blue)) 100%);
  display: block;
  position: relative;
  overflow: hidden;
}

body.theme-compact .hero-bg {
  opacity: .08;
  mix-blend-mode: luminosity;
}

body.theme-compact .hero-content {
  padding: 2.5rem 0 2rem;
  max-width: 100%;
}

body.theme-compact h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: .4rem;
  letter-spacing: -.3px;
  line-height: 1.15;
}

body.theme-compact .subtitle {
  font-size: .88rem;
  line-height: 1.5;
  margin-bottom: .8rem;
  max-width: 480px;
  color: rgba(255, 255, 255, .7);
}

body.theme-compact .kicker {
  font-size: .65rem;
  padding: .2rem .5rem;
  margin-bottom: .3rem;
  border-radius: var(--radius);
}

body.theme-compact .cta-row {
  margin-bottom: .8rem;
  gap: .4rem
}

body.theme-compact .btn {
  padding: .45rem .9rem;
  font-size: .78rem;
  min-height: 34px;
  border-radius: var(--radius);
  font-weight: 700;
}

body.theme-compact .btn:hover {
  transform: none;
  box-shadow: var(--shadow-sm)
}

body.theme-compact .btn-lg {
  padding: .55rem 1.2rem;
  font-size: .82rem;
  min-height: 36px;
  border-radius: var(--radius);
}

body.theme-compact .btn-ghost {
  border-width: 1px;
  font-size: .78rem;
}

body.theme-compact .trust {
  gap: .4rem 1rem;
  margin-bottom: .6rem
}

body.theme-compact .trust li {
  font-size: .72rem
}

body.theme-compact .trust-check {
  width: 16px;
  height: 16px
}

body.theme-compact .trust-check svg {
  width: 10px;
  height: 10px
}

body.theme-compact .quick-info {
  padding: .5rem .8rem;
  gap: .8rem;
  border-radius: var(--radius);
  font-size: .78rem;
}

body.theme-compact .quick-info-item {
  font-size: .78rem
}

body.theme-compact .quick-info-item svg {
  width: 14px;
  height: 14px
}

/* Sections — comprimidas */
body.theme-compact .container {
  width: min(1280px, 96%)
}

body.theme-compact .section {
  padding: 2.5rem 0
}

body.theme-compact .section-alt {
  background: var(--surface-2)
}

body.theme-compact .section-header {
  margin-bottom: 1.5rem;
  max-width: 480px;
}

body.theme-compact h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: .3rem;
}

body.theme-compact .section-header h2::after {
  width: 20px;
  height: 2px;
  margin-top: .4rem;
}

body.theme-compact .section-lead {
  font-size: .82rem;
  line-height: 1.5;
  margin-top: .4rem
}

/* Cards — compactas, grid denso */
body.theme-compact .cards-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .8rem;
}

body.theme-compact .card,
body.theme-compact .highlight,
body.theme-compact .review-card {
  padding: .9rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

body.theme-compact .card:hover,
body.theme-compact .highlight:hover,
body.theme-compact .review-card:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--blue);
}

body.theme-compact .card-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  margin-bottom: .5rem;
}

body.theme-compact .card-icon svg {
  width: 16px;
  height: 16px
}

body.theme-compact .card h3 {
  font-size: .88rem;
  margin-bottom: .25rem
}

body.theme-compact .card p {
  font-size: .78rem;
  line-height: 1.5
}

body.theme-compact .highlight::before {
  height: 2px
}

body.theme-compact .highlight-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  margin-bottom: .4rem;
}

body.theme-compact .highlight-icon svg {
  width: 16px;
  height: 16px
}

body.theme-compact .highlight h3 {
  font-size: .85rem
}

body.theme-compact .highlight p {
  font-size: .78rem;
  line-height: 1.5
}

body.theme-compact .highlights-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .8rem;
}

/* Gallery — grid denso, 4 col */
body.theme-compact .gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .5rem;
}

body.theme-compact .gallery-item {
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-xs);
}

body.theme-compact .gallery-item:hover img {
  transform: scale(1.03)
}

/* Reviews — inline, compactas */
body.theme-compact .reviews-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .8rem;
}

body.theme-compact .review-stars {
  margin-bottom: .4rem
}

body.theme-compact .review-stars svg {
  width: 13px;
  height: 13px
}

body.theme-compact .review-card blockquote {
  font-size: .8rem;
  line-height: 1.55
}

body.theme-compact .review-author {
  margin-top: .5rem;
  padding-top: .4rem;
  gap: .4rem
}

body.theme-compact .review-avatar {
  width: 24px;
  height: 24px;
  font-size: .65rem;
  border-radius: var(--radius);
}

body.theme-compact .review-name {
  font-size: .78rem
}

/* FAQ — slim */
body.theme-compact .faq-list {
  max-width: 640px;
  gap: .4rem
}

body.theme-compact .faq-list details {
  border-radius: var(--radius)
}

body.theme-compact .faq-list summary {
  padding: .65rem .9rem;
  font-size: .82rem;
}

body.theme-compact .faq-list details p {
  padding: 0 .9rem .7rem;
  font-size: .78rem;
  line-height: 1.55;
}

/* Contact — compacto */
body.theme-compact .contact-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

body.theme-compact .contact-info {
  gap: .5rem;
  margin-bottom: 1rem
}

body.theme-compact .contact-info-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
}

body.theme-compact .contact-info-icon svg {
  width: 14px;
  height: 14px
}

body.theme-compact .contact-info-item {
  font-size: .82rem;
  gap: .5rem
}

body.theme-compact .contact-info-item strong {
  font-size: .72rem
}

body.theme-compact .contact-map {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

body.theme-compact .contact-map iframe {
  min-height: 250px
}

body.theme-compact .form-group label {
  font-size: .78rem
}

body.theme-compact .form-group input,
body.theme-compact .form-group textarea {
  padding: .55rem .75rem;
  font-size: .82rem;
  border-radius: var(--radius);
  border-width: 1px;
}

/* Footer — single strip */
body.theme-compact .footer {
  padding: 1.2rem 0 1rem;
  border-top: 1px solid var(--line);
}

body.theme-compact .footer-brand {
  font-size: .88rem
}

body.theme-compact .footer-copy {
  font-size: .75rem
}

body.theme-compact .footer-links a {
  font-size: .78rem
}

body.theme-compact .network-badge {
  font-size: .78rem
}

body.theme-compact .network-badge img {
  height: 22px
}

body.theme-compact .social-icons a {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
}

body.theme-compact .social-icons a svg {
  width: 13px;
  height: 13px
}

body.theme-compact .social-icons a:hover {
  transform: none;
  box-shadow: none
}

body.theme-compact .fab-wa {
  font-size: .78rem;
  padding: .55rem .9rem;
  border-radius: var(--radius);
}

body.theme-compact .fab-wa svg {
  width: 18px;
  height: 18px
}

body.theme-compact .fab-wa:hover {
  transform: none
}

/* ══════════════════════════════════════════════════════════
   PREMIUM — DM Sans · bordes extra redondeados · glassmorphism
   sombras suaves profundas · gradientes sutiles · hero fotográfico
   dorado como acento · transiciones lentas y elegantes
   ══════════════════════════════════════════════════════════ */
body.theme-premium {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  --radius: 1.25rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --surface: #ffffff;
  --surface-2: #fafbfe;
  --bg: #f5f6fa;
  --line: #e0e4ee;
  --line-soft: #ebeef5;
  --txt: #0f1624;
  --txt-secondary: #374054;
  --muted: #607088;
  --shadow-xs: 0 2px 8px rgba(8, 20, 50, .04);
  --shadow-sm: 0 4px 20px rgba(8, 20, 50, .06);
  --shadow-md: 0 12px 48px rgba(8, 20, 50, .1);
  --shadow-lg: 0 28px 72px rgba(8, 20, 50, .14);
  --shadow-blue: 0 8px 32px rgba(0, 70, 150, .18);
  --transition: .35s cubic-bezier(.25, .8, .25, 1);
}

/* Nav — glassmorphism, lujoso */
body.theme-premium .topbar {
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(224, 228, 238, .5);
}

body.theme-premium .topbar.scrolled {
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 8px 32px rgba(8, 20, 50, .06);
}

body.theme-premium .brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.5px
}

body.theme-premium .brand-dot {
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, var(--yellow), #e6a800);
  box-shadow: 0 0 8px rgba(244, 180, 0, .4);
}

body.theme-premium .nav-links a {
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .1px;
  border-radius: var(--radius);
}

body.theme-premium .nav-links a:hover {
  background: rgba(0, 87, 168, .06);
}

body.theme-premium .nav-cta {
  border-radius: 999px;
  padding: .5rem 1.2rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 4px 16px rgba(0, 87, 168, .25);
}

body.theme-premium .nav-cta:hover {
  box-shadow: 0 8px 28px rgba(0, 87, 168, .35);
  transform: translateY(-1px);
}

/* Hero — foto de fondo, gradiente oscuro, tipografía fina */
body.theme-premium .hero {
  min-height: 95vh;
  background:
    radial-gradient(1200px 500px at 75% -15%, rgba(244, 180, 0, .12), transparent 50%),
    radial-gradient(800px 600px at -5% 40%, rgba(29, 119, 216, .15), transparent 50%),
    linear-gradient(160deg, rgba(4, 12, 32, .97) 0%, rgba(8, 24, 56, .95) 50%, rgba(12, 36, 72, .92) 100%);
}

body.theme-premium .hero-bg {
  opacity: .15;
  mix-blend-mode: luminosity;
  filter: saturate(.7);
}

body.theme-premium .hero-content {
  padding: 8rem 0 6rem;
  max-width: 740px;
}

body.theme-premium h1 {
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -.8px;
}

body.theme-premium .subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #9ab4d4;
  max-width: 560px;
}

body.theme-premium .kicker {
  background: linear-gradient(135deg, rgba(244, 180, 0, .15), rgba(244, 180, 0, .05));
  border: 1px solid rgba(244, 180, 0, .25);
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

body.theme-premium .kicker-dot {
  background: var(--yellow);
  box-shadow: 0 0 6px rgba(244, 180, 0, .5);
}

body.theme-premium h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -.4px;
}

/* Buttons — redondeados, gradiente, sombra profunda */
body.theme-premium .btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .3px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 6px 24px rgba(0, 70, 150, .25);
}

body.theme-premium .btn:hover {
  box-shadow: 0 12px 36px rgba(0, 70, 150, .35);
  transform: translateY(-3px);
}

body.theme-premium .btn-lg {
  padding: 1.1rem 2.4rem;
  border-radius: 999px;
  font-size: 1rem;
}

body.theme-premium .btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

body.theme-premium .btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .4);
}

body.theme-premium .trust-check {
  box-shadow: 0 2px 8px rgba(22, 163, 74, .2);
}

body.theme-premium .trust li {
  color: #8aa8cc
}

body.theme-premium .quick-info {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

/* Sections — generoso espaciado */
body.theme-premium .section {
  padding: 6rem 0
}

body.theme-premium .section-alt {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
}

body.theme-premium .section-header {
  margin-bottom: 3.5rem;
  max-width: 600px;
}

body.theme-premium .section-header h2::after {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
}

body.theme-premium .section-lead {
  font-size: 1rem;
  line-height: 1.75
}

/* Cards — glassmorphism suave, bordes redondeados, sombra suave */
body.theme-premium .cards-grid {
  gap: 1.5rem
}

body.theme-premium .card,
body.theme-premium .highlight,
body.theme-premium .review-card {
  border: 1px solid rgba(224, 228, 238, .6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
  padding: 1.8rem;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(4px);
}

body.theme-premium .card:hover,
body.theme-premium .highlight:hover,
body.theme-premium .review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
  background: #fff;
}

body.theme-premium .card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-light), #dceeff);
}

body.theme-premium .card:hover .card-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

body.theme-premium .card h3 {
  font-size: 1.08rem
}

body.theme-premium .highlight::before {
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--blue), var(--blue-2));
}

body.theme-premium .highlight-icon {
  border-radius: var(--radius);
}

/* Gallery — large, rounded, elegant shadow */
body.theme-premium .gallery-grid {
  gap: 1.25rem
}

body.theme-premium .gallery-item {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

body.theme-premium .gallery-item:hover {
  box-shadow: var(--shadow-md);
}

body.theme-premium .gallery-item:hover img {
  transform: scale(1.04)
}

body.theme-premium .gallery-item::after {
  background: linear-gradient(180deg, transparent 50%, rgba(4, 12, 32, .5));
}

/* Reviews — elegant, generous padding */
body.theme-premium .reviews-grid {
  gap: 1.5rem
}

body.theme-premium .review-card {
  padding: 2rem
}

body.theme-premium .review-card blockquote {
  font-size: .97rem;
  line-height: 1.8;
}

body.theme-premium .review-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-light), #dceeff);
  color: var(--blue);
  font-size: .85rem;
}

body.theme-premium .review-author {
  border-top: 1px solid var(--line-soft)
}

/* FAQ — rounded, soft */
body.theme-premium .faq-list details {
  border-radius: var(--radius-lg);
  border-color: var(--line-soft);
}

body.theme-premium .faq-list details:hover {
  border-color: var(--blue)
}

body.theme-premium .faq-list details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--blue);
}

body.theme-premium .faq-list summary {
  padding: 1.1rem 1.4rem;
  font-size: .95rem;
}

body.theme-premium .faq-list summary:hover {
  background: var(--surface-2)
}

body.theme-premium .faq-list details p {
  padding: 0 1.4rem 1.2rem;
  font-size: .92rem;
  line-height: 1.75;
}

/* Contact — premium card, deep shadow */
body.theme-premium .contact-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}

body.theme-premium .contact-info-icon {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-light), #dceeff);
  box-shadow: 0 2px 8px rgba(0, 87, 168, .08);
}

body.theme-premium .contact-map {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}

body.theme-premium .form-group input,
body.theme-premium .form-group textarea {
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
}

body.theme-premium .form-group input:focus,
body.theme-premium .form-group textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(29, 119, 216, .08);
}

/* Footer — dark luxury */
body.theme-premium .footer {
  background: linear-gradient(180deg, #08142a, #040c1e);
  color: #6a80a0;
  border-top: none;
  padding: 3.5rem 0 2.5rem;
}

body.theme-premium .footer-brand {
  color: #d0e0f4
}

body.theme-premium .footer-brand span {
  color: var(--yellow)
}

body.theme-premium .footer-copy {
  color: #4a6080
}

body.theme-premium .footer-links a {
  color: #6a80a0
}

body.theme-premium .footer-links a:hover {
  color: var(--yellow)
}

body.theme-premium .network-badge {
  color: #6a80a0
}

body.theme-premium .social-icons a {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #6a80a0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

body.theme-premium .social-icons a:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(0, 87, 168, .3);
  transform: translateY(-3px);
}

body.theme-premium .fab-wa {
  box-shadow: 0 8px 28px rgba(37, 211, 102, .3);
}

body.theme-premium .cookie-banner {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* === LAYOUT === */
.container {
  width: min(1200px, 90%);
  margin: 0 auto
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  z-index: 200;
  background: var(--txt);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: .5rem;
  font-weight: 700;
  font-size: .88rem;
}

.skip-link:focus {
  top: 1rem
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

/* ========================
   NAVIGATION
   ======================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(226, 233, 244, .6);
  transition: box-shadow var(--transition), background var(--transition);
}

.topbar.scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 4px 20px rgba(10, 25, 50, .08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.3px;
  color: var(--txt);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.brand span {
  color: var(--blue)
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--txt-secondary);
  font-size: .88rem;
  font-weight: 600;
  padding: .5rem .75rem;
  border-radius: .6rem;
  position: relative;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: .5rem;
}

/* Hamburger */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: .5rem;
  cursor: pointer;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: .7rem;
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: var(--blue-light)
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--txt);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.menu-toggle span:nth-child(1) {
  top: 14px
}

.menu-toggle span:nth-child(2) {
  top: 21px
}

.menu-toggle span:nth-child(3) {
  top: 28px
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg)
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg)
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border-radius: .65rem;
  box-shadow: var(--shadow-blue);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 87, 168, .28);
}

.nav-cta svg {
  width: 16px;
  height: 16px
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .93rem;
  padding: .8rem 1.5rem;
  border-radius: .75rem;
  min-height: 48px;
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow-blue);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 87, 168, .3);
}

.btn:active {
  transform: translateY(0)
}

.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: .85rem;
  min-height: 52px
}

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .3);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .22);
  color: #fff;
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--line);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
  box-shadow: none;
  transform: translateY(-2px);
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 1100px 500px at 85% 10%, rgba(244, 180, 0, .15), transparent 55%),
    radial-gradient(ellipse 900px 700px at 5% 30%, rgba(29, 119, 216, .18), transparent 55%),
    linear-gradient(145deg, #002952 0%, #003d78 35%, #0057a8 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('') center/cover no-repeat;
  opacity: .12;
  mix-blend-mode: luminosity;
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 5rem 0 4rem;
  max-width: 720px;
  z-index: 2;
}

.hero-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}

/* Kicker badge */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .78rem;
  color: var(--yellow);
  letter-spacing: .6px;
  text-transform: uppercase;
  background: rgba(244, 180, 0, .1);
  border: 1px solid rgba(244, 180, 0, .25);
  border-radius: 999px;
  padding: .35rem .85rem;
  margin-bottom: .6rem;
}

.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 900;
  margin: 0 0 1rem;
  letter-spacing: -.5px;
}

.subtitle {
  max-width: 600px;
  color: #c8dff8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.6rem;
}

.cta-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Trust badges */
.trust {
  display: flex;
  gap: .6rem 1.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.trust li {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #b8d4f0;
  font-size: .85rem;
  font-weight: 600;
}

.trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.trust-check svg {
  width: 12px;
  height: 12px;
  color: #fff
}

/* Quick info strip */
.quick-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: .9rem 1.2rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .75rem;
  margin-top: .5rem;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #d0e3f8;
  font-size: .88rem;
}

.quick-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
}

.quick-info-item strong {
  color: #fff;
  font-weight: 700
}

/* ========================
   SECTIONS
   ======================== */
.section {
  padding: 5rem 0
}

.section-alt {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .6rem;
  letter-spacing: -.3px;
  color: var(--txt);
}

.section-header h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  border-radius: 3px;
  margin: .7rem auto 0;
}

.section-lead {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.65;
  margin: .8rem 0 0;
}

/* ========================
   SERVICE CARDS
   ======================== */
.grid {
  display: grid;
  gap: 1.25rem
}

.cards-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr))
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: .75rem;
  background: var(--blue-light);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.card:hover .card-icon {
  background: var(--blue);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
  transition: color var(--transition);
}

.card:hover .card-icon svg {
  color: #fff
}

.card h3 {
  margin: 0 0 .5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--txt);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

/* Highlights / Advantages */
.highlights-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr))
}

.highlight {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: .7rem;
  display: grid;
  place-items: center;
  margin-bottom: .8rem;
}

.highlight-icon svg {
  width: 22px;
  height: 22px
}

.highlight-icon.blue {
  background: var(--blue-light);
  color: var(--blue)
}

.highlight-icon.yellow {
  background: var(--yellow-light);
  color: #b8860b
}

.highlight-icon.green {
  background: var(--green-light);
  color: var(--green)
}

.highlight h3 {
  margin: 0 0 .5rem;
  font-size: 1rem;
  font-weight: 700
}

.highlight p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6
}

/* ========================
   GALLERY
   ======================== */
.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 20, 50, .4));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1
}

/* ========================
   REVIEWS
   ======================== */
.reviews-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: .8rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.review-card blockquote {
  margin: 0;
  padding: 0;
  font-size: .93rem;
  line-height: 1.7;
  color: var(--txt-secondary);
  border: none;
  background: none;
  box-shadow: none;
}

.review-card blockquote::before {
  display: none
}

.review-author {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--line-soft);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .8rem;
}

.review-name {
  font-weight: 700;
  font-size: .85rem;
  color: var(--txt);
}

/* ========================
   FAQ
   ======================== */
.faq-list {
  display: grid;
  gap: .6rem;
  max-width: 780px;
  margin: 0 auto
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-list details:hover {
  border-color: var(--blue)
}

.faq-list details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--blue);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 1.25rem;
  font-size: .93rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  list-style: none;
  color: var(--txt);
  transition: background var(--transition);
}

.faq-list summary:hover {
  background: var(--surface-2)
}

.faq-list summary::-webkit-details-marker {
  display: none
}

.faq-list summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-list details p {
  margin: 0;
  padding: 0 1.25rem 1.1rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* ========================
   CONTACT
   ======================== */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  margin-top: 0
}

.contact-info {
  display: grid;
  gap: .75rem;
  margin-bottom: 1.5rem
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .93rem;
  color: var(--txt-secondary);
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: .6rem;
  background: var(--blue-light);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px
}

.contact-info-item a {
  color: var(--blue);
  font-weight: 600
}

.contact-info-item a:hover {
  text-decoration: underline
}

.contact-info-item strong {
  color: var(--txt);
  font-weight: 700;
  display: block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .15rem
}

/* Mail form */
.mail-form {
  display: grid;
  gap: .9rem
}

.form-group {
  display: grid;
  gap: .35rem
}

.form-group label {
  font-weight: 700;
  font-size: .85rem;
  color: var(--txt-secondary);
}

.form-group input,
.form-group textarea {
  background: var(--surface-2);
  color: var(--txt);
  border: 1.5px solid var(--line);
  border-radius: .7rem;
  padding: .8rem 1rem;
  font: inherit;
  font-size: .93rem;
  outline: none;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(29, 119, 216, .12);
  background: #fff;
}

.mail-form .btn {
  width: 100%;
  margin-top: .3rem
}

/* Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.contact-map iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  padding: 2.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.footer-brand {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--txt);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .3rem;
}

.footer-brand span {
  color: var(--blue)
}

.footer-copy {
  font-size: .88rem;
  margin: .3rem 0 0;
  color: var(--muted)
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--blue)
}

.network-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .85rem;
  color: var(--muted);
}

.network-badge img {
  height: 30px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: .6rem;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--muted);
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.social-icons a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.social-icons a svg {
  width: 16px;
  height: 16px;
  display: block
}

/* ========================
   COOKIE BANNER
   ======================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(12, 24, 41, .97);
  backdrop-filter: blur(16px);
  color: #d0e3f8;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.25rem 1rem;
  display: none;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.cookie-banner.show {
  display: block;
  transform: translateY(0);
  animation: slideUp .4s cubic-bezier(.4, 0, .2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(100%)
  }

  to {
    transform: translateY(0)
  }
}

.cookie-content {
  width: min(1100px, 94%);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 240px;
  line-height: 1.55;
  font-size: .88rem;
}

.cookie-content a {
  color: #7cb8f0;
  text-decoration: underline
}

.cookie-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.cookie-actions .btn {
  font-size: .85rem;
  padding: .6rem 1.1rem;
  min-height: 40px
}

.cookie-actions .btn-ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

/* ========================
   WHATSAPP FAB
   ======================== */
.fab-wa {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
  border-radius: 999px;
  padding: .75rem 1.15rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
  transition: all var(--transition);
}

.fab-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  color: #fff;
}

.fab-wa svg {
  width: 22px;
  height: 22px
}

/* ========================
   LEGAL PAGES (shared)
   ======================== */
.legal-wrap {
  width: min(800px, 92%);
  margin: 2.5rem auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}

.legal-wrap h1 {
  font-size: 1.8rem;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -.3px;
}

.legal-wrap h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.legal-wrap h2::after {
  display: none
}

.legal-wrap p,
.legal-wrap li {
  color: var(--txt-secondary);
  line-height: 1.7;
}

.legal-back {
  margin-top: 2rem;
  display: inline-flex;
}

/* ========================
   RESPONSIVE — MOBILE FIRST
   ======================== */

/* Small phones */
@media (max-width: 480px) {
  body {
    font-size: 14px
  }

  .hero-content {
    padding: 3.5rem 0 2.5rem
  }

  h1 {
    font-size: 1.8rem
  }

  .section {
    padding: 3rem 0
  }

  .contact-card {
    padding: 1.25rem
  }

  .legal-wrap {
    padding: 1.5rem 1.25rem;
    margin: 1.5rem auto
  }
}

/* Phones & small tablets */
@media (max-width: 768px) {
  .menu-toggle {
    display: block
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .5rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .75rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    z-index: 40;
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    padding: .7rem .85rem;
    border-radius: .5rem
  }

  .nav-links a:hover {
    background: var(--surface-2)
  }

  .nav-cta.desktop-only {
    display: none
  }

  .fab-wa {
    display: inline-flex
  }

  .hero-content {
    padding: 4rem 0 3rem
  }

  .section {
    padding: 3.5rem 0
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch
  }

  .cta-row .btn {
    width: 100%;
    justify-content: center
  }

  .quick-info {
    flex-direction: column;
    gap: .8rem
  }

  .section-header {
    margin-bottom: 2rem
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .reviews-grid {
    grid-template-columns: 1fr
  }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1023px) {
  .menu-toggle {
    display: block
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .5rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .75rem;
    box-shadow: var(--shadow-lg);
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 40;
  }

  .nav-links.open {
    display: flex
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .nav-links {
    display: flex
  }

  .fab-wa {
    display: none
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr
  }

  .footer-grid {
    grid-template-columns: 1.3fr auto auto auto;
    align-items: center;
  }

  .hero {
    min-height: 88vh
  }

  .hero-content {
    padding: 6rem 0 4rem
  }

  /* Theme overrides at desktop */
  body.theme-compact .hero {
    min-height: auto
  }

  body.theme-compact .hero-content {
    padding: 3rem 0 2.5rem
  }

  body.theme-editorial .hero {
    min-height: 75vh
  }

  body.theme-modern .hero {
    min-height: 95vh
  }

  body.theme-premium .hero {
    min-height: 96vh
  }
}

/* Large desktop */
@media (min-width: 1280px) {
  .container {
    width: min(1200px, 88%)
  }
}