/* ==========================================================================
   Maria Car Sales — Landing Page
   Broker de autos en Florida · Especialista Toyota (Toyota of Coconut Creek)
   ========================================================================== */

/* ---- Self-hosted fonts (latin subset) — sin peticiones externas ---- */
@font-face { font-family:"Inter"; font-style:normal; font-weight:400 700; font-display:swap; src:url("assets/fonts/inter-latin.woff2") format("woff2"); }
@font-face { font-family:"Poppins"; font-style:normal; font-weight:600; font-display:swap; src:url("assets/fonts/poppins-600-latin.woff2") format("woff2"); }
@font-face { font-family:"Poppins"; font-style:normal; font-weight:700; font-display:swap; src:url("assets/fonts/poppins-700-latin.woff2") format("woff2"); }
@font-face { font-family:"Poppins"; font-style:normal; font-weight:800; font-display:swap; src:url("assets/fonts/poppins-800-latin.woff2") format("woff2"); }

:root {
  --red:        #EB0A1E;   /* Toyota red accent */
  --red-dark:   #b80816;
  --ink:        #0d1117;   /* near-black */
  --ink-2:      #161b22;
  --graphite:   #1f2630;
  --cloud:      #f6f7f9;   /* light section bg */
  --cloud-2:    #eceef1;
  --line:       #e3e6ea;
  --text:       #14181f;
  --muted:      #5b6675;
  --white:      #ffffff;
  --wa:         #25D366;   /* WhatsApp green */
  --wa-dark:    #1da851;
  --radius:     16px;
  --radius-lg:  26px;
  --shadow:     0 18px 50px -18px rgba(13,17,23,.35);
  --shadow-sm:  0 8px 24px -12px rgba(13,17,23,.28);
  --maxw:       1180px;
  --font:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display:    "Poppins", var(--font);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }

