/* =====================================================================
   ÓTICA DIME — Landing de conversão (repaginação do site oficial)
   Identidade real: NAVY sólido + branco + acento âmbar quente.
   Mascote oficial no hero. Font: Poppins. Sem travessões, espaçamento limpo.
   ===================================================================== */

:root {
  --navy:        #1E3A5F;
  --navy-700:    #173050;
  --navy-900:    #102540;
  --blue:        #2B6CB0;
  --blue-600:    #2560A0;
  --blue-soft:   #EAF1F9;
  --amber:       #F39A1F;
  --amber-bright:#FBB03B;
  --amber-deep:  #C97A0C;
  --green:       #25A65B;
  --green-deep:  #1B8C49;
  --ink:         #1A2B45;
  --text:        #4A5567;
  --muted:       #76828F;
  --white:       #FFFFFF;
  --bg:          #FFFFFF;
  --bg-soft:     #F5F7FA;
  --bg-soft-2:   #EDF1F6;
  --line:        #E5E9F0;
  --line-2:      #EFF2F7;
  --shadow-xs:   0 1px 2px rgba(26,43,69,.05);
  --shadow-sm:   0 12px 28px -16px rgba(26,43,69,.20);
  --shadow-md:   0 24px 48px -26px rgba(26,43,69,.26);
  --shadow-lg:   0 40px 80px -40px rgba(26,43,69,.34);
  --radius:      18px;
  --radius-lg:   24px;
  --radius-sm:   12px;
  --maxw:        1180px;
  --font:        "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.relative { position: relative; z-index: 2; }

/* ---------- tipografia ---------- */
h1, h2, h3 { font-family: var(--font); color: var(--ink); font-weight: 700; line-height: 1.18; letter-spacing: -.015em; }
.eyebrow { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); display: inline-flex; align-items: center; gap: .55rem; }
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--amber); display: inline-block; }
.ink-accent { color: var(--blue); font-weight: 700; }
.serif-mark { color: var(--blue); font-weight: 700; white-space: nowrap; }

