/* ===== VARIABLES ===== */
:root {
  --yellow: #f0b323;
  --yellow-dark: #d99a12;
  --yellow-soft: rgba(240,179,35,.12);
  --yellow-line: rgba(240,179,35,.35);
  --blue: #002554;
  --blue-deep: #00142e;
  --blue-mid: #123f82;
  --ink: #07111f;
  --slate: #334155;
  --muted: #5a6b82;
  --line: #e2e8f0;
  --line-soft: #edf2f7;
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --white: #fff;
  --green: #25d366;
  --green-dark: #128C7E;
  --success: #15803d;
  --error: #b91c1c;
  --shadow-sm: 0 6px 18px rgba(0,37,84,.06);
  --shadow-md: 0 16px 34px rgba(0,37,84,.10);
  --shadow-lg: 0 28px 64px rgba(0,37,84,.14);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --font: 'Montserrat',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
  --header-h: 76px;
}

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { min-width: 320px; overflow-x: hidden; color: var(--ink); background: linear-gradient(180deg,#fff 0%,#f8fbff 38%,#fff 100%); font-family: var(--font); line-height: 1.65; font-size: 16px; }
img,svg,video { display: block; max-width: 100%; }
img { height: auto; }
button,input,select,textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,p { text-wrap: balance; }

.container { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }

/* ===== SKIP LINK ===== */
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; transform: translateY(-200%); background: var(--yellow); color: var(--blue); padding: 12px 18px; border-radius: 10px; font-weight: 800; font-size: .9rem; box-shadow: var(--shadow-md); transition: transform .2s var(--ease); }
.skip-link:focus { transform: translateY(0); }

/* ===== HEADER ===== */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; background: rgba(255,255,255,.95); border-bottom: 1px solid rgba(0,37,84,.08); backdrop-filter: blur(16px); transition: box-shadow .3s ease, background .3s ease, border-color .3s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.98); border-color: rgba(0,37,84,.12); box-shadow: 0 12px 34px rgba(0,37,84,.10); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 174px; height: auto; object-fit: contain; }

.site-nav { display: none; align-items: center; gap: 18px; color: var(--blue); font-size: .82rem; font-weight: 700; }
.site-nav a { position: relative; padding: 6px 0; }
.site-nav a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--yellow); border-radius: 2px; transition: width .25s var(--ease); }
.site-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-phone { color: var(--muted); font-weight: 700; font-size: .8rem; white-space: nowrap; }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; border: 1px solid rgba(217,154,18,.48); border-radius: 12px; background: linear-gradient(135deg,#ffdc72 0%,var(--yellow) 54%,var(--yellow-dark) 100%); color: var(--blue); padding: 10px 18px; font-weight: 900; font-size: .8rem; white-space: nowrap; box-shadow: 0 10px 20px rgba(0,37,84,.08), 0 8px 18px rgba(240,179,35,.20), inset 0 1px 0 rgba(255,255,255,.55); transition: transform .25s var(--ease), box-shadow .25s ease, filter .25s ease, border-color .25s ease; }
.nav-cta::after { content: '→'; color: var(--blue); font-size: .95rem; line-height: 1; transition: transform .2s var(--ease); }
.nav-cta:hover { transform: translateY(-2px); border-color: rgba(217,154,18,.72); filter: saturate(1.04); box-shadow: 0 14px 30px rgba(240,179,35,.32), inset 0 1px 0 rgba(255,255,255,.5); }
.nav-cta:hover::after { transform: translateX(3px); }

.menu-toggle { display: flex; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; position: relative; z-index: 60; }
.menu-toggle span { width: 20px; height: 2.4px; background: var(--blue); border-radius: 2px; transition: .25s var(--ease); }
.menu-toggle[aria-expanded=true] span:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.menu-toggle[aria-expanded=true] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded=true] span:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

