/* ==========================================================================
   LavaControl — site de vendas
   Paleta clara, com os mockups do app em dark (mesma paleta do produto).
   ========================================================================== */

:root {
  /* marca (herdada do app) */
  --brand: #2570d3;
  --brand-2: #3b8eea;
  --brand-soft: #eaf2fd;
  --brand-ink: #0e3468;

  /* texto e superfícies */
  --ink: #0f172a;
  --ink-2: #47566b;
  --ink-3: #8695a8;
  --bg: #ffffff;
  --bg-2: #f5f8fc;
  --line: #e4eaf2;

  --green: #16794c;
  --green-soft: #e6f6ee;
  --amber: #92610b;
  --amber-soft: #fdf3e0;

  /* app dark (mockups) */
  --d-bg: #0b0e14;
  --d-bg2: #141922;
  --d-bg3: #1b222c;
  --d-line: #262e3a;
  --d-txt: #e8eef5;
  --d-dim: #92a0b0;
  --d-green: #2ea043;
  --d-amber: #d29922;
  --d-cyan: #39c5cf;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 2px 8px rgba(15, 23, 42, .04);
  --shadow: 0 4px 12px rgba(15, 23, 42, .07), 0 18px 40px rgba(15, 23, 42, .08);
  --shadow-lg: 0 30px 70px rgba(11, 39, 84, .18);
  --wrap: 1160px;
}

/* ------------------------------ base ------------------------------------ */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -.03em; }
h3 { font-size: 1.14rem; font-weight: 750; letter-spacing: -.015em; }