/* ---------- wordmark (placa) ---------- */
.wordmark { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.wm-top { font-size: .55rem; font-weight: 700; letter-spacing: .38em; text-transform: uppercase; color: var(--navy); border: 1.5px solid var(--navy); border-radius: 4px; padding: 3px 6px 2px 9px; margin-bottom: 4px; }
.wm-main { font-size: 1.55rem; font-weight: 800; letter-spacing: .1em; color: var(--navy); }
.wordmark.on-dark .wm-top { color: #fff; border-color: rgba(255,255,255,.5); }
.wordmark.on-dark .wm-main { color: #fff; }
.wordmark.on-dark .wm-main::first-letter { color: var(--amber-bright); }

/* ---------- botões ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; font-weight: 600; font-size: 1rem; letter-spacing: -.005em; padding: 1rem 1.7rem; border: none; border-radius: 12px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); text-align: center; line-height: 1; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 12px 24px -14px rgba(30,58,95,.7); }
.btn-primary:hover { transform: translateY(-2px); background: var(--navy-700); }
/* CTA principal: âmbar quente */
.btn-amber { background: var(--amber); color: #fff; width: 100%; font-weight: 700; box-shadow: 0 14px 26px -12px rgba(243,154,31,.6); font-size: 1.05rem; padding: 1.15rem 1.7rem; }
.btn-amber:hover { transform: translateY(-2px); background: var(--amber-bright); box-shadow: 0 20px 36px -14px rgba(243,154,31,.7); }
.btn-amber:disabled { opacity: .85; transform: none; cursor: wait; }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 12px 24px -12px rgba(37,166,91,.55); }
.btn-green:hover { transform: translateY(-2px); background: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); padding: .7rem 1.2rem; border-radius: 12px; font-weight: 600; font-size: .92rem; }
.btn-ghost:hover { border-color: var(--navy); background: var(--bg-soft); }

/* ---------- chips de features (hero) ---------- */
.feat-chips { display: flex; flex-wrap: wrap; gap: .5rem .6rem; margin-bottom: 1.6rem; }
.chip { display: inline-flex; align-items: center; gap: .4rem; background: var(--blue-soft); color: var(--navy); font-weight: 600; font-size: .85rem; padding: .5rem .85rem; border-radius: 999px; }
.chip svg { width: 15px; height: 15px; color: var(--green); }

/* ---------- pill ---------- */
.pill { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .8rem; padding: .5rem .9rem; border-radius: 999px; }
.pill-gold { background: rgba(243,154,31,.14); color: var(--amber-deep); }
.pill svg { width: 15px; height: 15px; }

/* =====================================================================
   PROMO BAR
   ===================================================================== */
.promo-bar { background: var(--navy); color: #fff; text-align: center; font-weight: 500; font-size: .85rem; padding: 10px 16px; position: relative; z-index: 60; }
.promo-bar b { color: var(--amber-bright); font-weight: 700; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header { position: sticky; top: 0; z-index: 50; transition: box-shadow .3s var(--ease), padding .3s var(--ease); padding: 15px 0; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.site-header.scrolled { box-shadow: 0 4px 22px -16px rgba(26,43,69,.35); padding: 9px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; color: var(--navy); padding: 6px; margin: -6px; border-radius: 10px; }
.header-phone svg { width: 20px; height: 20px; color: var(--green); }

/* =====================================================================
   HERO — branco, navy, mascote oficial
   ===================================================================== */
.hero { position: relative; padding: 56px 0 72px; background: var(--white); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 48px; align-items: center; }
.hero-copy { max-width: 580px; }
.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.4rem); margin: 1rem 0 1rem; color: var(--ink); font-weight: 700; line-height: 1.12; }
.hero-sub { font-size: 1.1rem; color: var(--text); max-width: 32em; margin-bottom: 1.4rem; }
.hero-trust { display: flex; align-items: center; gap: .8rem; margin-top: 1.1rem; }
.stars { display: flex; gap: 2px; color: var(--amber); }
.stars svg { width: 17px; height: 17px; }
.trust-text { font-size: .88rem; color: var(--muted); }
.trust-text b { color: var(--ink); }

/* visual / mascote + cards flutuantes 3D */
.hero-visual { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.hero-stage { position: relative; width: 100%; max-width: 460px; transform-style: preserve-3d; }
.hero-mascote { position: relative; z-index: 2; width: 100%; height: auto; filter: drop-shadow(0 36px 46px rgba(26,43,69,.22)); }
.hero-photo { display: none; }

/* blobs desfocados de atmosfera */
.blob { position: absolute; border-radius: 50%; filter: blur(46px); z-index: 0; pointer-events: none; }
.blob-1 { width: 240px; height: 240px; top: -30px; right: -20px; background: rgba(43,108,176,.28); animation: blobFloat 9s var(--ease) infinite; }
.blob-2 { width: 200px; height: 200px; bottom: 0; left: -30px; background: rgba(243,154,31,.22); animation: blobFloat 11s var(--ease) infinite reverse; }
@keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(14px,-18px) scale(1.06); } }

/* card base */
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 11px 15px; border-radius: 16px; background: #fff; box-shadow: 0 22px 40px -18px rgba(26,43,69,.34), 0 4px 10px -6px rgba(26,43,69,.2); will-change: transform; backface-visibility: hidden; }
.float-card.glass { background: rgba(255,255,255,.72); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4); border: 1px solid rgba(255,255,255,.7); }
.float-card .fc-body { line-height: 1.15; }
.float-card .fc-body b { display: block; font-size: .98rem; color: var(--ink); font-weight: 700; }
.float-card .fc-sub { font-size: .73rem; color: var(--muted); }

.fc-ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex: none; }
.ic-amber { background: linear-gradient(150deg, var(--amber-bright), var(--amber)); }
.ic-green { background: linear-gradient(150deg, #2DBE6A, var(--green)); }
.fc-ic svg { width: 20px; height: 20px; }

/* card Google */
.g-logo { width: 40px; height: 40px; border-radius: 11px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; flex: none; }
.g-logo svg { width: 22px; height: 22px; }
.fc-rating { display: flex; align-items: center; gap: 6px; }
.fc-rating b { font-size: 1.05rem; color: var(--ink); font-weight: 800; }
.fc-stars { display: inline-flex; gap: 1px; color: var(--amber); }
.fc-stars svg { width: 12px; height: 12px; }

/* avatares */
.fc-avatars { display: inline-flex; flex: none; }
.fc-avatars i { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; background-size: cover; background-position: center; }
.fc-avatars i:first-child { margin-left: 0; background: linear-gradient(135deg,#5B7CB8,#1E3A5F); }
.fc-avatars i:nth-child(2) { background: linear-gradient(135deg,#F0B05A,#D87E0A); }
.fc-avatars i:nth-child(3) { background: linear-gradient(135deg,#46C77E,#1B8C49); }

/* posições + animações 3D distintas */
.fc-google  { top: 8%;   left: -42px; animation: floatA 6.5s var(--ease) infinite; }
.fc-time    { top: 2%;   right: -26px; animation: floatB 7.5s var(--ease) infinite; }
.fc-free    { bottom: 24%; left: -52px; animation: floatB 8s var(--ease) infinite .4s; }
.fc-clients { bottom: 4%;  right: -30px; animation: floatA 7s var(--ease) infinite .6s; }

@keyframes floatA {
  0%,100% { transform: translate3d(0,0,0) rotate(-2.5deg); }
  50%     { transform: translate3d(0,-16px,30px) rotate(-1deg); }
}
@keyframes floatB {
  0%,100% { transform: translate3d(0,0,0) rotate(2.5deg); }
  50%     { transform: translate3d(0,-14px,24px) rotate(1deg); }
}

/* ---------- FORM CARD ---------- */
.lead-card { position: relative; background: var(--white); border-radius: var(--radius-lg); padding: 26px 26px 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); margin-top: .4rem; }
.lead-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(37,166,91,.1); color: var(--green-deep); font-weight: 600; font-size: .74rem; letter-spacing: .02em; text-transform: uppercase; padding: .42rem .8rem; border-radius: 999px; margin-bottom: .9rem; }
.lead-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(37,166,91,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,166,91,.5); } 70% { box-shadow: 0 0 0 9px rgba(37,166,91,0); } 100% { box-shadow: 0 0 0 0 rgba(37,166,91,0); } }
.lead-card h2 { font-size: 1.5rem; line-height: 1.2; margin-bottom: .3rem; }
.lead-card p.lead-sub { color: var(--muted); font-size: .92rem; margin-bottom: 1.2rem; }
.field { margin-bottom: .85rem; }
.field label { display: block; font-size: .76rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; letter-spacing: .02em; text-transform: uppercase; }
.field .input-wrap { position: relative; }
.field .input-wrap svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); }
.field input { width: 100%; font-family: inherit; font-size: 1.02rem; color: var(--ink); padding: .95rem 1rem .95rem 2.8rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; transition: border-color .2s, box-shadow .2s; }
.field input::placeholder { color: #9AA6B5; }
.field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(43,108,176,.13); }
.form-error { display: none; color: #C0392B; font-size: .85rem; font-weight: 600; margin: -.05rem 0 .65rem; }
.form-foot { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: .85rem; color: var(--muted); font-size: .78rem; }
.form-foot svg { width: 14px; height: 14px; color: var(--green); }
.wha-hint { display: flex; align-items: center; justify-content: center; gap: .45rem; margin-top: .55rem; font-size: .78rem; color: var(--muted); }
.wha-hint svg { width: 15px; height: 15px; color: var(--green); }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 30px 16px; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.02em; }
.stat-num span { color: var(--amber-bright); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 6px; }

/* =====================================================================
   SECTIONS
   ===================================================================== */
section { position: relative; z-index: 2; }
.section { padding: 80px 0; }
.section-head { max-width: 660px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.5rem); margin: .8rem 0 .7rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.center { text-align: center; }
.eyebrow.center-flex { justify-content: center; }
.bg-paper { background: var(--bg-soft); }

/* ---------- vitrine ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; cursor: pointer; }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft-2); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.product-tag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--amber-deep); }
.product h3 { font-size: 1.2rem; }
.product p { color: var(--muted); font-size: .9rem; }
.product-cta { display: inline-flex; align-items: center; gap: .4rem; color: var(--blue); font-weight: 600; font-size: .92rem; margin-top: 6px; }
.product-cta svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.product:hover .product-cta svg { transform: translateX(4px); }

/* ---------- benefícios ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit-ic { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: var(--blue-soft); color: var(--navy); }
.benefit-ic svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.18rem; margin-bottom: .45rem; }
.benefit p { color: var(--muted); font-size: .93rem; }

/* ---------- como funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.step-num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.step h3 { font-size: 1.22rem; margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .93rem; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -18px; width: 12px; height: 12px; border-top: 2.5px solid var(--amber); border-right: 2.5px solid var(--amber); transform: rotate(45deg); z-index: 3; }

/* ---------- prova social ---------- */
.bg-ink { background: var(--bg-soft); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-xs); }
.review .stars { margin-bottom: 14px; }
.review p { font-size: .98rem; line-height: 1.6; color: var(--text); margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.05rem; }
.review-author b { display: block; font-size: .94rem; color: var(--ink); }
.review-author span { font-size: .8rem; color: var(--muted); }
.review-g { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; color: var(--muted); font-weight: 600; }
.review-g svg { width: 18px; height: 18px; }

/* ---------- serviços ---------- */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: box-shadow .3s var(--ease); }
.service:hover { box-shadow: var(--shadow-sm); }
.service-ic { flex: none; width: 50px; height: 50px; border-radius: 12px; background: var(--blue-soft); color: var(--navy); display: grid; place-items: center; }
.service-ic svg { width: 24px; height: 24px; }
.service h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.service p { color: var(--muted); font-size: .92rem; }