.mobile-overlay { position: fixed; inset: 0; background: rgba(0,23,53,.55); z-index: 55; opacity: 0; visibility: hidden; transition: .3s ease; }
.mobile-overlay.is-active { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; right: -100%; z-index: 56; width: min(320px, 85vw); height: 100dvh; background: var(--white); padding: 90px 28px 32px; display: flex; flex-direction: column; box-shadow: -16px 0 48px rgba(0,37,84,.14); transition: right .35s var(--ease); }
.mobile-menu.is-active { right: 0; }
.mobile-link { display: block; padding: 14px 0; color: var(--blue); font-size: 1rem; font-weight: 700; border-bottom: 1px solid var(--line-soft); }
.mobile-cta { margin-top: 18px; text-align: center; border: 0; border-radius: 12px; background: linear-gradient(135deg,#ffdc72,var(--yellow) 52%,var(--yellow-dark)); color: var(--blue) !important; padding: 14px; font-weight: 900; font-size: .95rem; box-shadow: 0 10px 24px rgba(240,179,35,.22); }
.mobile-phone { color: var(--muted); font-weight: 600; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; isolation: isolate; background: var(--blue-deep); padding-top: var(--header-h); scroll-margin-top: var(--header-h); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; object-fit: cover; object-position: center; filter: saturate(.9) contrast(1.04); }
.hero-video { pointer-events: none; background: var(--blue-deep); }
.hero-video::-webkit-media-controls { display: none !important; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(0,20,46,.98) 0%, rgba(0,37,84,.92) 45%, rgba(0,37,84,.54) 100%), linear-gradient(180deg, rgba(0,0,0,.16), transparent 28%, rgba(0,20,46,.22)); }
.hero-content { position: relative; z-index: 2; padding: 80px 0 64px; }
.hero-kicker { display: inline-flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-kicker span { display: inline-flex; align-items: center; border: 1px solid rgba(240,179,35,.35); border-radius: var(--radius-full); background: rgba(240,179,35,.12); color: var(--yellow); padding: 7px 13px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero h1 { max-width: 800px; color: var(--white); font-size: clamp(2.2rem, 5.2vw, 4.2rem); line-height: 1.02; letter-spacing: -.04em; font-weight: 800; text-shadow: 0 12px 34px rgba(0,20,46,.32); }
.hero-lead { max-width: 640px; margin-top: 20px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.5vw, 1.2rem); font-weight: 600; line-height: 1.7; }

.hero-proof { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding: 14px 18px; border: 1px solid rgba(240,179,35,.30); border-radius: 14px; background: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 30px rgba(0,20,46,.16); max-width: fit-content; backdrop-filter: blur(8px); }
.hero-proof .stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; }
.hero-proof p { color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 600; }
.hero-proof strong { color: var(--white); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { min-height: 54px; position: relative; isolation: isolate; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 14px; padding: 13px 26px; text-align: center; font-weight: 900; font-size: .9rem; letter-spacing: .01em; cursor: pointer; transform: translateZ(0); transition: transform .28s var(--ease), box-shadow .28s ease, background .28s ease, border-color .28s ease, color .28s ease; }
.btn svg { flex: 0 0 auto; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { border-color: rgba(217,154,18,.48); background: linear-gradient(135deg,#ffe08a 0%,var(--yellow) 50%,var(--yellow-dark) 100%); color: var(--blue); box-shadow: 0 14px 28px rgba(0,37,84,.10), 0 14px 30px rgba(240,179,35,.24), inset 0 1px 0 rgba(255,255,255,.58); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(240,179,35,.34), inset 0 1px 0 rgba(255,255,255,.58); }
.btn-glow { position: relative; }
.btn-glow::before { content: ''; position: absolute; inset: -2px; border-radius: 18px; background: linear-gradient(135deg,var(--yellow),var(--yellow-dark)); opacity: .34; filter: blur(12px); z-index: -1; transition: opacity .3s ease; }
.btn-glow:hover::before { opacity: .6; }
.btn-secondary { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.42); color: var(--white); box-shadow: inset 0 1px 0 rgba(255,255,255,.10); backdrop-filter: blur(8px); }
.btn-secondary:hover { transform: translateY(-3px); background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.62); box-shadow: 0 14px 30px rgba(0,20,46,.20), inset 0 1px 0 rgba(255,255,255,.14); }
.btn-full { width: 100%; }

.hero-stats { max-width: 900px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 36px; }
.hero-stats div { padding: 18px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.06); text-align: center; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.hero-stats dt { color: var(--yellow); font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 800; line-height: 1; }
.hero-stats dd { margin-top: 6px; color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 600; line-height: 1.35; }

/* ===== SECTIONS ===== */
.section { padding: 88px 0; scroll-margin-top: calc(var(--header-h) + 16px); }
.section-heading { max-width: 720px; text-align: center; margin-bottom: 44px; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--yellow-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before, .eyebrow::after { content: ''; width: 28px; height: 2px; background: var(--yellow); border-radius: 2px; }
.method-copy .eyebrow, .proof-copy .eyebrow, .contact-copy .eyebrow, .sobre-texto .eyebrow { justify-content: flex-start; }
.section-heading h2, .method-copy h2, .proof-copy h2, .contact-copy h2, .sobre-texto h2 { color: var(--blue); font-size: clamp(1.8rem, 3.8vw, 2.8rem); line-height: 1.1; letter-spacing: -.03em; font-weight: 800; }
.section-heading p:not(.eyebrow), .method-copy p, .proof-copy p, .contact-copy p, .sobre-texto p { color: var(--muted); font-size: 1rem; font-weight: 600; line-height: 1.75; }
.section-heading p:not(.eyebrow) { margin-top: 14px; }
.local-copy h2, .final-cta h2 { color: var(--blue); font-size: clamp(1.7rem, 3.4vw, 2.55rem); line-height: 1.1; letter-spacing: -.03em; font-weight: 800; }
.local-copy p, .final-cta p { margin-top: 14px; color: var(--muted); font-weight: 600; line-height: 1.75; }

/* ===== SERVICES ===== */
.services { background: linear-gradient(180deg, #f6f9fd 0%, var(--white) 100%); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
.service-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(0,37,84,.10); border-radius: var(--radius-lg); background: linear-gradient(180deg,var(--white),#fbfdff); box-shadow: 0 12px 30px rgba(0,37,84,.07); transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease; }
.service-card::before { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg,var(--yellow),rgba(240,179,35,0)); opacity: 0; transition: opacity .3s ease; }
.service-card:hover { transform: translateY(-6px); border-color: var(--yellow-line); box-shadow: 0 26px 58px rgba(0,37,84,.13); }
.service-card:hover::before { opacity: 1; }
.service-card-featured { border-color: rgba(240,179,35,.48); box-shadow: 0 20px 48px rgba(0,37,84,.11); }
.service-card-featured .service-content span { background: linear-gradient(135deg,var(--blue),var(--blue-mid)); color: var(--yellow); border-color: rgba(0,37,84,.15); }
.service-image { height: 200px; overflow: hidden; background: var(--bg-soft); position: relative; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,37,84,.55)); }
.service-card:hover img { transform: scale(1.05); }
.service-content { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 26px; }
.service-content span { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 14px; border-radius: 12px; background: linear-gradient(180deg,rgba(240,179,35,.15),rgba(240,179,35,.08)); border: 1px solid rgba(240,179,35,.25); color: var(--yellow-dark); font-weight: 800; font-size: .9rem; }
.service-content h3 { margin-bottom: 10px; color: var(--blue); font-size: 1.1rem; font-weight: 800; line-height: 1.25; }
.service-content p { color: var(--muted); font-size: .92rem; font-weight: 600; line-height: 1.65; }
.service-content a { width: 100%; min-height: 48px; display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 24px; padding: 12px 16px; border: 1px solid rgba(0,37,84,.20); border-radius: 12px; background: linear-gradient(135deg,var(--blue),#0d3b78); color: var(--white); font-size: .84rem; font-weight: 900; line-height: 1.2; box-shadow: 0 12px 24px rgba(0,37,84,.14), inset 0 1px 0 rgba(255,255,255,.10); transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-content a::after { content: '→'; color: var(--yellow); font-size: 1rem; line-height: 1; transition: transform .2s ease; }
.service-content a:hover { transform: translateY(-2px); border-color: rgba(240,179,35,.55); box-shadow: 0 16px 30px rgba(0,37,84,.20), inset 0 1px 0 rgba(255,255,255,.12); }
.service-content a:hover::after { transform: translateX(4px); }
.service-card-featured .service-content a { border-color: rgba(240,179,35,.55); }

/* ===== TRUST / LOGO CAROUSEL ===== */
.trust { background: linear-gradient(180deg, var(--white), #f6f9fd); }
.cases-heading { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 34px; color: var(--yellow-dark); font-size: .82rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.cases-heading::before, .cases-heading::after { content: ''; width: 42px; height: 2px; border-radius: 2px; background: var(--yellow); }
.logo-carousel { position: relative; overflow: hidden; border-radius: var(--radius-xl); border: 1px solid rgba(0,37,84,.08); background: rgba(255,255,255,.78); box-shadow: var(--shadow-lg); padding: 24px 0; }
.logo-carousel::before, .logo-carousel::after { content: ''; position: absolute; top: 0; bottom: 0; z-index: 2; width: 12%; pointer-events: none; }
.logo-carousel::before { left: 0; background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); }
.logo-carousel::after { right: 0; background: linear-gradient(270deg, #fff, rgba(255,255,255,0)); }
.logo-track { display: flex; align-items: center; gap: 22px; width: max-content; animation: logoMarquee 32s linear infinite; will-change: transform; }
.logo-carousel:hover .logo-track { animation-play-state: paused; }
.logo-item { width: clamp(170px, 18vw, 240px); height: 124px; flex: 0 0 auto; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(0,37,84,.08); border-radius: var(--radius); background: var(--white); padding: 18px 22px; box-shadow: 0 8px 20px rgba(0,37,84,.06); }
.logo-item img { width: auto; height: auto; max-width: 100%; max-height: 84px; object-fit: contain; filter: saturate(1.04) contrast(1.03); }
@keyframes logoMarquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(calc(-50% - 11px),0,0); } }

/* ===== METHOD ===== */
.method { background: var(--white); }
.method-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.check-list { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; color: var(--blue); font-weight: 700; font-size: .95rem; }
.check-list li::before { content: '✓'; display: grid; place-items: center; width: 22px; height: 22px; flex: 0 0 22px; border-radius: var(--radius-full); background: var(--yellow-soft); color: var(--yellow-dark); font-weight: 800; font-size: .75rem; }
.method-copy .btn { margin-top: 28px; }
.method-steps { display: grid; grid-template-columns: 1fr; gap: 14px; }
.method-steps article { position: relative; overflow: hidden; padding: 26px; border: 1px solid rgba(0,37,84,.09); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--white), #fbfdff); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease; }
.method-steps article:hover { transform: translateY(-4px); border-color: var(--yellow-line); box-shadow: var(--shadow-md); }
.method-steps strong { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 14px; border-radius: var(--radius-full); background: linear-gradient(135deg, var(--blue), var(--blue-mid)); color: var(--yellow); font-weight: 800; font-size: .9rem; }
.method-steps h3 { color: var(--blue); font-size: 1rem; line-height: 1.25; margin-bottom: 6px; font-weight: 800; }
.method-steps p { color: var(--muted); font-size: .9rem; font-weight: 600; line-height: 1.6; }
.step-time { display: block; margin-top: 10px; color: var(--yellow-dark); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

/* ===== SOBRE ===== */
.sobre { background: var(--white); }
.sobre-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.sobre-imagem { overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); position: relative; }
.sobre-imagem::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,37,84,.1), transparent 55%); }
.sobre-imagem img { width: 100%; min-height: 320px; height: 100%; object-fit: cover; }
.sobre-texto p { margin-top: 16px; }
.lista-especialidades { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-top: 24px; padding: 0; list-style: none; }
.lista-especialidades li { display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line-soft); padding: 10px 0; color: var(--blue); font-weight: 700; font-size: .88rem; }
.lista-especialidades li::before { content: '✓'; display: grid; place-items: center; width: 18px; height: 18px; flex: 0 0 18px; border-radius: var(--radius-full); background: var(--yellow-soft); color: var(--yellow-dark); font-size: .7rem; font-weight: 800; }

/* ===== PROOF ===== */
.proof { background: linear-gradient(180deg, var(--white) 0%, #f6f9fd 100%); color: var(--ink); position: relative; overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.proof::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(240,179,35,.08), transparent 34%); pointer-events: none; }
.proof-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
.proof .eyebrow { color: var(--yellow-dark); }
.proof .eyebrow::before, .proof .eyebrow::after { background: var(--yellow); }
.proof h2 { color: var(--blue); }
.proof-copy { position: relative; padding-left: 18px; }
.proof-copy::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 6px; width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--yellow), rgba(240,179,35,.18)); }
.proof-copy p { color: var(--muted); }
.proof-authority .proof-copy p:not(.eyebrow) { max-width: 600px; }
.proof-numbers { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.proof-numbers div { position: relative; overflow: hidden; min-height: 126px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border: 1px solid rgba(0,37,84,.10); border-radius: var(--radius-lg); background: rgba(255,255,255,.92); box-shadow: 0 16px 34px rgba(0,37,84,.08); }
.proof-numbers div::before { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg,var(--yellow),rgba(240,179,35,0)); }
.proof-numbers dt { color: var(--blue); font-size: clamp(1.65rem, 2.6vw, 2.45rem); font-weight: 900; line-height: 1; letter-spacing: -.02em; }
.proof-numbers dd { margin-top: 8px; color: var(--muted); font-size: .86rem; font-weight: 700; line-height: 1.45; }
.proof-number-feature { justify-content: center !important; gap: 10px; background: linear-gradient(145deg, var(--blue-deep), var(--blue)) !important; border-color: rgba(240,179,35,.34) !important; box-shadow: 0 20px 44px rgba(0,37,84,.18) !important; }
.proof-number-feature dt { color: var(--white); font-size: clamp(1.8rem, 2.8vw, 2.65rem); font-weight: 900; line-height: 1; letter-spacing: -.02em; }
.proof-number-feature dd { margin-top: 0; color: rgba(255,255,255,.82); font-size: 1rem; font-weight: 900; line-height: 1.2; }
.proof-numbers-four dt { font-size: clamp(1.5rem, 2.35vw, 2.2rem); }
.proof-numbers-four .proof-number-feature dt { font-size: clamp(1.8rem, 2.8vw, 2.65rem); }

/* ===== LOCAL SEO ===== */
.local-seo { background: linear-gradient(180deg, #f6f9fd 0%, var(--white) 100%); }
.local-grid { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; border: 1px solid rgba(240,179,35,.24); border-radius: var(--radius-xl); background: linear-gradient(145deg, var(--blue-deep), var(--blue) 64%, #062f68 100%); padding: clamp(28px, 4vw, 48px); box-shadow: 0 28px 72px rgba(0,37,84,.18); }
.local-grid::before { content: ''; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--yellow), rgba(240,179,35,.16), rgba(240,179,35,0)); }
.local-grid::after { content: ''; position: absolute; inset: auto 32px 28px auto; width: min(280px, 34vw); height: 1px; background: rgba(240,179,35,.45); transform: rotate(-22deg); transform-origin: right center; }
.local-copy { position: relative; z-index: 1; overflow: visible; border: 0; border-radius: 0; background: transparent; padding: 0; box-shadow: none; }
.local-copy::before { display: none; }
.local-copy .eyebrow { color: var(--yellow); }
.local-copy .eyebrow::before, .local-copy .eyebrow::after { background: var(--yellow); }
.local-copy h2 { max-width: 680px; color: var(--white); }
.local-copy p { max-width: 680px; color: rgba(255,255,255,.78); }
.local-copy p + p { margin-top: 10px; }
.local-highlights { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 26px; }
.local-highlights span { display: grid; gap: 4px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.075); padding: 14px 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.local-highlights strong { color: var(--white); font-size: 1.05rem; font-weight: 900; line-height: 1; }
.local-highlights em { color: rgba(255,255,255,.68); font-style: normal; font-size: .78rem; font-weight: 700; line-height: 1.35; }
.city-panel { position: relative; z-index: 1; overflow: hidden; width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.08); padding: 24px; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(6px); }
.city-panel::before { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--yellow), rgba(240,179,35,0)); }
.city-panel::after { display: none; }
.city-kicker { display: block; margin-bottom: 8px; color: var(--yellow); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.city-panel strong { display: block; max-width: 380px; margin-bottom: 18px; color: var(--white); font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 900; line-height: 1.15; letter-spacing: -.02em; }
.city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.city-list span { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-full); background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); padding: 8px 12px; font-size: .82rem; font-weight: 800; line-height: 1.2; }
.local-cta { width: 100%; margin-top: 24px; white-space: nowrap; }

/* ===== CONTACT ===== */
.contact { background: linear-gradient(180deg, var(--white), #f6f9fd); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.urgency-badge { display: flex; align-items: center; gap: 10px; margin: 20px 0; padding: 14px 16px; border: 1px solid rgba(240,179,35,.28); border-radius: var(--radius); background: linear-gradient(180deg,rgba(240,179,35,.14),rgba(240,179,35,.08)); color: var(--blue); font-size: .9rem; font-weight: 700; }
.urgency-badge svg { flex-shrink: 0; color: var(--yellow-dark); }
.contact-cards { display: grid; gap: 10px; margin-top: 24px; }
.contact-cards a, .contact-cards address { display: block; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 16px 18px; font-style: normal; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.contact-cards a:hover, .contact-cards address:hover { transform: translateY(-2px); border-color: var(--yellow-line); box-shadow: var(--shadow-md); }
.contact-cards strong { display: block; color: var(--blue); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-cards span { display: block; margin-top: 4px; color: var(--muted); font-weight: 600; font-size: .92rem; }

.lead-form { display: grid; gap: 16px; position: relative; overflow: hidden; border: 1px solid rgba(0,37,84,.10); border-radius: var(--radius-xl); background: linear-gradient(180deg,var(--white),#fbfdff); padding: 32px; box-shadow: var(--shadow-lg); }
.lead-form::before { content: ''; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--yellow), var(--yellow-dark)); }
.form-head { display: grid; gap: 4px; margin-bottom: 4px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.form-head strong { color: var(--blue); font-size: 1.15rem; font-weight: 800; }
.form-head span { color: var(--muted); font-size: .88rem; font-weight: 600; }
.lead-form label { display: grid; gap: 6px; }
.label-text { color: var(--blue); font-size: .82rem; font-weight: 700; letter-spacing: .02em; }
.label-text small { color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: 0; text-transform: none; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; min-height: 50px; border: 1.5px solid #cbd5e1; border-radius: 10px; background: #fbfdff; padding: 12px 14px; outline: none; color: var(--ink); font-size: .95rem; font-weight: 600; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.lead-form textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--yellow); background: var(--white); box-shadow: 0 0 0 3px rgba(240,179,35,.15); }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #94a3b8; font-weight: 500; }
.form-status { min-height: 1.4em; text-align: center; color: var(--muted); font-size: .88rem; font-weight: 600; opacity: 0; transform: translateY(-4px); transition: .25s ease; }
.form-status.is-visible { opacity: 1; transform: translateY(0); }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--error); }
.form-status a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.form-note { text-align: center; color: var(--muted); font-size: .75rem; font-weight: 600; line-height: 1.5; margin-top: 4px; }
.lead-form button:disabled { cursor: wait; opacity: .76; transform: none; }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-list { max-width: 860px; display: grid; gap: 12px; margin-inline: auto; }
.faq-item { border: 1px solid rgba(0,37,84,.09); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 0; background: transparent; color: var(--blue); padding: 20px 22px; text-align: left; font-weight: 800; font-size: .95rem; cursor: pointer; }
.faq-trigger::after { content: '+'; display: grid; place-items: center; width: 26px; height: 26px; flex: 0 0 26px; border-radius: var(--radius-full); background: var(--yellow-soft); color: var(--yellow-dark); font-size: 1rem; transition: transform .2s ease; }
.faq-trigger[aria-expanded=true]::after { content: '–'; transform: rotate(0); }
.faq-content { padding: 0 22px 20px; color: var(--muted); font-weight: 600; line-height: 1.7; font-size: .92rem; }
.faq-content.is-visible { animation: faqIn .25s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ===== FINAL CTA ===== */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--blue-deep), var(--blue) 58%, #0d3b78); color: var(--white); padding: 72px 0; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(240,179,35,.12), transparent 44%); pointer-events: none; }
.final-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.final-cta .eyebrow, .final-cta h2 { color: var(--white); }
.final-cta .eyebrow::before, .final-cta .eyebrow::after { background: var(--yellow); }
.final-cta p { max-width: 640px; color: rgba(255,255,255,.74); }
.final-cta .btn { width: fit-content; }

/* ===== FOOTER ===== */
.footer { position: relative; overflow: hidden; background: linear-gradient(155deg, var(--blue-deep), var(--blue) 58%, #062f66); color: var(--white); padding-top: 62px; }
.footer::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(240,179,35,.10), transparent 36%), radial-gradient(ellipse 48% 42% at 86% 0%, rgba(255,255,255,.08), transparent 70%); pointer-events: none; }
.footer-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
.footer img { width: 150px; max-width: 100%; margin-bottom: 16px; border-radius: 0; }
.footer-brand img { width: 214px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.18)); }
.footer p, .footer a, .footer span, .footer em { display: block; color: rgba(255,255,255,.72); font-size: .88rem; font-weight: 600; line-height: 1.7; }
.footer strong { display: block; margin-bottom: 12px; color: var(--yellow); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.footer a { margin: 7px 0; transition: color .2s ease, transform .2s ease, border-color .2s ease, background .2s ease; }
.footer a:hover { color: var(--yellow); }
.footer-brand p { max-width: 310px; color: rgba(255,255,255,.78); }
.footer-cta { width: fit-content; min-height: 42px; display: inline-flex !important; align-items: center; justify-content: center; margin-top: 18px !important; border-radius: 12px; background: linear-gradient(135deg,#ffdc72,var(--yellow) 52%,var(--yellow-dark)); color: var(--blue) !important; padding: 10px 16px; font-size: .82rem !important; font-weight: 900 !important; box-shadow: 0 10px 24px rgba(240,179,35,.24); }
.footer-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(240,179,35,.30); }
.footer-col { min-width: 0; }
.footer-col span { margin: 7px 0; }
.footer-partner { justify-self: start; max-width: 76px; border: 0; border-radius: 0; background: transparent; padding: 0; box-shadow: none; opacity: .30; transition: opacity .2s ease; }
.footer-partner:hover { opacity: .58; }
.partner-label { margin-bottom: 4px; color: rgba(255,255,255,.36) !important; font-size: .52rem !important; font-weight: 800 !important; text-transform: uppercase; letter-spacing: .12em; }
.partner-card { display: grid !important; grid-template-columns: 1fr; gap: 0; align-items: start; margin: 0 !important; color: var(--white) !important; }
.partner-logo { width: min(72px, 100%) !important; height: auto; margin: 0 !important; border-radius: 0 !important; }
.partner-card em { display: none; }
.footer-bottom { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 22px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.1); padding: 20px; text-align: center; }
.footer-bottom p { margin: 0; }
.footer-bottom p, .footer-bottom p span { display: inline; }
.footer-bottom div { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.footer-bottom a { margin: 0; color: rgba(255,255,255,.76); font-size: .82rem; font-weight: 800; }

/* ===== WHATSAPP FLOAT (ÚNICO) ===== */
.whatsapp-float { position: fixed; right: 16px; bottom: 16px; z-index: 45; min-height: 52px; display: inline-flex; align-items: center; gap: 10px; border-radius: var(--radius-full); background: linear-gradient(135deg, #25d366, #128C7E); color: var(--white); padding: 12px 20px; font-weight: 800; font-size: .92rem; letter-spacing: .02em; box-shadow: 0 8px 24px rgba(18,140,126,.35); transition: transform .35s var(--ease), box-shadow .35s ease, opacity .4s ease; opacity: 1; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 32px rgba(18,140,126,.45); }
.whatsapp-float.is-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }
.whatsapp-float span { white-space: nowrap; }

/* ===== THANK YOU PAGE ===== */
.thanks-page { background: var(--blue-deep); }
.thanks-hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; isolation: isolate; padding-top: var(--header-h); background: var(--blue-deep); }
.thanks-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(105deg, rgba(0,20,46,.96), rgba(0,37,84,.84) 48%, rgba(0,37,84,.52)); }
.thanks-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -1; filter: saturate(.9) contrast(1.04); }
.thanks-content { position: relative; z-index: 1; max-width: 760px; padding: 96px 0 72px; color: var(--white); }
.thanks-badge { display: inline-flex; align-items: center; margin-bottom: 18px; border: 1px solid rgba(240,179,35,.35); border-radius: var(--radius-full); background: rgba(240,179,35,.12); color: var(--yellow); padding: 7px 13px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.thanks-content h1 { color: var(--white); font-size: clamp(2.3rem, 5vw, 4.4rem); line-height: 1.02; letter-spacing: -.04em; font-weight: 800; }
.thanks-content p { max-width: 620px; margin-top: 20px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.5vw, 1.2rem); font-weight: 600; line-height: 1.7; }
.thanks-next { display: grid; gap: 10px; max-width: 560px; margin-top: 28px; padding: 0; list-style: none; }
.thanks-next li { display: flex; gap: 10px; color: rgba(255,255,255,.84); font-weight: 700; font-size: .95rem; }
.thanks-next li::before { content: '✓'; display: grid; place-items: center; width: 22px; height: 22px; flex: 0 0 22px; border-radius: var(--radius-full); background: rgba(240,179,35,.18); color: var(--yellow); font-size: .75rem; font-weight: 800; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* ===== SERVICE PAGES ===== */
.service-page-body { background: var(--white); }
.service-page-main { padding-top: var(--header-h); }
.service-page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--blue-deep), var(--blue) 62%, var(--blue-mid)); color: var(--white); padding: 86px 0 72px; }
.service-page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(240,179,35,.12), transparent 42%); pointer-events: none; }
.service-page-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
.service-breadcrumb { display: inline-flex; margin-bottom: 18px; color: rgba(255,255,255,.68); font-size: .8rem; font-weight: 800; }
.service-page-copy h1 { max-width: 760px; color: var(--white); font-size: clamp(2rem, 4.4vw, 4rem); line-height: 1.05; letter-spacing: -.04em; font-weight: 900; }
.service-page-copy p { max-width: 640px; margin-top: 18px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; line-height: 1.75; }
.service-page-media { overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.service-page-media img { width: 100%; min-height: 320px; height: 100%; object-fit: cover; }
.service-secondary { color: var(--white); }
.service-detail { background: linear-gradient(180deg, var(--white), var(--bg)); }
.service-detail-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.service-detail-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); padding: 26px; box-shadow: var(--shadow-sm); }
.service-detail-card strong { display: block; margin-bottom: 16px; color: var(--blue); font-size: .86rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.service-detail-card ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.service-detail-card li, .service-detail-card p { color: var(--muted); font-size: .92rem; font-weight: 600; line-height: 1.65; }
.service-detail-card li::before { content: ''; display: inline-block; width: 8px; height: 8px; margin-right: 9px; border-radius: var(--radius-full); background: var(--yellow); vertical-align: .08em; }
.service-detail-card p + p { margin-top: 12px; }
.service-crea { color: var(--blue) !important; font-weight: 900 !important; }
.service-final-cta { padding-top: 64px; padding-bottom: 64px; }

/* ===== HONEYPOT ===== */
.honeypot-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; pointer-events: none; }

