:root {
  --navy-950: #031b42;
  --navy-900: #06275e;
  --navy-800: #07377f;
  --blue-700: #0758dd;
  --blue-600: #0878f9;
  --cyan-400: #16c5f4;
  --green-600: #10a90c;
  --green-500: #3bd30e;
  --green-400: #6ce419;
  --ink: #11213b;
  --muted: #5d6b80;
  --line: #dce4ee;
  --soft: #e6eef5;
  --white: #fff;
  --shadow: 0 18px 45px rgba(3, 27, 66, .12);
  --shadow-soft: 0 10px 28px rgba(3, 27, 66, .09);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Manrope", Arial, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -100px; padding: 10px 16px; background: #fff; color: var(--navy-950); border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 1000; height: 82px; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(6,39,94,.08); backdrop-filter: blur(14px); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(3,27,66,.09); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 210px; height: 67px; object-fit: contain; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.main-nav a { position: relative; font-size: 13px; font-weight: 700; color: #30425b; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: linear-gradient(90deg,var(--blue-600),var(--green-500)); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--navy-900); transition: .25s ease; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 22px; border: 1px solid transparent; border-radius: 10px; font-size: 13px; font-weight: 800; text-align: center; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg,var(--blue-700),var(--blue-600) 52%,#02a5e7); box-shadow: 0 10px 24px rgba(7,88,221,.26); }
.btn-primary:hover { box-shadow: 0 15px 32px rgba(7,88,221,.34); }
.btn-whatsapp { min-height: 42px; padding: 9px 17px; color: #fff; background: linear-gradient(135deg,var(--green-600),var(--green-500)); box-shadow: 0 8px 20px rgba(16,169,12,.23); }
.btn-ghost { color: #fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-full { width: 100%; }

.hero { position: relative; min-height: 670px; display: flex; align-items: center; overflow: hidden; background: var(--navy-950); }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg { background-image: url("assets/hero.webp"); background-position: center; background-size: cover; transform: scale(1.02); }
.hero-overlay { background: linear-gradient(90deg, rgba(3,21,53,.98) 0%, rgba(3,26,65,.92) 42%, rgba(3,28,70,.52) 68%, rgba(3,28,70,.18) 100%); }
.hero::before { content: ""; position: absolute; z-index: 1; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.2) 1px,transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg,#000,transparent 74%); }
.hero-content { position: relative; z-index: 2; padding-block: 90px 110px; color: #fff; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--green-400); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow i { width: 24px; height: 2px; background: var(--green-400); box-shadow: 0 0 12px rgba(108,228,25,.8); }
.hero h1 { max-width: 760px; margin: 20px 0 20px; font-family: "Montserrat", sans-serif; font-size: clamp(42px,6vw,72px); line-height: 1.03; letter-spacing: -.045em; text-transform: uppercase; }
.hero h1 strong { display: block; color: transparent; background: linear-gradient(90deg,#44e50f,#86f13a); -webkit-background-clip: text; background-clip: text; }
.hero p { max-width: 640px; margin: 0; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 17px 24px; margin-top: 34px; color: rgba(255,255,255,.76); font-size: 12px; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof svg { color: var(--green-400); width: 15px; height: 15px; stroke-width: 3; }
.scroll-indicator { position: absolute; z-index: 3; bottom: 24px; left: 50%; width: 26px; height: 40px; border: 1px solid rgba(255,255,255,.55); border-radius: 20px; transform: translateX(-50%); }
.scroll-indicator span { position: absolute; left: 50%; top: 8px; width: 4px; height: 7px; border-radius: 4px; background: #fff; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,14px); } }

.section { padding: 100px 0; }
.section-soft { background: var(--soft); }
#diferenciais { background: #e3edf5; border-top: 1px solid #d5e2ec; border-bottom: 1px solid #d5e2ec; }
#como-funciona { background: #f7f9fc; }
#depoimentos { background: #e7eff6; border-top: 1px solid #d5e2ec; border-bottom: 1px solid #d5e2ec; }
.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading h2, .about-copy h2, .faq-intro h2, .quote-copy h2 { margin: 9px 0 14px; font-family: "Montserrat",sans-serif; color: var(--navy-950); font-size: clamp(30px,4vw,46px); line-height: 1.14; letter-spacing: -.035em; }
.section-heading p, .about-copy p, .faq-intro p, .quote-copy p { margin: 0; color: var(--muted); font-size: 15px; }
.benefit-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.benefit-card { position: relative; min-height: 275px; padding: 28px 23px; overflow: hidden; background: #fff; border: 1px solid #e6edf4; border-radius: 14px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.benefit-card::after { content: ""; position: absolute; right: -30px; bottom: -30px; width: 80px; height: 80px; border-radius: 50%; background: radial-gradient(circle,rgba(22,197,244,.16),transparent 68%); }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(7,88,221,.22); }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 20px; color: var(--blue-700); background: linear-gradient(135deg,#edf7ff,#ebffe3); border: 1px solid #d8ebff; border-radius: 12px; }
.icon-box svg { width: 25px; height: 25px; }
.benefit-card h3, .step h3, .service-card h3, .trust-card h3 { margin: 0 0 11px; color: var(--navy-950); font-size: 17px; line-height: 1.35; }
.benefit-card p, .step p, .service-card p, .trust-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.steps { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1020px; margin-inline: auto; }
.steps::before { content: ""; position: absolute; z-index: 0; top: 24px; left: 16%; right: 16%; height: 2px; background: linear-gradient(90deg,var(--blue-600),var(--green-500)); }
.step { position: relative; z-index: 1; padding: 73px 34px 34px; text-align: center; background: #fff; border: 1px solid #e3eaf2; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.step-number { position: absolute; top: 0; left: 50%; width: 50px; height: 50px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg,var(--blue-600),var(--green-500)); border: 6px solid #fff; border-radius: 50%; font-size: 12px; font-weight: 800; transform: translate(-50%,-1px); box-shadow: 0 8px 20px rgba(7,88,221,.22); }
.step-icon { width: 52px; height: 52px; display: grid; place-items: center; margin: 0 auto 18px; color: var(--blue-600); background: #eff7ff; border-radius: 14px; }
.step-icon svg { width: 26px; height: 26px; }

.section-navy { position: relative; overflow: hidden; background: linear-gradient(145deg,var(--navy-950),#052e70); }
.section-navy::before { content: ""; position: absolute; inset: 0; opacity: .09; background-image: radial-gradient(circle at 1px 1px,#fff 1px,transparent 0); background-size: 28px 28px; }
.section-navy .container { position: relative; z-index: 1; }
.heading-light h2 { color: #fff; }
.heading-light p { color: rgba(255,255,255,.68); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.service-card { position: relative; display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); box-shadow: 0 18px 42px rgba(0,0,0,.22); }
.service-featured { outline: 2px solid var(--green-500); outline-offset: -2px; }
.service-image { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #dae5f0; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 48%,rgba(3,27,66,.48)); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .service-image img { transform: scale(1.06); }
.service-tag { position: absolute; z-index: 1; top: 16px; left: 16px; padding: 6px 10px; color: #fff; background: rgba(3,27,66,.85); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; backdrop-filter: blur(7px); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-featured .service-tag { color: var(--navy-950); background: var(--green-400); border-color: var(--green-400); }
.service-body { position: relative; flex: 1; display: flex; flex-direction: column; padding: 27px 26px 24px; }
.service-icon { position: absolute; right: 22px; top: -28px; width: 52px; height: 52px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg,var(--blue-700),var(--cyan-400)); border: 4px solid #fff; border-radius: 14px; box-shadow: 0 8px 20px rgba(7,88,221,.22); }
.service-icon svg { width: 23px; height: 23px; }
.service-body h3 { font-size: 19px; }
.service-body p { min-height: 92px; font-size: 14px; }
.service-body a { display: inline-flex; gap: 8px; align-items: center; margin-top: auto; padding-top: 18px; color: var(--blue-700); font-size: 14px; font-weight: 800; }
.service-body a span { transition: transform .2s ease; }
.service-body a:hover span { transform: translateX(4px); }
.service-card.compact { min-height: 190px; display: flex; align-items: flex-start; gap: 18px; padding: 29px 27px; box-shadow: none; }
.compact-icon { flex: 0 0 48px; width: 48px; height: 48px; display: grid; place-items: center; color: var(--green-500); background: #ebffe3; border-radius: 13px; }
.compact-icon svg { width: 24px; height: 24px; }
.compact h3 { margin-top: 2px; font-size: 16px; }
.compact p { font-size: 14px; line-height: 1.65; }
.service-report { background: linear-gradient(145deg,#f3ffef,#fff); border-color: rgba(59,211,14,.65); }
.service-report .compact-icon { color: #fff; background: linear-gradient(135deg,var(--green-600),var(--green-400)); }

.trust-strip { padding: 58px 0; background: #dce8f1; border-bottom: 1px solid #cedce8; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 1000px; }
.trust-card { position: relative; min-height: 180px; padding: 29px; text-align: center; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.trust-card > div { width: 47px; height: 47px; display: grid; place-items: center; margin: 0 auto 13px; color: var(--blue-700); background: #eef7ff; border-radius: 50%; }
.trust-card > div svg { width: 23px; height: 23px; }
.trust-card h3 { font-size: 16px; }
.trust-highlight { color: #fff; background: linear-gradient(135deg,var(--blue-700),var(--green-600)); transform: translateY(-14px); box-shadow: 0 18px 38px rgba(7,88,221,.25); }
.trust-highlight > div { color: #fff; background: rgba(255,255,255,.17); }
.trust-highlight h3, .trust-highlight p { color: #fff; }

.about-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 74px; align-items: center; }
.about-visual { position: relative; min-height: 520px; }
.about-visual::before { content: ""; position: absolute; left: -24px; bottom: -24px; width: 65%; height: 64%; border: 3px solid var(--green-500); border-radius: 24px; }
.about-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.experience-badge { position: absolute; right: -30px; bottom: 46px; display: flex; align-items: center; gap: 12px; padding: 20px 24px; color: #fff; background: linear-gradient(135deg,var(--navy-950),var(--blue-700)); border: 5px solid #fff; border-radius: 18px; box-shadow: var(--shadow); }
.experience-badge strong { color: var(--green-400); font-family: "Montserrat",sans-serif; font-size: 48px; line-height: 1; }
.experience-badge span { font-size: 12px; font-weight: 800; line-height: 1.3; text-transform: uppercase; }
.about-copy p + p { margin-top: 14px; }
.check-list { margin: 24px 0 30px; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 10px; color: #30425b; font-size: 14px; font-weight: 700; }
.check-list svg { flex: 0 0 auto; width: 22px; height: 22px; padding: 3px; color: #fff; background: var(--green-500); border-radius: 50%; stroke-width: 3; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial { position: relative; overflow: hidden; padding: 30px; background: #fff; border: 1px solid #dce5ed; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.testimonial::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 5px; background: linear-gradient(90deg,#4285f4 0 25%,#ea4335 25% 50%,#fbbc05 50% 75%,#34a853 75%); }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.stars { margin: 0; color: #fbbc05; font-size: 18px; letter-spacing: .08em; }
.google-source { display: inline-flex; align-items: center; gap: 6px; color: #66768a; font-size: 11px; font-weight: 800; }
.google-g { display: grid; place-items: center; width: 25px; height: 25px; color: #fff; background: conic-gradient(from -35deg,#4285f4 0 25%,#34a853 25% 50%,#fbbc05 50% 72%,#ea4335 72%); border-radius: 50%; font-family: Arial,sans-serif; font-size: 15px; font-weight: 900; }
.testimonial > p { min-height: 118px; margin: 0; color: #4b5d73; font-size: 14px; line-height: 1.75; }
.client { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid #e7edf3; }
.client > span { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; border-radius: 50%; font-size: 12px; font-weight: 800; box-shadow: inset 0 0 0 3px rgba(255,255,255,.28); }
.client .avatar-blue { background: linear-gradient(135deg,#4285f4,#7148d8); }
.client .avatar-red { background: linear-gradient(135deg,#ea4335,#f59b3e); }
.client .avatar-green { background: linear-gradient(135deg,#34a853,#11a8b4); }
.client strong, .client small { display: block; }
.client strong { color: var(--navy-950); font-size: 14px; }
.client small { color: #8491a3; font-size: 11px; }

.faq-section { background: #e7edf3; border-bottom: 1px solid #d4dee8; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.text-link { display: inline-flex; margin-top: 22px; color: var(--blue-700); font-size: 13px; font-weight: 800; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 0 22px; background: #fff; border: 1px solid #dce5ee; border-radius: 13px; }
.faq-list summary { position: relative; padding: 20px 34px 20px 0; color: var(--navy-950); font-size: 15px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 16px; width: 28px; height: 28px; display: grid; place-items: center; color: var(--blue-700); background: #e8f3ff; border-radius: 50%; font-size: 20px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -2px 0 20px; color: var(--muted); font-size: 14px; }

.quote-section { background: linear-gradient(145deg,#06275e,#031b42); }
.quote-section .quote-copy h2 { color: #fff; }
.quote-section .quote-copy p { color: rgba(255,255,255,.74); }
.quote-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 76px; align-items: center; max-width: 1080px; }
.contact-mini { display: inline-flex; align-items: center; gap: 13px; margin-top: 26px; padding: 16px 19px; background: #eef7ff; border-radius: 12px; }
.contact-mini svg { width: 25px; height: 25px; color: var(--blue-700); }
.contact-mini small, .contact-mini strong { display: block; }
.contact-mini small { color: var(--muted); font-size: 12px; }
.contact-mini strong { color: var(--navy-950); font-size: 17px; }
.quote-form { padding: 34px; background: #fff; border: 1px solid #e3eaf1; border-radius: 20px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.quote-form label { display: block; margin-bottom: 16px; color: var(--navy-950); font-size: 13px; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; color: var(--ink); background: #f7f9fc; border: 1px solid #dfe6ee; border-radius: 9px; outline: none; font-size: 14px; font-weight: 500; transition: border-color .2s, box-shadow .2s; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(8,120,249,.11); }
.quote-form textarea { resize: vertical; }
.quote-form .consent { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-weight: 500; line-height: 1.5; }
.consent input { flex: 0 0 auto; width: 16px; height: 16px; margin: 2px 0 0; }
.consent button { display: inline; padding: 0; color: var(--blue-700); background: none; border: 0; font-size: inherit; font-weight: 800; }
.quote-form .btn svg { width: 18px; height: 18px; }
.form-note { margin: 10px 0 0; color: #77869a; text-align: center; font-size: 12px; }

.site-footer { color: rgba(255,255,255,.74); background: #010b1c; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr 1fr; gap: 80px; padding: 66px 0 48px; }
.footer-brand img { width: 250px; height: 88px; padding: 7px; object-fit: contain; background: #fff; border-radius: 10px; }
.footer-brand p { max-width: 390px; margin: 19px 0; font-size: 14px; }
.site-footer h3 { margin: 8px 0 18px; color: #fff; font-size: 15px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { font-size: 14px; transition: color .2s, transform .2s; }
.footer-links a:hover { color: var(--green-400); transform: translateX(3px); }
.socials { display: flex; gap: 8px; }
.socials a { width: 32px; height: 32px; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; font-size: 12px; font-weight: 800; }
.footer-contact { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; line-height: 1.55; }
.footer-contact svg { flex: 0 0 auto; width: 19px; height: 19px; color: var(--green-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); font-size: 12px; }
.footer-bottom > div { display: flex; align-items: center; gap: 9px; }
.footer-credit a { color: var(--green-400); font-weight: 800; }
.link-button { padding: 0; color: inherit; background: none; border: 0; text-decoration: underline; text-underline-offset: 3px; }

.floating-whatsapp { position: fixed; z-index: 990; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; min-height: 54px; padding: 0 18px; color: #fff; background: linear-gradient(135deg,#0baa27,#42d65e); border: 3px solid #fff; border-radius: 999px; box-shadow: 0 12px 30px rgba(11,170,39,.3); font-size: 12px; font-weight: 800; transition: transform .2s ease, bottom .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px); }
.floating-whatsapp svg { width: 23px; height: 23px; }

.cookie-banner { position: fixed; z-index: 1100; left: 24px; right: 24px; bottom: 24px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; max-width: 1110px; margin: auto; padding: 19px 22px; color: #fff; background: rgba(3,27,66,.97); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; box-shadow: 0 18px 55px rgba(0,0,0,.3); backdrop-filter: blur(12px); transform: translateY(calc(100% + 50px)); opacity: 0; pointer-events: none; transition: .35s ease; }
.cookie-banner.show { transform: none; opacity: 1; pointer-events: auto; }
.cookie-icon { width: 45px; height: 45px; display: grid; place-items: center; color: var(--green-400); background: rgba(108,228,25,.12); border-radius: 12px; }
.cookie-icon svg { width: 24px; height: 24px; }
.cookie-copy strong { display: block; font-size: 13px; }
.cookie-copy p { margin: 3px 0 0; color: rgba(255,255,255,.7); font-size: 10px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 9px; }
.btn-cookie-primary, .btn-cookie-secondary { min-height: 40px; padding: 9px 14px; font-size: 10px; }
.btn-cookie-primary { color: var(--navy-950); background: var(--green-400); }
.btn-cookie-secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.35); }

.modal { position: fixed; z-index: 1300; inset: 0; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: .25s ease; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1,15,38,.78); backdrop-filter: blur(6px); }
.modal-panel { position: relative; z-index: 1; width: min(780px,100%); max-height: min(86vh,850px); overflow-y: auto; padding: 38px 42px; background: #fff; border-radius: 20px; box-shadow: 0 30px 70px rgba(0,0,0,.35); transform: translateY(18px) scale(.98); transition: transform .25s ease; }
.modal.is-open .modal-panel { transform: none; }
.modal-panel h2 { margin: 7px 0 0; color: var(--navy-950); font-family: "Montserrat",sans-serif; font-size: 32px; }
.policy-updated { margin: 4px 0 22px; color: #8491a3; font-size: 11px; }
.policy-content h3 { margin: 20px 0 5px; color: var(--navy-900); font-size: 14px; }
.policy-content p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.policy-content a { color: var(--blue-700); font-weight: 700; }
.modal-close { position: absolute; right: 18px; top: 16px; width: 38px; height: 38px; color: var(--navy-950); background: #eef3f8; border: 0; border-radius: 50%; font-size: 24px; line-height: 1; }
.modal-done { margin-top: 28px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 11px; }
  .benefit-grid { grid-template-columns: repeat(3,1fr); }
  .benefit-card:nth-child(4), .benefit-card:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 900px) {
  .site-header { height: 74px; }
  .brand img { width: 190px; height: 62px; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: 74px; left: 0; right: 0; display: grid; gap: 0; padding: 12px 20px 20px; background: #fff; border-top: 1px solid #e7edf3; box-shadow: 0 18px 30px rgba(3,27,66,.12); transform: translateY(-10px); opacity: 0; pointer-events: none; transition: .25s ease; }
  .main-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 11px 0; font-size: 13px; border-bottom: 1px solid #edf1f5; }
  .main-nav a::after { display: none; }
  .header-cta { display: none; }
  .hero { min-height: 650px; }
  .hero-bg { background-position: 65% center; }
  .hero-overlay { background: linear-gradient(90deg,rgba(3,21,53,.97),rgba(3,26,65,.88) 65%,rgba(3,28,70,.48)); }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .steps { gap: 15px; }
  .step { padding-inline: 22px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { gap: 42px; }
  .about-visual { min-height: 450px; }
  .faq-grid, .quote-grid { gap: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px,var(--container)); }
  .section { padding: 76px 0; }
  .hero { min-height: 720px; align-items: flex-end; }
  .hero-bg { background-position: 72% center; opacity: .7; }
  .hero-overlay { background: linear-gradient(180deg,rgba(3,21,53,.42),rgba(3,21,53,.96) 58%,var(--navy-950)); }
  .hero-content { padding-block: 100px 82px; }
  .hero h1 { font-size: clamp(36px,10vw,52px); }
  .hero p { font-size: 14px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .scroll-indicator { display: none; }
  .benefit-grid, .steps, .services-grid, .trust-grid, .testimonials-grid, .about-grid, .faq-grid, .quote-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .steps { gap: 42px; }
  .steps::before { top: 0; bottom: 0; left: 24px; right: auto; width: 2px; height: auto; }
  .step { padding: 30px 26px 30px 76px; text-align: left; }
  .step-number { left: 24px; top: 50%; transform: translate(-50%,-50%); }
  .step-icon { margin: 0 0 14px; }
  .service-card:first-child { grid-column: auto; display: flex; }
  .service-card:first-child .service-image, .service-image { height: 210px; min-height: 0; aspect-ratio: auto; }
  .trust-highlight { transform: none; }
  .about-visual { min-height: 380px; margin: 0 14px 20px; }
  .experience-badge { right: -13px; bottom: 22px; }
  .about-copy { order: -1; }
  .testimonial > p { min-height: auto; }
  .faq-intro { position: static; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { width: 56px; height: 56px; right: 14px; bottom: 14px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; grid-template-columns: auto 1fr; padding: 16px; }
  .cookie-actions { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
  .modal-panel { padding: 32px 24px; }
}

@media (max-width: 440px) {
  .brand img { width: 168px; }
  .hero-proof { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 38px; }
  .about-visual { min-height: 315px; }
  .experience-badge { padding: 14px 16px; }
  .experience-badge strong { font-size: 37px; }
  .footer-brand img { width: 220px; }
  .cookie-icon { display: none; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { grid-column: auto; }
}