/* ---------- oferta ---------- */
.offer { position: relative; overflow: hidden; border-radius: var(--radius-lg); display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; box-shadow: var(--shadow-md); }
.offer-content { background: var(--navy); color: #E8EDF4; padding: 54px 50px; }
.offer h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 1rem; }
.offer p { color: rgba(232,237,244,.82); font-size: 1.02rem; margin-bottom: 1.4rem; }
.offer .eyebrow { color: var(--amber-bright); }
.offer .eyebrow::before { background: var(--amber-bright); }
.offer-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 1.5rem; }
.offer-price .old { text-decoration: line-through; opacity: .5; font-size: 1.15rem; }
.offer-price .new { font-size: 2.6rem; font-weight: 800; color: var(--amber-bright); line-height: 1; letter-spacing: -.02em; }
.offer-price .unit { font-size: .92rem; opacity: .85; }
.offer-img { position: relative; min-height: 360px; background: var(--bg-soft-2); }
.offer-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--blue); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 21px 24px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font); font-size: 1.05rem; font-weight: 600; color: var(--ink); cursor: pointer; }
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--blue); transition: transform .3s var(--ease); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 24px 21px; color: var(--muted); font-size: .96rem; }

/* ---------- localização ---------- */
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; }
.local-info { display: flex; flex-direction: column; gap: 18px; }
.local-row { display: flex; gap: 14px; align-items: flex-start; }
.local-row .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--blue-soft); color: var(--navy); display: grid; place-items: center; }
.local-row .ic svg { width: 21px; height: 21px; }
.local-row h4 { font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.local-row p { font-size: 1.02rem; color: var(--ink); font-weight: 500; }
.local-map { border-radius: var(--radius); overflow: hidden; min-height: 360px; border: 1px solid var(--line); }
.local-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- CTA final ---------- */
.final-cta { text-align: center; padding: 88px 0; background: var(--bg-soft); }
.final-cta h2 { font-size: clamp(2rem, 4.2vw, 2.9rem); margin: .9rem auto; max-width: 20ch; }
.final-cta p { color: var(--muted); font-size: 1.08rem; max-width: 44ch; margin: 0 auto 1.8rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--navy); color: #C2CCDA; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 38px; }
.site-footer p { font-size: .92rem; line-height: 1.6; color: rgba(194,204,218,.8); margin-top: 16px; max-width: 32ch; }
.footer-col h4 { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-bright); margin-bottom: 16px; }
.footer-col a, .footer-col li, .footer-col span { display: block; font-size: .93rem; color: rgba(194,204,218,.85); margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(194,204,218,.55); }