/* ===== DATA COUNT ===== */
[data-count] { font-variant-numeric: tabular-nums; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== FOCUS ===== */
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 8px; }

/* ===== RESPONSIVE ===== */
@media (min-width: 680px) {
  .container { width: min(1160px, calc(100% - 48px)); }
  .hero-stats { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .method-steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .proof-numbers { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .local-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1040px) {
  .menu-toggle { display: none; }
  .site-nav { display: flex; }
  .services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .method-grid { grid-template-columns: .9fr 1.1fr; gap: 60px; }
  .sobre-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .proof-grid { grid-template-columns: .85fr 1.15fr; gap: 56px; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; }
  .local-grid { grid-template-columns: 1.08fr .92fr; gap: 48px; }
  .final-cta-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 40px; }
  .service-page-grid { grid-template-columns: .95fr 1.05fr; gap: 56px; }
  .service-page-hero { padding: 106px 0 88px; }
  .footer-inner { grid-template-columns: 1.35fr .9fr .9fr 1.05fr .62fr; gap: 30px; }
  .footer-partner { justify-self: end; align-self: start; margin-top: 2px; }
  .footer-bottom { justify-content: space-between; text-align: left; }
  .section { padding: 100px 0; }
  .section-heading { margin-bottom: 56px; }
}

@media (max-width: 679px) {
  body { padding-bottom: 72px; }
  .container { width: calc(100% - 28px); max-width: 100%; }
  .hero { min-height: auto; }
  .hero-content { width: 100%; max-width: 100%; padding: 100px 0 48px; }
  .hero h1 { max-width: 100%; font-size: clamp(2rem, 10vw, 2.45rem); line-height: 1.08; letter-spacing: -.02em; text-wrap: wrap; overflow-wrap: normal; }
  .thanks-content h1 { max-width: 100%; font-size: clamp(2rem, 10vw, 2.55rem); line-height: 1.08; letter-spacing: -.02em; text-wrap: wrap; }
  .thanks-content { padding: 92px 0 54px; }
  .thanks-actions { display: grid; grid-template-columns: minmax(0, 1fr); }
  .thanks-actions .btn { width: 100%; }
  .service-page-hero { padding: 54px 0 48px; }
  .service-page-copy h1 { max-width: 100%; font-size: clamp(2rem, 9vw, 2.5rem); line-height: 1.08; letter-spacing: -.02em; }
  .service-page-copy p { max-width: 100%; font-size: .98rem; text-wrap: wrap; }
  .service-page-copy .hero-actions { display: grid; grid-template-columns: minmax(0, 1fr); }
  .service-page-copy .btn { width: 100%; }
  .service-page-media img { min-height: 230px; }
  .service-detail-card { padding: 22px; }
  .hero-lead { max-width: 100%; font-size: .98rem; line-height: 1.65; text-wrap: wrap; }
  .hero-kicker { width: 100%; }
  .hero-kicker span { max-width: 100%; font-size: .68rem; padding: 6px 11px; }
  .hero-actions { display: grid; grid-template-columns: minmax(0, 1fr); width: 100%; }
  .hero-actions .btn { width: 100%; }
  .btn { min-width: 0; }
  .local-cta { padding-inline: 14px; font-size: .82rem; }
  .whatsapp-float { right: 12px; bottom: 16px; width: 54px; min-height: 54px; justify-content: center; padding: 0; }
  .whatsapp-float span { display: none; }
  .hero-stats div { padding: 14px 10px; }
  .hero-stats { width: 100%; max-width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stats dt { font-size: clamp(1.35rem, 7vw, 1.8rem); white-space: nowrap; }
  .hero-proof { width: 100%; max-width: 100%; padding: 12px 14px; align-items: flex-start; }
  .hero-proof p { font-size: .82rem; }
  .cases-heading { gap: 12px; margin-bottom: 24px; font-size: .74rem; letter-spacing: .14em; }
  .cases-heading::before, .cases-heading::after { width: 34px; }
  .logo-carousel { border-radius: var(--radius-lg); padding: 18px 0; }
  .logo-track { gap: 14px; animation-duration: 26s; }
  .logo-item { width: 172px; height: 106px; padding: 14px 16px; }
  .logo-item img { max-height: 72px; }
  .sobre-imagem img { min-height: 280px; }
  .lista-especialidades { grid-template-columns: 1fr; }
  .btn { padding: 12px 20px; font-size: .88rem; }
}

@media (min-width: 1040px) and (max-width: 1130px) {
  .brand img { width: 158px; }
  .site-nav { gap: 13px; font-size: .78rem; }
  .nav-phone { display: none; }
  .nav-cta { padding-inline: 14px; font-size: .78rem; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 24px); }
  .hero h1 { font-size: clamp(1.85rem, 9.5vw, 2.2rem); }
  .hero-kicker span { font-size: .62rem; padding: 6px 10px; }
  .hero-proof { display: grid; gap: 6px; }
  .hero-proof .stars { font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero-bg { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
  .logo-track { animation: none; transform: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .btn-glow::before { display: none; }
}