p { margin: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

section { padding: clamp(64px, 8vw, 108px) 0; }
.sec-alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { color: var(--ink-2); font-size: 1.08rem; margin-top: 16px; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.lead { font-size: clamp(1.05rem, 2vw, 1.24rem); color: var(--ink-2); }

/* ------------------------------ botões ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font: inherit;
  font-size: .97rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease,
              border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset,
              0 8px 20px rgba(37, 112, 211, .28);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,.25) inset,
                                 0 12px 26px rgba(37, 112, 211, .38); }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: #cfdcec; background: #fbfdff; }

.btn-wa { background: #1faa53; color: #fff; box-shadow: 0 8px 20px rgba(31,170,83,.26); }
.btn-wa:hover { background: #1c9a4b; }

.btn-lg { padding: 16px 30px; font-size: 1.04rem; border-radius: 13px; }
/* botão de largura total pode quebrar linha — senão o nowrap vira largura mínima
   e estoura o container em telas estreitas */
.btn-block { width: 100%; white-space: normal; text-align: center; }

/* ------------------------------ topo ------------------------------------ */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(15,23,42,.05); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -.03em;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { width: 32px; height: 32px; border-radius: 9px; flex: none; }
.brand b { color: var(--brand); font-weight: 800; }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 9px 13px;
  border-radius: 9px;
  font-size: .95rem;
  font-weight: 550;
  color: var(--ink-2);
  text-decoration: none;
}
.nav-links a:hover { background: var(--bg-2); color: var(--ink); }

.nav-cta { display: flex; gap: 10px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

/* ------------------------------ hero ------------------------------------ */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(52px, 7vw, 86px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -240px 0 auto -10%;
  height: 640px;
  background:
    radial-gradient(52% 60% at 22% 42%, rgba(59, 142, 234, .16), transparent 68%),
    radial-gradient(40% 55% at 82% 20%, rgba(57, 197, 207, .13), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.badge-local {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.badge-local span {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  background: var(--brand-soft);
  border-radius: 50%;
}
.badge-local svg { width: 13px; height: 13px; color: var(--brand); }

.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--brand); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 24px;
  font-size: .9rem;
  color: var(--ink-3);
}
.hero-note i { font-style: normal; display: inline-flex; align-items: center; gap: 6px; }
.hero-note svg { width: 15px; height: 15px; color: var(--green); }

/* ------------------------ mockup (app em dark) -------------------------- */

.mock {
  background: var(--d-bg);
  border: 1px solid var(--d-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--d-txt);
  font-size: 13px;
  line-height: 1.4;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--d-bg2);
  border-bottom: 1px solid var(--d-line);
}
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #333c4a; }
.mock-bar i:first-child { background: #d95a52; }
.mock-bar i:nth-child(2) { background: #d29922; }
.mock-bar i:nth-child(3) { background: #2ea043; }
.mock-url {
  margin-left: 10px;
  padding: 4px 12px;
  background: var(--d-bg3);
  border-radius: 7px;
  color: var(--d-dim);
  font-size: 11.5px;
  letter-spacing: .01em;
}

.mock-body { padding: 16px; }

.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.mock-title { font-weight: 700; font-size: 14px; letter-spacing: -.01em; }
.mock-live {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  background: rgba(46, 160, 67, .13);
  border: 1px solid rgba(46, 160, 67, .3);
  border-radius: 999px;
  color: var(--d-green);
  font-size: 11px; font-weight: 650;
}
.mock-live b { width: 6px; height: 6px; border-radius: 50%; background: var(--d-green);
               animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.mock-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.mock-col {
  background: var(--d-bg2);
  border: 1px solid var(--d-line);
  border-radius: var(--radius-sm);
  padding: 10px;
  min-height: 190px;
}
.mock-col > h4 {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 0 9px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--d-dim);
}
.mock-col > h4 span {
  padding: 1px 6px; background: var(--d-bg3); border-radius: 20px;
  font-size: 10px; letter-spacing: 0;
}

.mcard {
  background: var(--d-bg3);
  border: 1px solid var(--d-line);
  border-left: 3px solid var(--d-dim);
  border-radius: 8px;
  padding: 9px 10px;
  margin-bottom: 8px;
}
.mcard:last-child { margin-bottom: 0; }
.mcard b { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .02em; }
.mcard small { display: block; color: var(--d-dim); font-size: 11px; margin-top: 2px; }
.mcard u {
  display: inline-block; margin-top: 7px;
  font-size: 10.5px; text-decoration: none; color: var(--d-dim);
}
.mcard.wait  { border-left-color: #566173; }
.mcard.wash  { border-left-color: var(--brand-2); }
.mcard.done  { border-left-color: var(--d-green); }
.mcard.out   { border-left-color: var(--d-cyan); opacity: .72; }

.mock-foot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.mstat {
  background: var(--d-bg2);
  border: 1px solid var(--d-line);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
}
.mstat small { display: block; color: var(--d-dim); font-size: 10.5px;
               text-transform: uppercase; letter-spacing: .07em; font-weight: 650; }
.mstat b { display: block; font-size: 19px; font-weight: 800; margin-top: 3px;
           letter-spacing: -.02em; }
.mstat.g b { color: var(--d-green); }
.mstat.c b { color: var(--d-cyan); }

/* ------------------------------ dores ----------------------------------- */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.pain {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.pain q {
  display: block;
  font-size: 1.04rem;
  font-weight: 650;
  letter-spacing: -.015em;
  quotes: "“" "”";
}
.pain p { margin-top: 12px; color: var(--ink-2); font-size: .95rem; }
.pain-fix {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px;
  padding: 5px 12px 5px 8px;
  background: var(--green-soft);
  border-radius: 999px;
  color: var(--green);
  font-size: .85rem; font-weight: 650;
}
.pain-fix svg { width: 15px; height: 15px; flex: none; }

/* ---------------------------- funcionalidades --------------------------- */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 18px;
}
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .22s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfdcec; }
.feat-ico {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 16px;
  background: var(--brand-soft);
  border-radius: 12px;
  color: var(--brand);
}
.feat-ico svg { width: 22px; height: 22px; }
.feat p { margin-top: 9px; color: var(--ink-2); font-size: .95rem; }

/* ------------------------------ destaques ------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.split + .split { margin-top: clamp(56px, 8vw, 96px); }
.split.flip .split-media { order: -1; }

.checks { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2);
             font-size: .99rem; }
.checks svg { width: 21px; height: 21px; flex: none; color: var(--brand); margin-top: 1px; }
.checks b { color: var(--ink); font-weight: 650; }

/* mockup: comissão (tabela) */
.mrow {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: var(--d-bg2);
  border: 1px solid var(--d-line);
  border-radius: 9px;
  margin-bottom: 8px;
}
.mrow:last-child { margin-bottom: 0; }
.mrow b { font-size: 12.5px; font-weight: 650; }
.mrow small { display: block; color: var(--d-dim); font-size: 11px; }
.mrow u { text-decoration: none; color: var(--d-dim); font-size: 11.5px; }
.mrow i { font-style: normal; color: var(--d-green); font-weight: 750; font-size: 13px; }
.mtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 12px; padding: 13px 14px;
  background: rgba(46,160,67,.1);
  border: 1px solid rgba(46,160,67,.28);
  border-radius: 10px;
}
.mtotal span { color: var(--d-dim); font-size: 11.5px; text-transform: uppercase;
               letter-spacing: .07em; font-weight: 650; }
.mtotal b { color: var(--d-green); font-size: 21px; font-weight: 800; letter-spacing: -.02em; }

/* mockup: celular (WhatsApp) */
.phone {
  width: min(320px, 100%);
  margin-inline: auto;
  background: var(--d-bg);
  border: 9px solid #1a1f29;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.phone-top {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 15px;
  background: #10361f;
  color: #dff3e4;
}
.phone-top span {
  display: grid; place-items: center;
  width: 32px; height: 32px; flex: none;
  background: #1faa53; border-radius: 50%;
  font-size: 13px; font-weight: 800; color: #fff;
}
.phone-top b { display: block; font-size: 13.5px; font-weight: 700; }
.phone-top small { color: #9ccfae; font-size: 11px; }
.phone-chat { padding: 18px 14px 22px; background: #0d1117; min-height: 250px; }
.bubble {
  max-width: 88%;
  padding: 11px 13px;
  background: #17322a;
  border-radius: 12px 12px 12px 3px;
  font-size: 13px;
  line-height: 1.5;
  color: #dbe7e1;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.bubble + .bubble { margin-top: 10px; }
.bubble.me { margin-left: auto; background: #1f4d3c; border-radius: 12px 12px 3px 12px; }
.bubble time { display: block; margin-top: 5px; font-size: 10px; color: #7d968a; text-align: right; }

/* ------------------------------ passos ---------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid; place-items: center;
  width: 38px; height: 38px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  border-radius: 11px;
  color: #fff; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 6px 14px rgba(37,112,211,.3);
}
.step p { margin-top: 9px; color: var(--ink-2); font-size: .96rem; }

/* ------------------------------ preços ---------------------------------- */

/* plano único — tudo incluso */
.solo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  max-width: 1000px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--brand-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 5px rgba(59, 142, 234, .11), var(--shadow);
}

/* min-width:0 impede que o conteúdo force a coluna a crescer além da grade */
.solo-side, .solo-list { min-width: 0; }
.solo-side { padding: clamp(30px, 4vw, 46px); border-right: 1px solid var(--line); }
.solo-side h3 { font-size: 1.5rem; }
.solo-for { margin-top: 8px; color: var(--ink-3); font-size: .95rem; }
.solo-side .btn { margin-top: 24px; }

.solo-tags {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.solo-tags li {
  padding: 5px 13px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--ink-2);
}

.solo-list { padding: clamp(30px, 4vw, 46px); background: var(--bg-2); }
.solo-list h4 {
  margin-bottom: 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.solo-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 13px 26px;
}
.solo-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .94rem;
  color: var(--ink-2);
}
.solo-list svg { width: 19px; height: 19px; flex: none; color: var(--brand); margin-top: 1px; }
/* valor sob consulta */
.price-ask { margin: 22px 0 6px; }
.price-ask b {
  display: block;
  font-size: 1.72rem;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  color: var(--ink);
}
.price-ask span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 4px 12px 4px 9px;
  background: var(--green-soft);
  border-radius: 999px;
  color: var(--green);
  font-size: .84rem;
  font-weight: 650;
}
.price-ask svg { width: 14px; height: 14px; flex: none; }
.solo .price-ask b { color: var(--brand); }

.plans-foot {
  margin-top: 28px;
  text-align: center;
  color: var(--ink-3);
  font-size: .93rem;
}

/* ------------------------------ oferta ---------------------------------- */

.offer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #103a72, #2570d3 58%, #3b8eea);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.offer::after {
  content: "";
  position: absolute; right: -80px; top: -90px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 62%);
  pointer-events: none;
}
.offer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 32px;
  align-items: center;
}
.offer .eyebrow { color: #a9d0ff; }
.offer h2 { color: #fff; }
.offer p { margin-top: 14px; color: #d3e5fb; font-size: 1.03rem; max-width: 56ch; }
.offer .btn-ghost { background: #fff; border-color: #fff; color: var(--brand-ink); }

/* -------------------------------- FAQ ----------------------------------- */

.faq { max-width: 800px; margin-inline: auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-weight: 650;
  font-size: 1.01rem;
  letter-spacing: -.01em;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 11px; height: 11px; flex: none;
  border-right: 2.2px solid var(--ink-3);
  border-bottom: 2.2px solid var(--ink-3);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq details[open] summary { color: var(--brand); }
.faq .answer { padding: 0 24px 22px; color: var(--ink-2); font-size: .98rem; }

/* ------------------------------ CTA final ------------------------------- */

.final { text-align: center; }
.final h2 { max-width: 18ch; margin-inline: auto; }
.final p { max-width: 56ch; margin: 18px auto 0; color: var(--ink-2); font-size: 1.06rem; }
.final .hero-cta { justify-content: center; }

/* ------------------------------- rodapé --------------------------------- */

.footer {
  padding: 56px 0 40px;
  background: var(--ink);
  color: #93a3b8;
  font-size: .93rem;
}
.footer .brand { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid #1f2b3b;
}
.footer p { margin-top: 14px; max-width: 40ch; line-height: 1.65; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em;
             text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-bot {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  justify-content: space-between;
  padding-top: 26px;
  font-size: .87rem;
  color: #6b7c92;
}

/* --------------------------- WhatsApp flutuante -------------------------- */

.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px 14px 16px;
  background: #1faa53;
  border-radius: 999px;
  color: #fff;
  font-weight: 650;
  font-size: .96rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(31,170,83,.4);
  transition: transform .18s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(31,170,83,.5); }
.wa-float svg { width: 22px; height: 22px; flex: none; }

/* ------------------------------ responsivo ------------------------------ */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: 2; }
  .split.flip .split-media { order: 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .mock-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 12px 22px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 13px; font-size: 1rem; }

  .solo { grid-template-columns: 1fr; }
  .solo-side { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .mock-cols { grid-template-columns: 1fr; }
  .mock-col { min-height: 0; }
  .mock-col:nth-child(n+3) { display: none; }
  .mock-foot { grid-template-columns: 1fr 1fr; }
  .mock-foot .mstat:last-child { display: none; }
  .hero-cta .btn { width: 100%; }
  .wa-float { padding: 14px; right: 16px; bottom: 16px; }
  .wa-float span { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

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