/* ==========================================================
   DAYONA WEBS — 2026
   Colores pastel + Comfortaa/Quicksand
   Hero: foto fondo + 2 columnas (texto + form)
   ========================================================== */

/* Fonts loaded via <link> in HTML for faster render */

:root {
  --font-serif: "Comfortaa", cursive;
  --font-sans: "Quicksand", sans-serif;

  --color-bg: #f6f7f2;
  --color-surface: #fefef9;
  --color-ink: #1c2b2a;
  --color-muted: #5f7370;
  --color-accent: #3d8b7a;
  --color-accent-hover: #2f7466;
  --color-line: rgba(28,43,42,0.08);

  --color-pastel-sage: #e8f0ec;
  --color-pastel-mint: #e2ede8;
  --color-pastel-sand: #f0ede5;
  --color-pastel-warm: #f2ece4;

  --shadow-soft: 0 4px 20px rgba(0,0,0,0.02);
  --shadow-hover: 0 12px 30px rgba(0,0,0,0.04);
  --shadow-form: 0 24px 60px rgba(0,0,0,0.18);

  --r-sm: 16px;
  --r-md: 24px;
  --r-lg: 36px;
  --r-xl: 48px;
  --r-pill: 9999px;

  --max-w: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-py: clamp(5rem, 10vw, 8rem);
  --nav-h: 72px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1.5rem); overflow-x: clip; }
body {
  margin: 0; font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--color-ink); background: var(--color-bg);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
button { border: 0; background: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
.serif { font-family: var(--font-serif); }

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  padding: 0.75rem 1.25rem; border-radius: var(--r-pill);
  background: var(--color-accent); color: #fff; font-weight: 700; z-index: 100;
}
.skip-link:focus { top: 1rem; }

.container { width: min(100% - var(--gutter)*2, var(--max-w)); margin: 0 auto; }
.section { padding: var(--section-py) 0; content-visibility: auto; contain-intrinsic-size: auto 600px; }
.minimal-gradient { background: linear-gradient(to bottom, var(--color-pastel-mint) 0%, var(--color-bg) 100%); }

/* KICKER */
.kicker {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-bottom: 1rem; padding: 0.38rem 0.85rem;
  border: 1px solid var(--color-line); border-radius: var(--r-pill);
  color: var(--color-muted); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.85);
}