.section { padding: 96px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: .98rem;
  padding: 15px 26px; border-radius: 100px; border: 0; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-wa   { background: var(--wa); color: #fff; box-shadow: 0 10px 24px -8px rgba(37,211,102,.55); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(37,211,102,.6); }
.btn-red  { background: var(--red); color: #fff; box-shadow: 0 10px 26px -10px rgba(235,10,30,.6); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.4); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--graphite); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line); padding: 12px 24px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.18rem; color: #fff; letter-spacing: -.02em; transition: color .3s; }
.nav.scrolled .brand { color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px; flex: 0 0 38px;
  background: var(--red); color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 6px 16px -6px rgba(235,10,30,.6);
}
.brand span b { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.navlink { font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.9); transition: color .2s; }
.nav.scrolled .nav-links a.navlink { color: var(--text); }
.nav-links a.navlink:hover { color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

/* language toggle */
.lang {
  display: inline-flex; border: 1px solid rgba(255,255,255,.45); border-radius: 100px; overflow: hidden;
  font-family: var(--display); font-size: .8rem; font-weight: 600;
}
.nav.scrolled .lang { border-color: var(--line); }
.lang button { background: transparent; color: #fff; border: 0; padding: 7px 13px; cursor: pointer; transition: background .2s, color .2s; }
.nav.scrolled .lang button { color: var(--text); }
.lang button.active { background: var(--red); color: #fff; }

.nav-cta { display: inline-flex; }
@media (max-width: 900px){ .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-video, .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,17,23,.55) 0%, rgba(13,17,23,.35) 40%, rgba(13,17,23,.82) 100%),
    radial-gradient(120% 80% at 15% 20%, rgba(235,10,30,.22), transparent 55%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 70px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  padding: 8px 16px; border-radius: 100px; font-size: .85rem; font-weight: 500; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,.25); }
.hero h1 { font-size: clamp(2.4rem, 6.2vw, 4.6rem); max-width: 14ch; margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 46ch; color: rgba(255,255,255,.92); margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; gap: 38px; margin-top: 52px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--display); font-size: 1.9rem; display: block; line-height: 1; }
.hero-stats .stat span { font-size: .82rem; color: rgba(255,255,255,.75); letter-spacing: .04em; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.6); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: #fff; border-radius: 2px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,10px)} }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: #fff; padding: 26px 0; }
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; text-align: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 500; font-size: .98rem; color: rgba(255,255,255,.9); }
.trust-item svg { width: 22px; height: 22px; color: var(--red); flex: 0 0 22px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  position: relative; transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.step-num { font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--cloud-2); line-height: 1; }
.step:hover .step-num { color: var(--red); }
.step-ico { width: 46px; height: 46px; border-radius: 12px; background: #fff5f5; color: var(--red); display: grid; place-items: center; margin: 16px 0 14px; }
.step-ico svg { width: 24px; height: 24px; }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .steps { grid-template-columns: 1fr; } }

/* ---------- Feature / Toyota split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.alt { direction: rtl; } .split.alt > * { direction: ltr; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3/4; max-height: 620px; background: var(--cloud-2); position: relative; }
.split-media img { object-position: center 22%; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.ph { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--muted); gap: 8px; background: repeating-linear-gradient(45deg,#eceef1,#eceef1 12px,#e6e8ec 12px,#e6e8ec 24px); }
.ph svg { width: 44px; height: 44px; opacity: .5; }
.ph small { font-size: .8rem; max-width: 26ch; }
.split-body h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin: 14px 0 18px; }
.split-body p { color: var(--muted); margin-bottom: 18px; }
.check-list { list-style: none; display: grid; gap: 13px; margin: 22px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.check-list svg { width: 22px; height: 22px; color: var(--wa); flex: 0 0 22px; margin-top: 2px; }
@media (max-width: 850px){ .split { grid-template-columns: 1fr; gap: 34px; } .split.alt { direction: ltr; } }

/* ---------- Services ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--ink); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.24rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; }
@media (max-width: 850px){ .grid-3 { grid-template-columns: 1fr; } }

/* ---------- Brands ---------- */
.brands-band { background: var(--cloud); }
.brand-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.brand-pill {
  background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 12px 24px;
  font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--text);
  transition: transform .2s, box-shadow .2s, color .2s;
}
.brand-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.brand-pill.hot { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 10px 24px -10px rgba(235,10,30,.6); }

/* ---------- Areas ---------- */
.areas .grid-3 { margin-top: 8px; }
.area { text-align: center; }
.area-pill { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; font-family: var(--display); font-weight: 600; transition: transform .2s, box-shadow .2s; }
.area-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

/* ---------- Testimonials ---------- */
.testi-band { background: var(--ink); color: #fff; }
.testi-band .section-head h2 { color: #fff; }
.testi-band .section-head p { color: rgba(255,255,255,.7); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 28px;
}
.testi .stars { color: #ffc531; margin-bottom: 12px; letter-spacing: 2px; }
.testi p { color: rgba(255,255,255,.9); font-size: 1rem; margin-bottom: 18px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .ava { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: grid; place-items: center; font-family: var(--display); font-weight: 700; }
.testi .who b { font-family: var(--display); font-size: .95rem; }
.testi .who span { font-size: .82rem; color: rgba(255,255,255,.6); }
.testi-note { text-align: center; margin-top: 26px; font-size: .85rem; color: rgba(255,255,255,.45); }
@media (max-width: 850px){ .testi-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  font-family: var(--display); font-weight: 600; font-size: 1.06rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ico { flex: 0 0 22px; width: 22px; height: 22px; color: var(--red); transition: transform .3s ease; }
.faq-item[open] summary .q-ico { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--muted); font-size: 1rem; }
.faq-item .faq-a p { margin-top: -4px; }

/* ---------- CTA / Contact ---------- */
.cta {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, #12151b 0%, #1c1010 100%);
}
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 80% 20%, rgba(235,10,30,.28), transparent 60%); }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.cta h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: 18px; }
.cta h2 em { color: var(--red); font-style: normal; }
.cta-lead { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 28px; }
.cta-methods { display: grid; gap: 14px; margin-top: 26px; }
.cta-method { display: flex; align-items: center; gap: 14px; color: #fff; }
.cta-method .mi { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; flex: 0 0 46px; }
.cta-method .mi svg { width: 22px; height: 22px; }
.cta-method b { font-family: var(--display); display: block; font-size: 1.02rem; }
.cta-method span { font-size: .86rem; color: rgba(255,255,255,.6); }

/* Form */
.lead-form { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); color: var(--text); }
.lead-form h3 { font-size: 1.35rem; margin-bottom: 6px; color: var(--ink); }
.lead-form .fsub { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--text); font-family: var(--display); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--font); font-size: .96rem; background: var(--cloud); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(235,10,30,.12); background: #fff; }
.field textarea { resize: vertical; min-height: 84px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 12px; text-align: center; }
@media (max-width: 850px){ .cta-grid { grid-template-columns: 1fr; gap: 38px; } }

/* ---------- Footer ---------- */
.footer { background: #0a0d12; color: rgba(255,255,255,.72); padding: 56px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer p { font-size: .92rem; max-width: 40ch; }
.footer h4 { font-family: var(--display); color: #fff; font-size: .95rem; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer ul a { font-size: .92rem; transition: color .2s; }
.footer ul a:hover { color: var(--red); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.45); }
@media (max-width: 750px){ .footer-top { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 200;
  display: flex; align-items: center; gap: 0;
  background: var(--wa); color: #fff; border-radius: 100px;
  padding: 0; height: 60px; width: 60px; overflow: hidden;
  box-shadow: 0 14px 34px -8px rgba(37,211,102,.6);
  transition: width .35s cubic-bezier(.2,.8,.2,1), background .2s;
}
.wa-float .wa-ico { width: 60px; height: 60px; flex: 0 0 60px; display: grid; place-items: center; }
.wa-float .wa-ico svg { width: 32px; height: 32px; }
.wa-float .wa-label { font-family: var(--display); font-weight: 600; font-size: .95rem; white-space: nowrap; padding-right: 22px; opacity: 0; transition: opacity .2s; }
.wa-float:hover { width: 232px; background: var(--wa-dark); }
.wa-float:hover .wa-label { opacity: 1; }
.wa-float::after {
  content: ""; position: absolute; right: 14px; top: 14px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--red); border: 2px solid #fff; animation: pulse 1.8s infinite;
}
.wa-float:hover::after { display: none; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(235,10,30,.5)} 70%{box-shadow:0 0 0 10px rgba(235,10,30,0)} 100%{box-shadow:0 0 0 0 rgba(235,10,30,0)} }
@media (max-width: 560px){ .wa-float { height: 56px; width: 56px; } .wa-float .wa-ico { width: 56px; height: 56px; flex-basis: 56px; } .wa-float:hover { width: 56px; } .wa-float:hover .wa-label { opacity: 0; } .wa-float:hover { background: var(--wa); } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* language visibility */
[data-lang-es], [data-lang-en] { }
body[data-lang="es"] [data-lang-en] { display: none; }
body[data-lang="en"] [data-lang-es] { display: none; }

/* ==========================================================================
   MOBILE POLISH — todo perfecto en teléfono
   ========================================================================== */
@media (max-width: 700px) {
  .section { padding: 62px 0; }
  .wrap { padding: 0 18px; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  .hero { min-height: 100svh; }
  .hero-inner { padding: 104px 0 84px; }
  .hero h1 { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-stats { gap: 20px 26px; margin-top: 32px; }
  .hero-stats .stat b { font-size: 1.5rem; }
  .hero-stats .stat span { font-size: .76rem; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { flex: 1 1 100%; }        /* botones a lo ancho, fáciles de tocar */

  .trust { padding: 22px 0; }
  .trust .wrap { gap: 12px 20px; }
  .trust-item { font-size: .88rem; }
  .trust-item svg { width: 19px; height: 19px; flex-basis: 19px; }

  .steps { gap: 16px; }
  .step, .card { padding: 24px 20px; }
  .split { gap: 28px; }
  .split-body h2 { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .check-list li { font-size: .96rem; }

  .cta { }
  .cta h2 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); }
  .cta-lead { font-size: 1.02rem; }
  .lead-form { padding: 24px 20px; }
  .cta-methods { margin-top: 20px; }

  .footer { padding: 46px 0 26px; }
}

@media (max-width: 480px) {
  .nav { padding: 12px 15px; }
  .nav.scrolled { padding: 10px 15px; }
  .nav-cta { display: none; }               /* el WhatsApp flotante ya cubre esta acción */
  .brand { font-size: 1.04rem; gap: 9px; }
  .brand-mark { width: 34px; height: 34px; flex-basis: 34px; font-size: 1rem; }
  .lang button { padding: 8px 12px; }        /* toque cómodo */

  .hero-badge { font-size: .76rem; padding: 7px 13px; }
  .hero h1 { font-size: clamp(1.95rem, 9vw, 2.5rem); }
  .hero-sub { font-size: 1.02rem; }
  .hero-stats { gap: 16px 20px; }
  .hero-stats .stat b { font-size: 1.35rem; }

  .section-head p { font-size: .98rem; }
  .brand-pill { padding: 10px 17px; font-size: .9rem; }
  .brand-grid { gap: 10px; }
  .area-pill { padding: 18px; }

  .testi { padding: 22px; }
  .cta-method .mi { width: 42px; height: 42px; flex-basis: 42px; }

  /* WhatsApp flotante un pelín más pegado en pantallas muy pequeñas */
  .wa-float { right: 16px; bottom: 16px; }
}

/* Evita cualquier scroll horizontal accidental en móvil */
@media (max-width: 700px) {
  html, body { max-width: 100%; overflow-x: hidden; }
}