/* =====================================================================
   FLUTUANTES
   ===================================================================== */
.fab-wha { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,166,91,.6); transition: transform .25s var(--ease); }
.fab-wha svg { width: 29px; height: 29px; }
.fab-wha:hover { transform: scale(1.08); }
.fab-wha::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--green); animation: ring 2.2s infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }

.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 12px 16px; transform: translateY(120%); transition: transform .35s var(--ease); display: none; }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .07s; }
[data-reveal][data-delay="2"] { transition-delay: .14s; }
[data-reveal][data-delay="3"] { transition-delay: .21s; }
[data-reveal][data-delay="4"] { transition-delay: .28s; }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 36px 0 52px; }
  .hero-visual { order: -1; }
  .hero-stage { max-width: 340px; }
  .fc-google  { left: -16px; }
  .fc-time    { right: -8px; }
  .fc-free    { left: -16px; }
  .fc-clients { right: -8px; }
  .float-card { padding: 9px 12px; gap: 9px; }
  .float-card .fc-body b { font-size: .9rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .products { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .step:not(:last-child)::after { display: none; }
  .reviews { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .offer { grid-template-columns: 1fr; }
  .offer-img { min-height: 230px; order: -1; }
  .local-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .section { padding: 48px 0; }
  .promo-bar { font-size: .74rem; padding: 9px 12px; }
  .header-phone span { display: none; }
  .header-actions .btn-ghost { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .lead-card { padding: 24px 20px; }
  .stat { padding: 22px 12px; }
  .stat-num { font-size: 1.8rem; }
  .fc-time, .fc-clients { display: none; }
  .fc-google { left: -6px; top: 4%; }
  .fc-free { left: -6px; bottom: 16%; }
  .fab-wha { display: none; }
  .sticky-cta { display: block; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  /* espaço para a barra fixa não cobrir o fim do rodapé */
  body { padding-bottom: 76px; }
  .site-footer { padding-bottom: 20px; }
  .offer-content { padding: 36px 24px; }
  .final-cta { padding: 56px 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