/* TYPOGRAPHY */
.section-header { max-width: 780px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-title {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  line-height: 1.15; font-weight: 600; color: var(--color-ink);
  letter-spacing: 0.01em; text-wrap: balance;
}
.section-title-left { text-align: left; }
.section-subtitle { margin: 0; color: var(--color-muted); font-size: clamp(1rem, 1.8vw, 1.12rem); max-width: 600px; margin-inline: auto; }

/* MUTED TEXT */
.service-desc, .step-card p, .ventaja-card p, .about-intro, .about-detail,
.about-highlight p, .faq-answer, .footer-copy, .form-note, .hero-form-sub { margin: 0; color: var(--color-muted); }

/* CARD */
.card {
  background: var(--color-surface); border-radius: var(--r-xl);
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(0,0,0,0.08); }

/* BUTTONS */
.btn-primary {
  background: var(--color-accent); color: #fff;
  padding: 0.875rem 2.5rem; border-radius: var(--r-pill);
  font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s ease; border: none; cursor: pointer; font-size: 0.95rem;
}
.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.btn-secondary {
  background: var(--color-surface); border: 1px solid rgba(61,139,122,0.15); color: var(--color-ink);
  padding: 0.875rem 2.5rem; border-radius: var(--r-pill);
  font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s ease; cursor: pointer; font-size: 0.95rem;
}
.btn-secondary:hover { background: var(--color-pastel-sage); border-color: rgba(61,139,122,0.3); }
.btn-secondary-light {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: #fff;
  padding: 0.875rem 2.5rem; border-radius: var(--r-pill);
  font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s ease; cursor: pointer; font-size: 0.95rem;
}
.btn-secondary-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-lg { padding: 1rem 2.8rem; font-size: 1rem; }

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,247,242,0.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-line);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.is-scrolled { background: rgba(246,247,242,0.98); box-shadow: 0 1px 8px rgba(0,0,0,0.03); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: 1rem; }
.logo, .footer-logo { display: inline-flex; align-items: center; }
.logo-img { height: 42px; width: auto; object-fit: contain; }
.footer-logo-img { filter: brightness(0) invert(1); }
.brand-text { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 700; letter-spacing: 0.05em; color: var(--color-ink); }
.nav-links { display: flex; align-items: center; gap: clamp(0.85rem, 2vw, 1.45rem); font-size: 0.9rem; font-weight: 700; }
.nav-links a { color: var(--color-muted); transition: color 0.25s; }
.nav-links a:hover, .nav-links a.is-active { color: var(--color-ink); }
.nav-cta {
  padding: 0.65rem 1.2rem; border-radius: var(--r-pill);
  border: 1px solid var(--color-line); background: var(--color-surface);
  color: var(--color-ink) !important; transition: all 0.25s;
}
.nav-cta:hover { background: var(--color-accent); color: #fff !important; border-color: var(--color-accent); }
/* Dropdown Ciudades */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { background: none; border: none; font: inherit; font-size: 0.9rem; font-weight: 700; color: var(--color-muted); cursor: pointer; padding: 0; transition: color 0.25s; }
.nav-dropdown-toggle:hover { color: var(--color-ink); }
.nav-arrow { font-size: 0.7em; transition: transform 0.2s; }
.nav-dropdown-menu { opacity: 0; visibility: hidden; position: absolute; top: calc(100% + 0.5rem); left: 50%; transform: translateX(-50%) translateY(-4px); min-width: 160px; padding: 6px; background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--r-sm); box-shadow: var(--shadow-hover); z-index: 100; transition: opacity 0.2s, visibility 0.2s, transform 0.2s; }
.nav-dropdown-menu a { display: block; padding: 0.45rem 1rem; color: var(--color-muted); font-size: 0.85rem; font-weight: 600; white-space: nowrap; transition: color 0.2s, background 0.2s; }
.nav-dropdown-menu a:hover { color: #fff; background: var(--color-accent); border-radius: 10px; }
.nav-dropdown-menu a.is-active { color: var(--color-ink); background: var(--color-pastel-sage); border-radius: 10px; transition: transform 0.2s, box-shadow 0.2s; }
.nav-dropdown-menu a.is-active:hover { background: var(--color-accent); color: #fff; }
.nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown.is-open .nav-arrow { transform: rotate(180deg); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 0.25rem; }
.mobile-menu-btn span { width: 24px; height: 2px; border-radius: var(--r-pill); background: var(--color-ink); transition: transform 0.2s ease, opacity 0.2s ease; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===========================================
   HERO — imagen de fondo + 2 columnas
   =========================================== */
.hero {
  position: relative; min-height: clamp(600px, 90vh, 920px);
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center center; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(28,43,42,0.9) 0%,
    rgba(28,43,42,0.7) 42%,
    rgba(28,43,42,0.3) 100%
  );
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
  padding: clamp(5rem, 9vw, 7rem) 0 clamp(4rem, 7vw, 5rem);
}
.hero-copy { color: #fff; }
.hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700; line-height: 1.1; color: #fff;
}
.hero-title-light { color: rgba(255,255,255,0.45); }
.hero-desc {
  max-width: 500px; margin: 0 0 2rem;
  font-size: clamp(1rem, 1.7vw, 1.1rem); color: rgba(255,255,255,0.72); line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.5rem; }
.hero-note { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin: 0; }

/* HERO FORM */
.hero-form-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--r-lg); background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-form); color: var(--color-ink);
}
.hero-form-heading { margin: 0 0 0.5rem; font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
.hero-form-sub { font-size: 0.9rem; margin-bottom: 1.25rem !important; }
.contact-form { display: grid; gap: 0.85rem; }
.form-field { display: grid; gap: 0.3rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--color-ink); }
.form-field input, .form-field textarea {
  width: 100%; padding: 0.8rem 0.95rem;
  border: 1px solid rgba(61,139,122,0.15); border-radius: var(--r-sm);
  background: var(--color-bg); color: var(--color-ink);
  font: inherit; font-size: 0.92rem; resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #8a9e98; }
.form-field input:focus, .form-field textarea:focus {
  outline: 0; border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(61,139,122,0.12);
}
.submit-btn { width: 100%; justify-content: center; }
.form-note { margin-top: 0.65rem; font-size: 0.8rem; text-align: center; }

/* ===========================================
   STEPS / METODO
   =========================================== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card { padding: clamp(1.5rem, 3vw, 2.2rem); }
.step-num {
  display: inline-block; margin-bottom: 1rem;
  font-size: 2rem; font-weight: 700; color: var(--color-accent); opacity: 0.4;
}
.step-title { margin: 0 0 0.75rem; font-size: clamp(1.15rem, 2.3vw, 1.35rem); font-weight: 600; }

/* ===========================================
   SERVICES
   =========================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.2rem); }
.service-featured {
  border-color: rgba(61,139,122,0.2);
  background: linear-gradient(to bottom, var(--color-pastel-mint) 0%, var(--color-surface) 100%);
}
.service-label {
  display: inline-flex; margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem; border-radius: var(--r-pill);
  background: var(--color-pastel-mint); color: var(--color-accent);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.service-name { margin: 0 0 0.75rem; font-size: clamp(1.35rem, 2.5vw, 1.6rem); font-weight: 600; }
.service-desc { margin-bottom: 1.25rem; font-size: 0.93rem; }
.service-price { margin-bottom: 1rem; font-size: clamp(1.8rem, 3.5vw, 2.2rem); font-weight: 700; }
.service-price span { font-family: var(--font-sans); font-size: 0.92rem; color: var(--color-muted); }
.service-price-custom { font-size: clamp(1.4rem, 3vw, 1.7rem); }
.service-features { display: grid; gap: 0.6rem; margin-bottom: 1.5rem; color: var(--color-muted); font-size: 0.92rem; }
.service-features li { position: relative; padding-left: 1.2rem; }
.service-features li::before { content: ""; position: absolute; left: 0; top: 0.6rem; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }
.service-cta { margin-top: auto; text-align: center; justify-content: center; width: 100%; }

/* ===========================================
   VENTAJAS
   =========================================== */
.ventajas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ventaja-card { padding: clamp(1.5rem, 3vw, 2rem); background: var(--color-ink); color: #fff; border-color: transparent; }
.ventaja-card:hover { box-shadow: 0 16px 40px rgba(28,43,42,0.18); }
.ventaja-card p { color: rgba(255,255,255,0.65); }
.ventaja-title { margin: 0 0 0.5rem; font-size: 1.12rem; font-weight: 600; color: #fff; }
.ventaja-card:nth-child(1) .ventaja-title { color: #6eceb2; }
.ventaja-card:nth-child(2) .ventaja-title { color: #a8d8c8; }
.ventaja-card:nth-child(3) .ventaja-title { color: #d4b896; }

/* ===========================================
   ABOUT
   =========================================== */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-img-wrapper { overflow: hidden; border-radius: var(--r-xl); box-shadow: var(--shadow-hover); }
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.about-intro { margin-bottom: 1rem; font-size: 1.05rem; }
.about-detail { margin-bottom: 1.5rem; }
.about-highlights { display: grid; gap: 1rem; margin-top: 1rem; }
.about-highlight { padding: clamp(1rem, 2vw, 1.4rem); }
.about-highlight-title { margin: 0 0 0.35rem; font-size: 1.05rem; font-weight: 600; }

/* ===========================================
   FAQ — imagen izq + preguntas dcha
   =========================================== */
.faq-layout {
  display: grid; grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.faq-visual { position: sticky; top: calc(var(--nav-h) + 2rem); }
.faq-img-wrapper {
  overflow: hidden; border-radius: var(--r-xl);
  box-shadow: var(--shadow-hover);
}
.faq-img-wrapper img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 3/4; }
.faq-visual-quote {
  margin-top: 1.25rem; padding: 1.2rem 1.4rem;
  font-size: 1.05rem; font-weight: 600; color: var(--color-ink);
  text-align: center;
}
.faq-intro { margin: 0 0 1.5rem; color: var(--color-muted); font-size: clamp(0.95rem, 1.6vw, 1.05rem); }
.faq-list { display: grid; gap: 0; }
.faq-card {
  padding: clamp(1.1rem, 2vw, 1.4rem) 0;
  border-bottom: 1px solid var(--color-line);
}
.faq-card:first-child { border-top: 1px solid var(--color-line); }
.faq-card summary { list-style: none; cursor: pointer; }
.faq-card summary::-webkit-details-marker { display: none; }
.faq-question {
  position: relative; margin: 0; padding-right: 2.5rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem); font-weight: 600; line-height: 1.35;
}
.faq-question::after {
  content: "+"; position: absolute; right: 0; top: 0;
  font-size: 1.4rem; font-weight: 300; color: var(--color-accent);
  transition: transform 0.3s;
}
.faq-card[open] .faq-question::after { content: "\2212"; }
.faq-answer { margin-top: 0.65rem; font-size: 0.92rem; line-height: 1.7; color: var(--color-muted); }

/* ===========================================
   CTA FINAL
   =========================================== */
.cta-final { background: var(--color-ink); color: #fff; text-align: center; }
.cta-final .section-title { color: #fff; }
.cta-final .section-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.cta-final-inner { max-width: 640px; margin: 0 auto; }
.cta-final-links { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; align-items: center; }
.cta-final .btn-primary { background: var(--color-accent); color: #fff; }
.cta-final .btn-primary:hover { background: var(--color-accent-hover); }
.cta-email { font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.5); transition: color 0.25s; }
.cta-email:hover { color: #fff; }

/* ===========================================
   FOOTER
   =========================================== */
.footer { padding: clamp(3rem, 6vw, 5rem) 0 0; background: var(--color-ink); color: rgba(255,255,255,0.65); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem); padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-brand { max-width: 300px; }
.footer-brand .brand-text { color: #fff; }
.footer-tagline { margin: 0.75rem 0 0; font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.45); }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav-title { margin: 0 0 0.5rem; font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.25s; }
.footer-nav address { font-style: normal; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===========================================
   WHATSAPP BUTTON
   =========================================== */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }

/* ===========================================
   COOKIE BANNER
   =========================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  padding: 1rem var(--gutter);
  background: rgba(28,43,42,0.97); backdrop-filter: blur(8px);
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner p { margin: 0; color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept { padding: 0.6rem 1.5rem !important; font-size: 0.85rem !important; }
.cookie-reject {
  padding: 0.6rem 1.5rem; font-size: 0.85rem;
  background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff;
  border-radius: var(--r-pill); font-weight: 600; cursor: pointer; transition: all 0.25s;
}
.cookie-reject:hover { border-color: rgba(255,255,255,0.5); }

/* FOCUS */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(61,139,122,0.3); outline-offset: 3px;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.steps-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.ventajas-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.ventajas-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.faq-list .reveal:nth-child(2) { transition-delay: 0.06s; }
.faq-list .reveal:nth-child(3) { transition-delay: 0.12s; }
.faq-list .reveal:nth-child(4) { transition-delay: 0.18s; }
.faq-list .reveal:nth-child(5) { transition-delay: 0.24s; }
.faq-list .reveal:nth-child(6) { transition-delay: 0.3s; }
.faq-list .reveal:nth-child(7) { transition-delay: 0.36s; }
.faq-list .reveal:nth-child(8) { transition-delay: 0.42s; }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1100px) {
  .services-grid, .steps-grid, .ventajas-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .faq-layout { grid-template-columns: 1fr; }
  .faq-visual { position: static; display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 480px; }
}

@media (max-width: 960px) {
  .steps-grid, .ventajas-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: absolute; top: calc(var(--nav-h) + 0.35rem);
    left: var(--gutter); right: var(--gutter);
    display: none; flex-direction: column; align-items: flex-start;
    gap: 0.75rem; padding: 1.1rem;
    border: 1px solid var(--color-line); border-radius: var(--r-md);
    background: rgba(255,255,255,0.98); box-shadow: var(--shadow-hover);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.35rem 0; width: 100%; }
  .nav-cta { text-align: center; width: 100%; justify-content: center; margin-top: 0.25rem; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; text-align: left; padding: 0.35rem 0; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 0 1rem; min-width: auto; }
  .nav-dropdown:hover .nav-dropdown-menu { transform: none; }
  .mobile-menu-btn { display: flex; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.7) 50%, rgba(15,23,42,0.5) 100%);
  }
}

@media (max-width: 640px) {
  :root {
    --section-py: clamp(2.5rem, 6vw, 4rem);
    --r-xl: 28px;
    --r-lg: 20px;
  }

  /* Hero compacto */
  .hero { min-height: auto; }
  .hero-grid { padding: 5rem 0 2.5rem; gap: 1.5rem; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); margin-bottom: 0.75rem; }
  .hero-desc { font-size: 0.92rem; margin-bottom: 1.25rem; line-height: 1.6; }
  .hero-buttons { flex-direction: column; gap: 0.6rem; margin-bottom: 0; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary-light { width: 100%; justify-content: center; padding: 0.8rem 1.5rem; }
  .hero-form-card { padding: 1.25rem; }
  .hero-form-heading { font-size: 1.1rem; margin-bottom: 0.35rem; }
  .hero-form-sub { font-size: 0.82rem; margin-bottom: 0.75rem !important; }
  .contact-form { gap: 0.6rem; }
  .form-field input, .form-field textarea { padding: 0.7rem 0.85rem; font-size: 0.88rem; }
  .form-field label { font-size: 0.8rem; }
  .form-note { font-size: 0.72rem; margin-top: 0.4rem; }
  .submit-btn { padding: 0.75rem 1.5rem; }

  /* Secciones compactas */
  .section-header { margin-bottom: clamp(1.5rem, 4vw, 2rem); }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); margin-bottom: 0.6rem; }
  .section-subtitle { font-size: 0.9rem; }
  .kicker { font-size: 0.7rem; margin-bottom: 0.6rem; padding: 0.3rem 0.7rem; }

  /* Grids 1 columna */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.25rem; }
  .service-name { font-size: 1.2rem; }
  .service-price { font-size: 1.6rem; margin-bottom: 0.75rem; }
  .service-features { gap: 0.4rem; font-size: 0.88rem; margin-bottom: 1rem; }

  .step-card { padding: 1.25rem; }
  .step-num { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .step-title { font-size: 1.1rem; margin-bottom: 0.4rem; }

  .ventaja-card { padding: 1.25rem; }
  .ventaja-title { font-size: 1rem; }

  /* About compacto */
  .about-img-wrapper {
    width: clamp(150px, 40vw, 200px); height: clamp(150px, 40vw, 200px);
    margin: 0 auto; border-radius: 50%;
  }
  .about-img-wrapper img { aspect-ratio: 1/1; }
  .about-text { text-align: center; }
  .about-text .section-title { text-align: center; }
  .about-text .kicker { margin-inline: auto; }
  .about-intro { font-size: 0.95rem; }
  .about-detail { font-size: 0.9rem; margin-bottom: 1rem; }
  .about-highlight { padding: 0.9rem; }
  .about-highlight-title { font-size: 0.95rem; }

  /* FAQ compacto */
  .faq-card { padding: 0.85rem 0; }
  .faq-question { font-size: 0.95rem; }
  .faq-answer { font-size: 0.88rem; margin-top: 0.5rem; }
  .faq-intro { font-size: 0.9rem; margin-bottom: 1rem; }

  /* CTA / Footer */
  .cta-final-links { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Cookie / WhatsApp */
  .cookie-banner-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .whatsapp-btn { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }

  /* Botones mas compactos */
  .btn-primary, .btn-secondary, .btn-lg { padding: 0.75rem 1.8rem; font-size: 0.9rem; min-height: 46px; }
  .service-cta { padding: 0.7rem 1.5rem; }
}

/* Disable hover effects on touch */
@media (hover: none) {
  .card:hover, .ventaja-card:hover { transform: none; box-shadow: var(--shadow-soft); }
  .btn-primary:hover, .btn-secondary:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
