@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./assets/montserrat-latin.woff2') format('woff2');
}

/* ===== 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,.97); border-bottom: 1px solid rgba(0,37,84,.08); 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: 0; }
.hero h1 { max-width: 800px; color: var(--white); font-size: 4rem; line-height: 1.02; letter-spacing: 0; 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: 1.15rem; 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-label { display: inline-flex; align-items: center; min-height: 28px; border: 1px solid rgba(240,179,35,.34); border-radius: 8px; background: rgba(240,179,35,.12); color: var(--yellow); padding: 5px 9px; font-size: .66rem; font-weight: 900; text-transform: uppercase; white-space: nowrap; }
.hero-proof .stars { flex: 0 0 auto; color: var(--yellow); font-size: 1.05rem; line-height: 1; letter-spacing: 0; white-space: nowrap; }
.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: 0; 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: 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: 0; 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: 2.65rem; line-height: 1.1; letter-spacing: 0; 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: 2.35rem; line-height: 1.1; letter-spacing: 0; 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); }

/* ===== WORKS CAROUSEL ===== */
.works-showcase { overflow: hidden; background: linear-gradient(180deg, var(--white), #f3f7fc); }
.works-header { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: end; margin-bottom: 38px; }
.works-header-centered { grid-template-columns: 1fr; text-align: center; }
.works-header-centered .works-intro { width: min(980px, 100%); max-width: none; margin-inline: auto; }
.works-header-centered .eyebrow { justify-content: center; }
.works-intro { max-width: 730px; }
.works-intro h2 { color: var(--blue); font-size: 2.8rem; line-height: 1.08; font-weight: 800; }
.works-intro > p:last-child { max-width: 680px; margin-top: 14px; color: var(--muted); font-weight: 600; line-height: 1.75; }
.works-summary { display: grid; grid-template-columns: auto minmax(0, 180px); gap: 12px; align-items: center; justify-self: start; border-left: 3px solid var(--yellow); padding-left: 18px; }
.works-summary strong { color: var(--blue); font-size: 2.35rem; font-weight: 900; line-height: 1; }
.works-summary span { color: var(--muted); font-size: .8rem; font-weight: 800; line-height: 1.35; }
.works-carousel { position: relative; }
.works-viewport { overflow: hidden; padding: 6px 2px 26px; }
.works-track { display: flex; gap: 18px; transform: translate3d(0,0,0); transition: transform .62s var(--ease); will-change: transform; }
.works-track.is-jumping { transition: none; }
.work-slide { flex: 0 0 100%; min-width: 0; }
.work-card { width: 100%; overflow: hidden; border: 1px solid rgba(0,37,84,.10); border-radius: 8px; background: var(--white); padding: 0; text-align: left; box-shadow: 0 14px 34px rgba(0,37,84,.09); cursor: zoom-in; transition: transform .32s var(--ease), border-color .32s ease, box-shadow .32s ease; }
.work-card:hover { transform: translateY(-5px); border-color: rgba(240,179,35,.55); box-shadow: 0 24px 48px rgba(0,37,84,.15); }
.work-image { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-soft); }
.work-image::after { content: ''; position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(180deg, transparent, rgba(0,20,46,.18)); pointer-events: none; }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.work-card:hover .work-image img { transform: scale(1.035); }
.work-caption { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; }
.work-caption strong { min-width: 0; color: var(--blue); font-size: .9rem; font-weight: 850; line-height: 1.35; }
.work-caption small { flex: 0 0 auto; color: var(--yellow-dark); font-size: .68rem; font-weight: 900; text-transform: uppercase; }
.works-controls { display: flex; align-items: center; justify-content: center; gap: 10px; }
.works-control { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(0,37,84,.14); border-radius: 8px; background: var(--white); color: var(--blue); font-size: 1.05rem; font-weight: 900; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.works-control:hover { transform: translateY(-2px); border-color: var(--yellow); background: #fffaf0; }
.works-pause { margin-left: 8px; }
.works-progress { min-width: 66px; color: var(--muted); text-align: center; font-size: .8rem; font-variant-numeric: tabular-nums; }
.works-progress strong { color: var(--blue); font-size: 1rem; }

.work-lightbox { width: min(1120px, calc(100% - 32px)); max-width: none; max-height: calc(100dvh - 32px); overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: var(--blue-deep); padding: 0; color: var(--white); box-shadow: 0 36px 90px rgba(0,20,46,.44); }
.work-lightbox::backdrop { background: rgba(0,14,34,.82); backdrop-filter: blur(8px); }
.work-lightbox-panel { position: relative; display: grid; grid-template-rows: minmax(0, 1fr) auto; min-height: min(760px, calc(100dvh - 34px)); }
.work-lightbox-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 8px; background: rgba(0,20,46,.78); color: var(--white); font-size: 1.5rem; cursor: pointer; }
.work-lightbox-image { min-height: 0; display: grid; place-items: center; background: #07111f; }
.work-lightbox-image img { width: 100%; height: 100%; max-height: calc(100dvh - 150px); object-fit: contain; }
.work-lightbox-footer { display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid rgba(255,255,255,.12); padding: 16px 20px; }
.work-lightbox-footer span { display: block; margin-bottom: 3px; color: var(--yellow); font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.work-lightbox-footer h3 { color: var(--white); font-size: 1rem; line-height: 1.25; }
.work-lightbox-controls { display: flex; gap: 8px; }
.work-lightbox-controls button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; background: rgba(255,255,255,.08); color: var(--white); font-weight: 900; cursor: pointer; }
body.lightbox-open { overflow: hidden; }

/* ===== TRUST / LOGO CAROUSEL ===== */
.trust { background: linear-gradient(180deg, var(--white), #f6f9fd); }
.trust-heading { margin-bottom: 34px; }
.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: 0; 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 54s linear infinite; will-change: transform; }
.logo-carousel:hover .logo-track { animation-play-state: paused; }
.logo-item { width: clamp(176px, 17vw, 224px); height: 124px; flex: 0 0 auto; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(0,37,84,.08); border-radius: 8px; 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: 0; }

/* ===== 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: 2.2rem; font-weight: 900; line-height: 1; letter-spacing: 0; }
.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: 2.4rem; font-weight: 900; line-height: 1; letter-spacing: 0; }
.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: 2rem; }
.proof-numbers-four .proof-number-feature dt { font-size: 2.4rem; }

/* ===== 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: 0; }
.city-panel strong { display: block; max-width: 380px; margin-bottom: 18px; color: var(--white); font-size: 1.5rem; font-weight: 900; line-height: 1.15; letter-spacing: 0; }
.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: 0; }
.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: 0; }
.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; }
.privacy-notice { color: var(--muted); font-size: .75rem; font-weight: 600; line-height: 1.5; }
.privacy-notice a { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.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: 0; }
.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: 0; }
.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: 0; 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: 0; }
.thanks-content h1 { color: var(--white); font-size: 4rem; line-height: 1.02; letter-spacing: 0; font-weight: 800; }
.thanks-content p { max-width: 620px; margin-top: 20px; color: rgba(255,255,255,.82); font-size: 1.15rem; 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; }

/* ===== LEGAL / 404 ===== */
.legal-page { background: var(--bg); }
.legal-main { padding: calc(var(--header-h) + 72px) 0 84px; }
.legal-layout { max-width: 900px; }
.legal-header { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-header h1 { max-width: 760px; color: var(--blue); font-size: 3.6rem; line-height: 1.05; font-weight: 850; }
.legal-header > p:not(.eyebrow) { max-width: 700px; margin-top: 16px; color: var(--muted); font-weight: 600; }
.legal-header > span { display: block; margin-top: 16px; color: var(--slate); font-size: .78rem; font-weight: 800; }
.legal-content { display: grid; gap: 34px; margin-top: 42px; }
.legal-content section { padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 10px; color: var(--blue); font-size: 1.15rem; line-height: 1.3; }
.legal-content p { color: var(--muted); font-weight: 600; line-height: 1.8; }
.legal-content a { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.legal-back { margin-top: 40px; }
.legal-footer { border-top: 1px solid rgba(255,255,255,.12); background: var(--blue-deep); color: rgba(255,255,255,.76); padding: 22px 0; font-size: .82rem; font-weight: 700; }

.error-page { min-height: 100svh; display: grid; place-items: center; background: linear-gradient(145deg, var(--blue-deep), var(--blue)); color: var(--white); padding: 28px; }
.error-main { width: min(680px, 100%); text-align: center; }
.error-main > img { width: 220px; margin: 0 auto 36px; filter: drop-shadow(0 10px 24px rgba(0,0,0,.24)); }
.error-code { margin-bottom: 10px; color: var(--yellow); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.error-main h1 { color: var(--white); font-size: 3.6rem; line-height: 1.06; font-weight: 850; }
.error-main > p:not(.error-code) { max-width: 580px; margin: 20px auto 0; color: rgba(255,255,255,.78); font-weight: 600; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.error-secondary { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); color: var(--white); }

/* ===== 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: 3.5rem; line-height: 1.05; letter-spacing: 0; font-weight: 900; }
.service-page-copy p { max-width: 640px; margin-top: 18px; color: rgba(255,255,255,.78); font-size: 1.1rem; 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: 0; }
.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; }
.service-process-section { background: var(--white); }
.service-process-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 0; list-style: none; counter-reset: service-step; }
.service-process-grid li { position: relative; border-top: 3px solid var(--yellow); background: linear-gradient(180deg, #f8fbff, var(--white)); padding: 24px; box-shadow: 0 12px 28px rgba(0,37,84,.07); }
.service-process-grid li > span { display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 18px; border-radius: 8px; background: var(--blue); color: var(--yellow); font-size: .82rem; font-weight: 900; }
.service-process-grid h3 { color: var(--blue); font-size: 1rem; line-height: 1.3; }
.service-process-grid p { margin-top: 8px; color: var(--muted); font-size: .86rem; font-weight: 600; line-height: 1.65; }
.service-related { background: linear-gradient(145deg, var(--blue-deep), var(--blue)); color: var(--white); }
.service-related-layout { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
.service-related-copy .eyebrow { color: var(--yellow); }
.service-related-copy h2 { max-width: 620px; color: var(--white); font-size: 2.6rem; line-height: 1.1; font-weight: 800; }
.service-related-copy > p:last-child { max-width: 620px; margin-top: 14px; color: rgba(255,255,255,.76); font-weight: 600; line-height: 1.75; }
.service-related-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.service-related-link { display: grid; gap: 5px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.075); padding: 18px 20px; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-related-link:hover { transform: translateY(-3px); border-color: rgba(240,179,35,.62); background: rgba(255,255,255,.11); }
.service-related-link span { color: var(--yellow); font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.service-related-link strong { color: var(--white); font-size: 1rem; }
.service-related-link small { color: rgba(255,255,255,.68); font-size: .74rem; font-weight: 800; }
.service-faq { background: var(--bg); }
.service-contact { background: linear-gradient(180deg, var(--white), #f3f7fc); }
.service-whatsapp { margin-top: 24px; border-color: rgba(0,37,84,.20); background: var(--white); color: var(--blue); box-shadow: var(--shadow-sm); }

/* ===== 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)); }
  .works-header { grid-template-columns: minmax(0, 1fr) auto; }
  .works-summary { justify-self: end; }
  .work-slide { flex-basis: calc((100% - 18px) / 2); }
  .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)); }
  .service-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-related-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; }
  .hero-content { padding: 54px 0 44px; }
  .hero h1 { font-size: 3.45rem; }
  .hero-lead { margin-top: 16px; }
  .hero-proof { margin-top: 18px; }
  .hero-actions { margin-top: 24px; }
  .services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .work-slide { flex-basis: calc((100% - 36px) / 3); }
  .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; }
  .service-process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .service-related-layout { grid-template-columns: .85fr 1.15fr; gap: 54px; }
  .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: 30px 0 30px; }
  .hero h1 { max-width: 100%; font-size: 2.05rem; line-height: 1.08; letter-spacing: 0; text-wrap: wrap; overflow-wrap: normal; }
  .thanks-content h1 { max-width: 100%; font-size: 2.35rem; line-height: 1.08; letter-spacing: 0; 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: 2.25rem; line-height: 1.08; letter-spacing: 0; }
  .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%; margin-top: 14px; font-size: .94rem; line-height: 1.5; text-wrap: wrap; }
  .section-heading h2, .method-copy h2, .proof-copy h2, .contact-copy h2, .sobre-texto h2 { font-size: 2rem; }
  .local-copy h2, .final-cta h2 { font-size: 1.9rem; }
  .works-intro h2 { font-size: 2.1rem; }
  .service-related-copy h2 { font-size: 2rem; }
  .legal-header h1, .error-main h1 { font-size: 2.25rem; }
  .hero-kicker { width: 100%; margin-bottom: 14px; }
  .hero-kicker span { max-width: 100%; font-size: .68rem; padding: 6px 11px; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; width: 100%; margin-top: 18px; }
  .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: 10px 8px; }
  .hero-stats { width: 100%; max-width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 20px; }
  .hero-stats dt { font-size: 1.35rem; white-space: nowrap; }
  .hero-stats dd { margin-top: 4px; font-size: .68rem; }
  .hero-proof { width: 100%; max-width: 100%; margin-top: 16px; padding: 10px 12px; align-items: flex-start; }
  .hero-proof p { font-size: .78rem; line-height: 1.45; }
  .works-header { margin-bottom: 28px; }
  .works-summary { grid-template-columns: auto minmax(0, 1fr); }
  .work-caption { min-height: 66px; padding: 14px 72px 14px 16px; }
  .work-lightbox { width: calc(100% - 20px); max-height: calc(100dvh - 20px); }
  .work-lightbox-panel { min-height: calc(100dvh - 22px); }
  .work-lightbox-image img { max-height: calc(100dvh - 128px); }
  .work-lightbox-footer { padding: 13px 14px; }
  .cases-heading { gap: 12px; margin-bottom: 24px; font-size: .74rem; letter-spacing: 0; }
  .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: 1.95rem; }
  .hero-kicker span { font-size: .62rem; padding: 6px 10px; }
  .hero-proof { display: grid; gap: 6px; }
  .hero-proof-label { width: fit-content; }
  .hero-actions .btn { padding-inline: 10px; font-size: .78rem; }
}

@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%; }
  .works-track { transition: none; }
  .btn-glow::before { display: none; }
}

/* ===== COMMERCIAL LANDING PAGE ===== */
.commercial-page-body { background: var(--white); }
.commercial-page-body h1,
.commercial-page-body h2,
.commercial-page-body h3 { text-wrap: balance; }
.commercial-hero { position: relative; min-height: 660px; display: grid; align-items: center; overflow: hidden; isolation: isolate; padding-top: var(--header-h); background: var(--blue-deep); }
.commercial-hero-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.commercial-hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(0,20,46,.99) 0%, rgba(0,37,84,.94) 43%, rgba(0,37,84,.46) 76%, rgba(0,20,46,.24) 100%), linear-gradient(180deg, rgba(0,20,46,.15), rgba(0,20,46,.28)); }
.commercial-hero-inner { padding-block: 54px 48px; }
.commercial-hero-copy { max-width: 720px; }
.commercial-breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 17px; color: rgba(255,255,255,.66); font-size: .73rem; font-weight: 700; }
.commercial-breadcrumb a { color: var(--yellow); }
.commercial-breadcrumb a:hover { text-decoration: underline; }
.commercial-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 13px; color: var(--yellow); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.commercial-kicker::before { content: ''; width: 36px; height: 3px; border-radius: 3px; background: var(--yellow); }
.commercial-hero h1 { max-width: 720px; color: var(--white); font-size: clamp(2.55rem, 3.55vw, 3.55rem); line-height: 1.055; letter-spacing: -.03em; font-weight: 820; text-shadow: 0 14px 38px rgba(0,20,46,.28); }
.commercial-lead { max-width: 680px; margin-top: 16px; color: rgba(255,255,255,.83); font-size: 1rem; line-height: 1.62; font-weight: 550; }
.commercial-hero-actions { margin-top: 21px; }
.commercial-hero-note { max-width: 640px; margin-top: 11px; color: rgba(255,255,255,.64); font-size: .73rem; font-weight: 650; }

.commercial-proof-strip { position: relative; z-index: 3; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 18px 42px rgba(0,37,84,.07); }
.commercial-proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.commercial-proof-grid > div { min-height: 112px; display: grid; grid-template-columns: 32px minmax(0, 1fr); align-content: center; column-gap: 12px; padding: 22px 30px; border-right: 1px solid var(--line); }
.commercial-proof-grid > div:last-child { border-right: 0; }
.commercial-proof-grid span { grid-row: 1 / 3; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: var(--yellow); color: var(--blue); font-size: .8rem; font-weight: 950; }
.commercial-proof-grid strong { color: var(--blue); font-size: .93rem; line-height: 1.25; }
.commercial-proof-grid small { margin-top: 4px; color: var(--muted); font-size: .7rem; font-weight: 650; line-height: 1.3; }

.commercial-answer { padding: 72px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.commercial-answer-grid { display: grid; grid-template-columns: 1.22fr .78fr; align-items: center; gap: 72px; }
.commercial-answer-copy { max-width: 710px; }
.commercial-answer-copy h2 { color: var(--blue); font-size: clamp(1.65rem, 2.7vw, 2.45rem); line-height: 1.16; letter-spacing: -.02em; }
.commercial-answer-copy > p:last-child { margin-top: 18px; color: var(--muted); font-size: .93rem; font-weight: 550; line-height: 1.78; }
.commercial-answer-copy > p:last-child strong { color: var(--blue); font-weight: 780; }
.commercial-local-card { position: relative; overflow: hidden; border: 1px solid rgba(0,37,84,.1); border-left: 4px solid var(--yellow); background: #f7faff; padding: 26px 28px; box-shadow: var(--shadow-sm); }
.commercial-local-card > span { color: var(--yellow-dark); font-size: .66rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.commercial-local-card > strong { display: block; margin-top: 7px; color: var(--blue); font-size: 1.02rem; }
.commercial-local-card p { margin-top: 9px; color: var(--muted); font-size: .78rem; font-weight: 550; line-height: 1.65; }
.commercial-local-card a { display: inline-flex; margin-top: 15px; color: var(--blue); font-size: .74rem; font-weight: 850; }
.commercial-local-card a:hover { color: var(--yellow-dark); }

.commercial-heading { max-width: 720px; }
.commercial-heading h2 { color: var(--blue); font-size: clamp(1.95rem, 3vw, 2.75rem); line-height: 1.12; letter-spacing: -.02em; font-weight: 820; }
.commercial-heading > p:last-child { margin-top: 18px; color: var(--muted); line-height: 1.75; font-weight: 550; }
.commercial-heading-light h2 { color: var(--white); }
.commercial-heading-light > p:last-child { color: rgba(255,255,255,.7); }

.commercial-risk { background: linear-gradient(180deg, #fff, #f8fbff); }
.commercial-split { display: grid; grid-template-columns: .86fr 1.14fr; align-items: start; gap: 84px; }
.commercial-risk-list { display: grid; gap: 14px; }
.commercial-risk-card { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 20px; border: 1px solid rgba(0,37,84,.09); border-radius: 16px; background: var(--white); padding: 25px; box-shadow: var(--shadow-sm); }
.commercial-risk-card > span { color: var(--yellow-dark); font-size: .77rem; font-weight: 900; letter-spacing: .08em; }
.commercial-risk-card h3 { color: var(--blue); font-size: 1.08rem; line-height: 1.35; }
.commercial-risk-card p { margin-top: 7px; color: var(--muted); font-size: .88rem; line-height: 1.65; font-weight: 550; }

.commercial-solution { overflow: hidden; background: var(--blue-deep); color: var(--white); }
.commercial-control-rail { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin-top: 58px; padding: 0; list-style: none; }
.commercial-control-rail::before { content: ''; position: absolute; top: 24px; left: 7%; right: 7%; height: 3px; background: linear-gradient(90deg, var(--yellow-dark), var(--yellow), var(--yellow-dark)); box-shadow: 0 0 24px rgba(240,179,35,.38); }
.commercial-control-rail li { position: relative; padding: 0 24px 10px 0; }
.commercial-control-rail li > span { position: relative; z-index: 1; display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 22px; border: 4px solid var(--blue-deep); border-radius: 50%; background: var(--yellow); color: var(--blue); font-size: .72rem; font-weight: 950; box-shadow: 0 0 0 1px rgba(240,179,35,.28); }
.commercial-control-rail strong { display: block; color: var(--white); font-size: 1.05rem; }
.commercial-control-rail p { max-width: 230px; margin-top: 9px; color: rgba(255,255,255,.65); font-size: .82rem; font-weight: 550; line-height: 1.65; }

.commercial-benefits { background: #f5f8fc; }
.commercial-benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
.commercial-benefit-card { min-height: 225px; border-top: 3px solid var(--yellow); background: var(--white); padding: 28px; box-shadow: 0 16px 36px rgba(0,37,84,.075); }
.commercial-benefit-card > span { color: var(--yellow-dark); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.commercial-benefit-card h3 { max-width: 480px; margin-top: 14px; color: var(--blue); font-size: 1.28rem; line-height: 1.35; }
.commercial-benefit-card p { max-width: 520px; margin-top: 13px; color: var(--muted); font-size: .9rem; font-weight: 550; line-height: 1.7; }

.commercial-portfolio { background: var(--blue); color: var(--white); }
.commercial-portfolio-head { display: grid; grid-template-columns: 1.1fr .7fr; align-items: end; gap: 64px; margin-bottom: 48px; }
.commercial-portfolio-head > p { color: rgba(255,255,255,.7); font-size: .88rem; font-weight: 550; line-height: 1.75; }
.commercial-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 240px; gap: 16px; }
.commercial-case { position: relative; grid-column: span 4; overflow: hidden; border-radius: 14px; background: var(--blue-deep); }
.commercial-case-featured { grid-column: span 7; grid-row: span 2; }
.commercial-case-wide { grid-column: span 5; }
.commercial-case img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .55s ease; }
.commercial-case:hover img { transform: scale(1.035); filter: saturate(1.05); }
.commercial-case figcaption { position: absolute; inset: auto 0 0; display: grid; gap: 2px; padding: 46px 20px 18px; background: linear-gradient(transparent, rgba(0,20,46,.9)); }
.commercial-case figcaption strong { color: var(--white); font-size: .93rem; }
.commercial-case figcaption span { color: rgba(255,255,255,.68); font-size: .68rem; font-weight: 650; }
.commercial-center-action { display: flex; justify-content: center; margin-top: 38px; }

.commercial-fit { background: var(--white); }
.commercial-fit-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.commercial-checklist { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.commercial-checklist li { position: relative; border-bottom: 1px solid var(--line); padding: 20px 20px 20px 46px; color: var(--blue); font-size: .93rem; font-weight: 720; line-height: 1.5; }
.commercial-checklist li::before { content: '✓'; position: absolute; left: 8px; top: 18px; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; background: var(--yellow-soft); color: var(--yellow-dark); font-size: .72rem; font-weight: 950; }

.commercial-process { background: #f5f8fc; }
.commercial-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; margin-top: 50px; padding: 0; list-style: none; }
.commercial-process-grid li { position: relative; min-height: 250px; overflow: hidden; border: 1px solid rgba(0,37,84,.08); background: var(--white); padding: 27px 24px; box-shadow: var(--shadow-sm); }
.commercial-process-grid li::after { content: ''; position: absolute; right: -24px; bottom: -34px; width: 100px; height: 100px; border: 18px solid rgba(240,179,35,.08); border-radius: 50%; }
.commercial-process-grid span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 25px; border-radius: 9px; background: var(--blue); color: var(--yellow); font-size: .8rem; font-weight: 950; }
.commercial-process-grid h3 { color: var(--blue); font-size: 1rem; line-height: 1.4; }
.commercial-process-grid p { margin-top: 10px; color: var(--muted); font-size: .82rem; font-weight: 550; line-height: 1.65; }

.commercial-related { background: linear-gradient(135deg, var(--blue-deep), var(--blue)); }
.commercial-related-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 72px; align-items: center; }
.commercial-related-links { display: grid; gap: 11px; }
.commercial-related-links a { display: grid; grid-template-columns: 1fr auto; gap: 3px 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(255,255,255,.065); padding: 19px 21px; transition: transform .25s var(--ease), border-color .25s ease, background .25s ease; }
.commercial-related-links a:hover { transform: translateX(5px); border-color: rgba(240,179,35,.56); background: rgba(255,255,255,.1); }
.commercial-related-links span { color: var(--yellow); font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.commercial-related-links strong { grid-column: 1; color: var(--white); font-size: .98rem; }
.commercial-related-links small { grid-column: 2; grid-row: 1 / 3; align-self: center; color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 700; }

.commercial-faq { background: var(--white); }
.commercial-faq .section-heading { max-width: 790px; }
.commercial-contact { background: linear-gradient(180deg, #f5f8fc, #fff); }
.commercial-contact-points { display: grid; gap: 10px; margin-top: 24px; color: var(--blue); font-size: .82rem; font-weight: 750; }
.commercial-contact-points span { display: flex; gap: 8px; }
.commercial-contact .lead-form { border-radius: 18px; }
.commercial-whatsapp { width: 58px; min-height: 58px; justify-content: center; padding: 0; border: 3px solid rgba(255,255,255,.94); box-shadow: 0 10px 28px rgba(18,140,126,.34); }
.commercial-whatsapp svg { width: 27px; height: 27px; }
.commercial-whatsapp span { position: absolute; right: calc(100% + 10px); width: max-content; border-radius: 9px; background: var(--blue-deep); padding: 7px 10px; color: var(--white); font-size: .7rem; opacity: 0; pointer-events: none; transform: translateX(6px); transition: opacity .2s ease, transform .2s ease; box-shadow: var(--shadow-sm); }
.commercial-whatsapp:hover span,
.commercial-whatsapp:focus-visible span { display: block; opacity: 1; transform: none; }

@media (min-width: 1040px) {
  .commercial-page-body .site-nav { gap: 24px; }
  .commercial-page-body .section { padding-block: 88px; }
}

@media (max-width: 1039px) {
  .commercial-hero { min-height: 650px; }
  .commercial-hero-inner { padding-block: 52px 46px; }
  .commercial-split,
  .commercial-answer-grid,
  .commercial-fit-grid,
  .commercial-related-grid { grid-template-columns: 1fr; gap: 48px; }
  .commercial-control-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 12px; }
  .commercial-control-rail::before { display: none; }
  .commercial-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .commercial-portfolio-head { grid-template-columns: 1fr; gap: 22px; }
  .commercial-gallery { grid-auto-rows: 220px; }
  .commercial-case { grid-column: span 6; }
  .commercial-case-featured { grid-column: span 6; }
  .commercial-case-wide { grid-column: span 6; }
}

@media (max-width: 679px) {
  .commercial-page-body { padding-bottom: 72px; }
  .commercial-hero { min-height: auto; }
  .commercial-hero-image { object-position: 64% center; }
  .commercial-hero-overlay { background: linear-gradient(90deg, rgba(0,20,46,.985), rgba(0,37,84,.9)), linear-gradient(180deg, transparent, rgba(0,20,46,.3)); }
  .commercial-hero-inner { padding-block: 42px 38px; }
  .commercial-breadcrumb { margin-bottom: 20px; font-size: .7rem; }
  .commercial-kicker { font-size: .65rem; }
  .commercial-kicker::before { width: 24px; }
  .commercial-hero h1 { font-size: 2.05rem; line-height: 1.08; letter-spacing: -.02em; }
  .commercial-lead { margin-top: 15px; font-size: .9rem; line-height: 1.58; }
  .commercial-hero-actions { grid-template-columns: 1fr; gap: 9px; }
  .commercial-hero-actions .btn { width: 100%; }
  .commercial-hero-note { font-size: .71rem; line-height: 1.5; }
  .commercial-proof-grid { grid-template-columns: 1fr; padding-block: 4px; }
  .commercial-proof-grid > div { min-height: 84px; padding: 15px 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .commercial-proof-grid > div:last-child { border-bottom: 0; }
  .commercial-answer { padding: 54px 0; }
  .commercial-answer-grid { gap: 26px; }
  .commercial-answer-copy h2 { font-size: 1.78rem; }
  .commercial-local-card { padding: 22px 20px; }
  .commercial-heading h2 { font-size: 2rem; }
  .commercial-split,
  .commercial-fit-grid,
  .commercial-related-grid { gap: 36px; }
  .commercial-risk-card { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; padding: 21px 18px; }
  .commercial-control-rail { grid-template-columns: 1fr; margin-top: 38px; gap: 12px; }
  .commercial-control-rail li { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 3px 15px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .commercial-control-rail li > span { grid-row: 1 / 3; width: 44px; height: 44px; margin: 0; border-width: 3px; }
  .commercial-control-rail p { max-width: none; margin-top: 2px; }
  .commercial-benefit-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .commercial-benefit-card { min-height: 0; padding: 26px 22px; }
  .commercial-benefit-card h3 { font-size: 1.14rem; }
  .commercial-gallery { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .commercial-case,
  .commercial-case-featured,
  .commercial-case-wide { grid-column: 1; grid-row: span 1; }
  .commercial-case-featured { min-height: 390px; }
  .commercial-case-featured img { object-position: center 34%; }
  .commercial-checklist li { padding-right: 4px; }
  .commercial-process-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .commercial-process-grid li { min-height: 0; }
  .commercial-related-links a { grid-template-columns: 1fr; }
  .commercial-related-links small { grid-column: 1; grid-row: auto; margin-top: 5px; }
  .commercial-contact .lead-form { padding: 24px 18px; }
  .commercial-whatsapp { width: 54px; min-height: 54px; }
}

@media (max-width: 390px) {
  .commercial-hero h1 { font-size: 2.04rem; }
  .commercial-hero-actions .btn { padding-inline: 14px; font-size: .82rem; }
}

/* ===== COMMERCIAL: PHOTO-LED CRO PROOF ===== */
.commercial-proof-preview { overflow: hidden; padding: 76px 0; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #f7faff 0%, #fff 58%); }
.commercial-proof-preview-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(42px, 6vw, 86px); }
.commercial-proof-preview-copy { max-width: 440px; }
.commercial-proof-preview-copy h2 { color: var(--blue); font-size: clamp(1.9rem, 3vw, 2.75rem); line-height: 1.08; letter-spacing: -.025em; }
.commercial-proof-preview-copy > p:not(.eyebrow) { margin-top: 18px; color: var(--muted); font-size: .91rem; font-weight: 560; line-height: 1.75; }
.commercial-proof-preview-copy > a { display: inline-flex; align-items: center; gap: 10px; margin-top: 25px; border-bottom: 2px solid var(--yellow); padding-bottom: 5px; color: var(--blue); font-size: .78rem; font-weight: 900; }
.commercial-proof-preview-copy > a span { color: var(--yellow-dark); font-size: 1rem; transition: transform .2s var(--ease); }
.commercial-proof-preview-copy > a:hover span { transform: translateY(3px); }
.commercial-proof-preview-photos { display: grid; grid-template-columns: 1.25fr .75fr .9fr; grid-template-rows: 178px 178px; gap: 12px; min-width: 0; }
.preview-photo { position: relative; overflow: hidden; min-width: 0; border-radius: 12px; background: var(--blue-deep); box-shadow: 0 18px 40px rgba(0,37,84,.12); }
.preview-photo-main { grid-row: 1 / 3; }
.preview-photo:nth-child(2) { grid-column: 2 / 4; }
.preview-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.preview-photo-main img { object-position: center 46%; }
.preview-photo:nth-child(2) img { object-position: center 42%; }
.preview-photo:hover img { transform: scale(1.035); }
.preview-photo figcaption { position: absolute; inset: auto 10px 10px; width: fit-content; border: 1px solid rgba(255,255,255,.24); border-radius: 8px; background: rgba(0,20,46,.82); padding: 6px 9px; color: #fff; font-size: .62rem; font-weight: 850; backdrop-filter: blur(8px); }

.commercial-case-stories { display: grid; gap: 24px; }
.commercial-case-story { display: grid; grid-template-columns: minmax(210px, .32fr) minmax(0, 1fr); gap: 26px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.065); padding: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 22px 46px rgba(0,20,46,.18); }
.commercial-case-story > header { display: flex; flex-direction: column; justify-content: flex-end; min-height: 260px; border-radius: 12px; background: linear-gradient(145deg, rgba(0,20,46,.82), rgba(9,61,116,.74)); padding: 25px; }
.commercial-case-story > header > span { color: var(--yellow); font-size: .64rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.commercial-case-story > header h3 { margin-top: 8px; color: var(--white); font-size: 1.55rem; line-height: 1.15; }
.commercial-case-story > header p { margin-top: 12px; color: rgba(255,255,255,.67); font-size: .76rem; font-weight: 560; line-height: 1.62; }
.commercial-stage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; min-width: 0; }
.commercial-stage-grid figure { position: relative; min-width: 0; min-height: 260px; overflow: hidden; border-radius: 12px; background: var(--blue-deep); }
.commercial-stage-grid figure::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; pointer-events: none; }
.commercial-stage-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .55s var(--ease), filter .4s ease; }
.commercial-stage-grid figure:hover img { transform: scale(1.035); filter: saturate(1.05); }
.commercial-stage-grid .stage-delivered { box-shadow: 0 0 0 2px var(--yellow); }
.commercial-stage-grid figcaption { position: absolute; inset: auto 0 0; display: grid; gap: 2px; padding: 50px 14px 13px; background: linear-gradient(transparent, rgba(0,20,46,.94)); }
.commercial-stage-grid figcaption span { color: var(--yellow); font-size: .59rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.commercial-stage-grid figcaption strong { color: var(--white); font-size: .72rem; line-height: 1.3; }

.commercial-delivered-head { max-width: 660px; margin: 82px 0 30px; }
.commercial-delivered-head h3 { color: var(--white); font-size: clamp(1.6rem, 2.5vw, 2.25rem); line-height: 1.15; }
.commercial-delivered-head > p:last-child { margin-top: 10px; color: rgba(255,255,255,.66); font-size: .85rem; font-weight: 550; }
.commercial-delivered-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 145px; grid-auto-flow: dense; gap: 12px; }
.commercial-delivered-gallery figure { position: relative; grid-column: span 3; grid-row: span 2; overflow: hidden; border-radius: 12px; background: var(--blue-deep); }
.commercial-delivered-gallery .delivered-wide { grid-column: span 6; }
.commercial-delivered-gallery .delivered-tall { grid-row: span 3; }
.commercial-delivered-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .55s ease; }
.commercial-delivered-gallery figure:hover img { transform: scale(1.04); filter: saturate(1.08); }
.commercial-delivered-gallery figcaption { position: absolute; inset: auto 0 0; display: grid; gap: 2px; padding: 50px 15px 14px; background: linear-gradient(transparent, rgba(0,20,46,.94)); }
.commercial-delivered-gallery figcaption strong { color: var(--white); font-size: .82rem; }
.commercial-delivered-gallery figcaption span { color: rgba(255,255,255,.67); font-size: .61rem; font-weight: 650; }
.commercial-portfolio-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 42px; border: 1px solid rgba(240,179,35,.34); border-radius: 16px; background: linear-gradient(120deg, rgba(240,179,35,.13), rgba(255,255,255,.05)); padding: 24px 26px; }
.commercial-portfolio-cta > div { display: grid; gap: 3px; }
.commercial-portfolio-cta span { color: var(--yellow); font-size: .64rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.commercial-portfolio-cta strong { max-width: 570px; color: var(--white); font-size: 1.03rem; line-height: 1.4; }
.commercial-portfolio-cta .btn { flex: 0 0 auto; }

@media (max-width: 1039px) {
  .commercial-proof-preview-grid { grid-template-columns: 1fr; }
  .commercial-proof-preview-copy { max-width: 680px; }
  .commercial-case-story { grid-template-columns: 1fr; }
  .commercial-case-story > header { min-height: 0; }
  .commercial-delivered-gallery figure { grid-column: span 4; }
  .commercial-delivered-gallery .delivered-wide { grid-column: span 8; }
}

@media (max-width: 679px) {
  .commercial-proof-preview { padding: 54px 0; }
  .commercial-proof-preview-grid { gap: 30px; }
  .commercial-proof-preview-photos { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 220px 150px; gap: 8px; }
  .preview-photo-main { grid-row: 1; }
  .preview-photo:nth-child(2) { grid-column: 2; }
  .preview-photo:nth-child(3), .preview-photo:nth-child(4) { grid-column: auto; }
  .commercial-case-story { gap: 12px; padding: 12px; }
  .commercial-case-story > header { padding: 20px; }
  .commercial-stage-grid { grid-template-columns: repeat(3, minmax(180px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 2px 12px; scrollbar-color: var(--yellow) rgba(255,255,255,.12); }
  .commercial-stage-grid figure { min-height: 285px; scroll-snap-align: start; }
  .commercial-delivered-head { margin-top: 62px; }
  .commercial-delivered-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; gap: 8px; }
  .commercial-delivered-gallery figure,
  .commercial-delivered-gallery .delivered-wide { grid-column: span 1; grid-row: span 2; }
  .commercial-delivered-gallery .delivered-tall { grid-row: span 3; }
  .commercial-delivered-gallery figure:nth-child(5n + 2) { grid-column: span 2; }
  .commercial-portfolio-cta { align-items: stretch; flex-direction: column; padding: 22px 18px; }
  .commercial-portfolio-cta .btn { width: 100%; }
}
