:root {
    --primary: #00b8c4;
    --primary-dark: #00939d;
    --primary-soft: #e7f9fa;
    --navy: #0a2630;
    --navy-2: #123843;
    --ink: #162e36;
    --muted: #62757b;
    --bg: #f4f8f8;
    --line: #dfe8ea;
    --white: #fff;
    --radius: 22px;
    --shadow: 0 20px 60px rgba(9, 38, 48, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
    height: 84px;
    background: #fff;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(13, 46, 56, .08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.3px;
}
.brand strong { font-weight: 800; }
.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff !important;
    font-weight: 800;
    font-size: 21px;
    line-height: 1;
    transform: rotate(-5deg);
    flex-shrink: 0;
}
.brand-light, .brand-light span { color: #fff; }
.brand-light .brand-mark { color: #fff !important; }

.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav > a,
.nav-dropdown-toggle {
    color: #34505a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .2s;
}
.main-nav > a:not(.btn):hover,
.nav-dropdown-toggle:hover { color: var(--primary-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    border: 0;
    background: transparent;
    padding: 14px 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}
.nav-dropdown-toggle i { font-size: 10px; transition: transform .2s; }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -18px;
    width: 205px;
    padding: 9px;
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(13,46,56,.07);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown.open .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 11px;
    border-radius: 10px;
    color: #46616a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.nav-dropdown-menu a i { color: var(--primary-dark); width: 18px; text-align: center; }
.nav-dropdown-menu a:hover { background: var(--primary-soft); color: var(--navy); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 13px;
    background: var(--primary);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0,184,196,.22);
    transition: .2s;
}
.btn:hover { transform: translateY(-2px); background: var(--primary-dark); }
.btn-small { min-height: 44px; padding: 0 20px; }
.btn-ghost { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.35); box-shadow: none; }
.btn-ghost:hover { background: #fff; color: var(--navy) !important; }
.btn-white { background: #fff; color: var(--navy) !important; box-shadow: none; }
.btn-white:hover { background: #edf9fa; }
.btn-dark { background: var(--navy); box-shadow: none; }
.btn-dark:hover { background: #123b48; }
.btn-full { width: 100%; }
.nav-simulate { color: #fff !important; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); font-size: 22px; padding: 8px; }

.hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,28,36,.96) 0%, rgba(4,28,36,.86) 45%, rgba(4,28,36,.44) 100%), url('../img/carros.png') center/cover no-repeat;
}
.hero:after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -160px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, .82fr);
    gap: 68px;
    align-items: center;
    padding: 58px 0;
}
.eyebrow {
    display: inline-block;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 16px;
}
.eyebrow.light { color: #73e2e8; }
.hero-copy h1 {
    color: #fff;
    font-size: 54px;
    line-height: 1.08;
    letter-spacing: -2.2px;
    margin: 0 0 22px;
    max-width: 720px;
}
.hero-copy > p { color: #c9d7da; max-width: 650px; font-size: 17px; line-height: 1.75; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 12px; }

.simulator-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px 26px 26px;
    box-shadow: 0 30px 80px rgba(0,0,0,.24);
}
.simulator-head span { font-size: 13px; color: var(--primary-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 1.1px; }
.simulator-head h2 { font-size: 24px; line-height: 1.25; margin: 6px 0 16px; letter-spacing: -.8px; }
.simulator-form { display: grid; gap: 13px; }
.type-icons { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.type-icon {
    min-width: 0;
    height: 62px;
    border: 1.5px solid var(--primary);
    border-radius: 14px;
    background: #fff;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: .2s;
}
.type-icon i { font-size: 21px; }
.type-icon span { font-size: 9px; font-weight: 700; line-height: 1; }
.type-icon.active { background: var(--primary); color: #fff; box-shadow: 0 8px 18px rgba(0,184,196,.2); }

.sim-contact-fields,
.sim-financial-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field { display: grid; gap: 5px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field > span { color: #61777d; font-size: 12px; font-weight: 600; }
.field > span small { font-size: 10px; font-weight: 500; color: #94a2a6; }
.field input,
.field select {
    width: 100%;
    height: 44px;
    border: 1px solid #d9e5e7;
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
    outline: 0;
    padding: 0 12px;
    font-size: 13px;
    transition: .2s;
}
.field input:focus,
.field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,184,196,.09); }
.money-input { position: relative; }
.money-input b {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #789096;
    font-size: 12px;
    z-index: 1;
}
.money-input input { padding-left: 35px; }
.compact-result {
    background: #ecf9fa;
    border-radius: 14px;
    padding: 13px 15px;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 12px;
}
.compact-result span { display: block; font-size: 13px; color: #608087; font-weight: 600; }
.compact-result strong { display: block; font-size: 24px; color: var(--navy); letter-spacing: -.8px; }
.compact-result small { grid-column: 1 / -1; display: block; font-size: 10px; color: #779095; line-height: 1.45; margin-top: 3px; }
.form-feedback { display: none; font-size: 12px; line-height: 1.45; padding: 10px 12px; border-radius: 10px; }
.form-feedback.show { display: block; }
.form-feedback.error { background: #fff1f1; color: #953d3d; }

.section { padding: 92px 0; }
.section-heading h2,
.home-about-copy h2,
.about-copy h2,
.faq-intro h2,
.cta-inner h2,
.final-cta h2,
.product-uses h2,
.product-cta h2 { font-size: 38px; line-height: 1.18; letter-spacing: -1.5px; margin: 0; color: var(--navy); }
.section-heading p,
.home-about-copy > p,
.about-copy > p,
.faq-intro > p,
.product-uses p { font-size: 16px; line-height: 1.8; color: var(--muted); }

.home-about { background: #fff; }
.home-about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.home-about-image { height: 420px; border-radius: 26px; overflow: hidden; position: relative; }
.home-about-image:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,35,44,.24)); }
.home-about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; display: block; }
.home-about-copy > p { margin: 18px 0 25px; }
.about-points { display: grid; gap: 13px; }
.about-points > div { display: flex; align-items: flex-start; gap: 13px; }
.about-points > div > i { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary-dark); flex-shrink: 0; }
.about-points span { display: grid; gap: 2px; }
.about-points strong { color: var(--navy); font-size: 15px; }
.about-points small { color: var(--muted); font-size: 13px; line-height: 1.5; }

.categories { padding-top: 15px; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 38px; }
.split-heading > div { max-width: 650px; }
.split-heading > p { max-width: 390px; margin: 0; }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 300px; gap: 16px; }
.category-card { position: relative; border: 0; padding: 0; overflow: hidden; border-radius: 20px; text-align: left; background: #ddd; grid-column: span 2; text-decoration: none; }
.category-card:nth-child(4), .category-card:nth-child(5) { grid-column: span 3; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.category-card:hover img { transform: scale(1.04); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,22,28,.02) 30%, rgba(3,22,28,.86) 100%); }
.category-content { position: absolute; left: 24px; right: 24px; bottom: 24px; color: #fff; display: flex; flex-direction: column; }
.category-content small { font-size: 14px; opacity: .86; }
.category-content strong { font-size: 24px; line-height: 1.1; margin: 3px 0 8px; }
.category-content em { font-style: normal; font-size: 15px; color: #7be6eb; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.category-content em i { font-size: 11px; }

.about-strip { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 520px; object-fit: cover; border-radius: 26px; display: block; }
.about-copy > p { margin: 20px 0 34px; }
.steps { display: grid; gap: 20px; }
.steps > div { display: flex; align-items: flex-start; gap: 16px; }
.steps b { min-width: 44px; height: 44px; border-radius: 12px; background: #dff7f8; color: var(--primary-dark); display: grid; place-items: center; font-size: 14px; }
.steps span { display: flex; flex-direction: column; gap: 4px; }
.steps strong { font-size: 17px; }
.steps small { font-size: 15px; color: var(--muted); line-height: 1.6; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--primary-dark); font-size: 16px; font-weight: 800; text-decoration: none; margin-top: 28px; }
.text-link i { font-size: 12px; }

.center-heading { text-align: center; max-width: 790px; margin: 0 auto 45px; }
.center-heading p { max-width: 690px; margin: 15px auto 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card { border: 1px solid var(--line); border-radius: 18px; padding: 28px; background: #fff; transition: .25s; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.benefit-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: #e4f8f9; color: var(--primary-dark); font-size: 19px; margin-bottom: 22px; }
.benefit-card h3 { font-size: 18px; margin: 0 0 11px; color: var(--navy); }
.benefit-card p { font-size: 15px; line-height: 1.75; color: var(--muted); margin: 0; }

.cta-band { background: var(--primary); padding: 62px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-inner h2 { color: #fff; max-width: 720px; }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.faq-intro > p { margin: 20px 0 28px; }
.accordion details { border-bottom: 1px solid var(--line); padding: 0; }
.accordion summary { list-style: none; cursor: pointer; padding: 22px 0; font-size: 17px; font-weight: 700; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.accordion summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--primary-dark); width: 24px; text-align: center; flex-shrink: 0; }
.faq-icon i { font-size: 14px; }
.faq-icon .fa-minus { display: none; }
.accordion details[open] .faq-icon .fa-plus { display: none; }
.accordion details[open] .faq-icon .fa-minus { display: inline-block; }
.accordion p { font-size: 16px; line-height: 1.85; color: var(--muted); margin: -4px 0 24px; max-width: 720px; }

.final-cta { background: var(--navy); padding: 62px 0; color: #fff; }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 45px; }
.final-cta h2 { color: #fff; max-width: 700px; }
.final-cta p { color: #afc2c6; font-size: 15px; line-height: 1.7; max-width: 690px; margin: 14px 0 0; }

.footer { background: #061d25; color: #fff; padding: 66px 0 26px; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; }
.footer-brand p { font-size: 15px; line-height: 1.8; color: #89a2a8; max-width: 340px; margin-top: 20px; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-main > div > strong { font-size: 16px; margin-bottom: 7px; }
.footer-main a, .footer-main span { color: #91a8ad; font-size: 14px; text-decoration: none; line-height: 1.7; }
.footer-main a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 42px; padding-top: 20px; display: flex; flex-direction: column; align-items: center; gap: 7px; text-align: center; color: #78949a; font-size: 13px; }
.footer-bottom a { color: #fff; font-weight: 700; text-decoration: none; }

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 14px 30px rgba(0,0,0,.22);
    transition: .2s;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); background: #20bd5a; }

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(3,18,23,.68);
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}
.modal-backdrop.show { opacity: 1; visibility: visible; }
.success-modal {
    width: min(420px, 100%);
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
    position: relative;
    transform: translateY(12px) scale(.98);
    transition: .2s;
}
.modal-backdrop.show .success-modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 14px; right: 14px; border: 0; background: #f1f5f5; width: 34px; height: 34px; border-radius: 10px; color: #61777d; }
.success-icon { width: 58px; height: 58px; border-radius: 50%; background: #e4f9ef; color: #21a864; display: grid; place-items: center; font-size: 24px; margin: 0 auto 16px; }
.success-modal h3 { margin: 0; color: var(--navy); font-size: 24px; }
.success-modal p { margin: 12px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* Páginas individuais */
.product-page { background: #fff; }
.product-hero { padding: 74px 0 82px; background: linear-gradient(180deg, #f4f8f8 0%, #fff 100%); }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; color: #71858a; font-size: 13px; text-decoration: none; margin-bottom: 28px; }
.breadcrumb:hover { color: var(--primary-dark); }
.product-hero-copy h1 { font-size: 52px; line-height: 1.08; letter-spacing: -2px; color: var(--navy); margin: 0 0 20px; }
.product-hero-copy > p { color: var(--muted); font-size: 17px; line-height: 1.8; margin: 0 0 28px; }
.product-hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.secondary-link { margin: 0; color: var(--navy); }
.product-hero-image { position: relative; height: 470px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.product-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-hero-image:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,28,36,.28)); }
.product-heading { max-width: 840px; }
.product-benefit-grid .benefit-card { min-height: 245px; }
.product-uses { background: var(--bg); }
.product-uses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.product-uses h2 { max-width: 580px; }
.product-uses p { max-width: 620px; margin: 18px 0 0; }
.use-list { display: grid; gap: 14px; }
.use-list > div { background: #fff; border: 1px solid var(--line); border-radius: 15px; min-height: 62px; padding: 14px 18px; display: flex; align-items: center; gap: 13px; color: var(--navy); font-size: 15px; font-weight: 600; }
.use-list i { width: 34px; height: 34px; border-radius: 10px; background: var(--primary-soft); color: var(--primary-dark); display: grid; place-items: center; font-size: 13px; }
.product-cta { background: var(--primary); padding: 68px 0; }
.product-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.product-cta h2 { color: #fff; max-width: 700px; }
.product-cta p { color: #d8fbfd; font-size: 15px; line-height: 1.7; margin: 13px 0 0; }

@media (max-width: 1050px) {
    .main-nav { gap: 18px; }
    .hero-grid { grid-template-columns: 1fr .9fr; gap: 35px; }
    .hero-copy h1 { font-size: 46px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 270px; }
    .category-card, .category-card:nth-child(4), .category-card:nth-child(5) { grid-column: span 1; }
    .category-card:last-child { grid-column: span 2; }
    .about-grid, .home-about-grid { gap: 45px; }
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { gap: 50px; }
    .footer-main { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
    .product-hero-grid { gap: 40px; }
}

@media (max-width: 860px) {
    .site-header { height: 72px; }
    .menu-toggle { display: block; }
    .main-nav {
        position: absolute;
        top: 72px;
        left: 20px;
        right: 20px;
        background: #fff;
        border-radius: 16px;
        padding: 14px;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: calc(100vh - 95px);
        overflow: auto;
    }
    .main-nav.open { display: flex; }
    .main-nav > a, .nav-dropdown-toggle { padding: 12px; width: 100%; text-align: left; }
    .nav-dropdown { width: 100%; display:flex; flex-direction:column; }
    .nav-dropdown-toggle { justify-content: space-between; font-weight:700; }
    .nav-dropdown:hover .nav-dropdown-menu:not(.mobile-open) { opacity: 1; visibility: visible; }
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 0;
        padding: 6px 0 8px 12px;
        display: grid;
        gap: 4px;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
    }
    .nav-dropdown-menu a {
        background: #f7fbfb;
        border: 1px solid rgba(13,46,56,.06);
        border-radius: 12px;
        padding: 11px 12px;
    }
    .nav-dropdown.open .nav-dropdown-menu { display: grid; opacity: 1; visibility: visible; }
    .main-nav .btn { margin-top: 7px; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; padding: 60px 0; gap: 42px; }
    .hero-copy h1 { font-size: 44px; }
    .simulator-card { max-width: 610px; width: 100%; }
    .split-heading { display: block; }
    .split-heading > p { margin-top: 16px; }
    .about-grid, .home-about-grid, .faq-grid, .product-hero-grid, .product-uses-grid { grid-template-columns: 1fr; }
    .home-about-image { height: 360px; }
    .about-image img { height: 420px; }
        .faq-grid { gap: 40px; }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: span 2; }
    .product-hero-image { height: 390px; order: -1; }
    .product-hero { padding-top: 45px; }
    .product-hero-copy h1 { font-size: 44px; }
    .product-uses-grid { gap: 35px; }
}

@media (max-width: 580px) {
    .container { width: min(100% - 28px, 1180px); }
    .brand { font-size: 16px; }
    .brand-mark { width: 37px; height: 37px; font-size: 19px; }
    .hero-grid { padding: 46px 0; }
    .hero-copy h1 { font-size: 36px; letter-spacing: -1.4px; }
    .hero-copy > p { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .simulator-card { padding: 20px; border-radius: 19px; }
    .simulator-head h2 { font-size: 22px; }
    .type-icons { gap: 6px; }
    .type-icon { height: 56px; border-radius: 12px; }
    .type-icon i { font-size: 19px; }
    .type-icon span { display: none; }
    .sim-contact-fields, .sim-financial-fields { grid-template-columns: 1fr; gap: 9px; }
    .field.full { grid-column: auto; }
    .compact-result { grid-template-columns: 1fr; }
    .compact-result strong { margin-top: 1px; }
    .section { padding: 72px 0; }
    .section-heading h2,
    .home-about-copy h2,
    .about-copy h2,
    .faq-intro h2,
    .cta-inner h2,
    .final-cta h2,
    .product-uses h2,
    .product-cta h2 { font-size: 31px; }
    .home-about-image { height: 300px; }
    .categories { padding-top: 10px; }
    .category-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .category-card, .category-card:nth-child(4), .category-card:nth-child(5), .category-card:last-child { grid-column: span 1; }
    .about-image img { height: 330px; }
        .benefit-grid { grid-template-columns: 1fr; }
    .cta-inner, .final-cta-inner, .product-cta-inner { display: block; }
    .cta-inner .btn, .final-cta-inner .btn, .product-cta-inner .btn { margin-top: 24px; width: 100%; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer { padding-top: 54px; }
    .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; font-size: 28px; }
    .success-modal { padding: 28px 20px 22px; }
    .product-hero-copy h1 { font-size: 38px; }
    .product-hero-image { height: 300px; border-radius: 22px; }
    .product-hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
    .product-hero-actions .secondary-link { justify-content: center; padding: 10px 0; }
}

/* =========================================================
   V4 — refinamentos solicitados
   ========================================================= */

.main-nav > a.nav-simulate { color:#fff !important; }
.main-nav > a.nav-simulate:hover { color:#fff !important; }

.hero-bg {
    background:
        linear-gradient(90deg, rgba(4,28,36,.68) 0%, rgba(4,28,36,.52) 47%, rgba(4,28,36,.86) 77%, rgba(4,28,36,.95) 100%),
        url('../img/hero-home.jpg') center/cover no-repeat !important;
}
.hero-grid {
    grid-template-columns:minmax(0,1.07fr) minmax(410px,.75fr);
    gap:70px;
    padding:66px 0;
}
.simulator-card { padding:25px 26px 26px; }
.simulator-head h2 { margin-bottom:18px; }

.sim-step { display:none; }
.sim-step.active { display:block; }
.type-icons { margin-bottom:17px; }
.sim-contact-fields,
.sim-financial-fields { display:grid; grid-template-columns:1fr 1fr; gap:10px 12px; }
.field { display:grid; gap:6px; }
.field.full { grid-column:1/-1; }
.field > span { color:#51676d; font-size:12px; font-weight:700; }
.field > span small { font-size:10px; font-weight:500; color:#8a9a9e; }
.field input,
.field select {
    width:100%;
    height:45px;
    border:1px solid #d5e2e4;
    border-radius:11px;
    background:#fff;
    color:var(--navy);
    outline:0;
    padding:0 13px;
    font-size:13px;
    transition:.2s;
}
.field input:focus,
.field select:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(0,184,196,.10); }
.field input::placeholder { color:#9aa8ac; }
.field-hint { color:#8a9da2; font-size:10px; line-height:1.4; margin-top:-1px; }
.sim-step .btn-full { margin-top:15px; }
.selected-plan-row {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:15px;
    padding:10px 12px;
    border-radius:12px;
    background:var(--primary-soft);
}
.selected-plan { display:inline-flex; align-items:center; gap:9px; color:var(--navy); font-size:13px; font-weight:700; }
.selected-plan i { color:var(--primary-dark); font-size:17px; }
.change-data { border:0; background:transparent; padding:4px; color:var(--primary-dark); font-size:11px; font-weight:700; }
.change-data i { margin-right:4px; }
.compact-result {
    margin-top:15px;
    padding:15px 16px;
    border-radius:15px;
    background:#ecf9fa;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:3px 15px;
}
.compact-result > span { color:#5d7a81; font-size:12px; font-weight:700; }
.compact-result strong { color:var(--navy); font-size:24px; line-height:1.1; letter-spacing:-.8px; }
.compact-result small { grid-column:1/-1; color:#769095; font-size:10px; line-height:1.55; margin-top:5px; }
.form-feedback { display:none; margin-top:10px; border-radius:10px; padding:9px 11px; font-size:11px; line-height:1.5; }
.form-feedback.show { display:block; }
.form-feedback.error { background:#fff0f0; color:#9b3c3c; }

/* Sobre nós: texto à esquerda e imagem à direita */
.home-about-grid { grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.home-about-copy h2 { max-width:580px; }
.home-about-copy p { color:var(--muted); font-size:16px; line-height:1.9; margin:19px 0 0; }
.home-about-copy .text-link { margin-top:26px; }
.home-about-image { position:relative; height:445px; }
.home-about-image > img { width:100%; height:100%; object-fit:cover; border-radius:26px; display:block; }
.home-about-image:before {
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    right:-26px;
    top:-26px;
    border-radius:50%;
    background:var(--primary-soft);
    z-index:-1;
}

/* CTA compacto reutilizado na home e nas páginas */
.simulation-cta-section { padding:18px 0 90px; }
.simulation-cta-card {
    position:relative;
    overflow:hidden;
    border-radius:28px;
    background:var(--navy);
    min-height:235px;
    padding:48px 54px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}
.simulation-cta-card:before {
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(0,184,196,.09);
    right:-150px;
    bottom:-250px;
}
.simulation-cta-card > * { position:relative; z-index:1; }
.simulation-cta-card h2 { color:#fff; max-width:650px; font-size:38px; line-height:1.18; letter-spacing:-1.5px; margin:0; }
.simulation-cta-card p { color:#adc1c5; font-size:15px; line-height:1.75; max-width:690px; margin:13px 0 0; }
.simulation-cta-card .btn { flex:0 0 auto; }

/* Páginas individuais — mais conteúdo, sem botão voltar */
.product-hero { padding:72px 0 82px; }
.product-hero-grid { gap:70px; }
.product-intro { padding-bottom:80px; }
.product-intro-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.product-intro h2,
.product-process h2 { font-size:38px; line-height:1.18; letter-spacing:-1.5px; margin:0; color:var(--navy); }
.product-intro-text p { margin:0 0 17px; color:var(--muted); font-size:16px; line-height:1.8; }
.product-intro-text p:last-child { margin-bottom:0; }
.product-heading { max-width:840px; }
.use-card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.use-card { background:#fff; border:1px solid var(--line); border-radius:20px; padding:30px; }
.use-card > span { display:grid; place-items:center; width:50px; height:50px; border-radius:14px; background:var(--primary-soft); color:var(--primary-dark); font-size:21px; margin-bottom:20px; }
.use-card h3 { margin:0 0 10px; color:var(--navy); font-size:19px; }
.use-card p { margin:0; color:var(--muted); font-size:15px; line-height:1.75; }
.product-split-heading { margin-bottom:35px; }
.product-benefit-grid .benefit-card { min-height:245px; }
.product-process { background:var(--navy); }
.product-process-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.product-process .eyebrow { color:#73e2e8; }
.product-process h2 { color:#fff; }
.product-process p { color:#a9c0c5; margin:18px 0 0; font-size:16px; line-height:1.8; }
.product-process .text-link { color:#73e2e8; }
.process-list { display:grid; gap:12px; }
.process-list > div { display:flex; align-items:flex-start; gap:16px; padding:18px; border-radius:16px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); }
.process-list b { width:44px; height:44px; flex:0 0 44px; border-radius:12px; background:var(--primary); color:#fff; display:grid; place-items:center; font-size:13px; }
.process-list span { display:flex; flex-direction:column; gap:4px; }
.process-list strong { color:#fff; font-size:16px; }
.process-list small { color:#a9c0c5; font-size:13px; line-height:1.6; }
.product-info { background:#fff; }
.info-card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.info-card-grid article { background:#f8fbfb; border:1px solid var(--line); border-radius:20px; padding:30px; }
.info-card-grid i { color:var(--primary-dark); font-size:24px; margin-bottom:19px; }
.info-card-grid h3 { color:var(--navy); font-size:19px; margin:0 0 10px; }
.info-card-grid p { color:var(--muted); font-size:15px; line-height:1.75; margin:0; }
.product-faq { background:var(--bg); }
.product-faq + .simulation-cta-section { padding-top:82px; }

/* FAQ: + fechado e - aberto */
.faq-icon .fa-minus { display:none !important; }
.accordion details[open] .faq-icon .fa-plus { display:none !important; }
.accordion details[open] .faq-icon .fa-minus { display:inline-block !important; transform:none !important; }
.accordion details[open] summary span { transform:none !important; }

@media(max-width:1050px) {
    .hero-grid { grid-template-columns:1fr .92fr; gap:35px; }
    .product-intro-grid,.product-process-grid { gap:50px; }
}

@media(max-width:860px) {
    .hero-bg { background-position:48% center !important; }
    .hero-grid { grid-template-columns:1fr; padding:60px 0; gap:42px; }
    .simulator-card { max-width:610px; width:100%; }
    .home-about-grid,.product-intro-grid,.product-process-grid { grid-template-columns:1fr; }
    .home-about-copy { order:1; }
    .home-about-image { order:2; height:370px; }
    .simulation-cta-card { padding:42px; gap:35px; }
    .use-card-grid,.info-card-grid { grid-template-columns:1fr; }
}

@media(max-width:580px) {
    .simulator-card { padding:20px; }
    .sim-contact-fields,.sim-financial-fields { grid-template-columns:1fr; gap:9px; }
    .field.full { grid-column:auto; }
    .compact-result { grid-template-columns:1fr; }
    .compact-result strong { margin-top:2px; }
    .home-about-image { height:310px; }
    .home-about-image:before { display:none; }
    .simulation-cta-section { padding:5px 0 70px; }
    .simulation-cta-card { display:block; padding:30px 24px; min-height:0; border-radius:22px; }
    .simulation-cta-card h2,.product-intro h2,.product-process h2 { font-size:31px; }
    .simulation-cta-card .btn { width:100%; margin-top:24px; }
    .product-intro { padding-bottom:64px; }
    .product-faq + .simulation-cta-section { padding-top:64px; }
}


/* V4.2 — alternância visual das seções da home */
.home-about { background:#fff; }
.categories { background:var(--bg); padding-top:92px; }
.about-strip { background:#fff; }
.benefits { background:var(--bg); }
.faq { background:#fff; }

@media(max-width:580px) {
    .categories { padding-top:72px; }
}

/* =========================================================
   V4.3 — polimento visual e páginas individuais mais dinâmicas
   ========================================================= */

/* Imagens da home sem legendas/sobreposições. */
.home-about-image > img,
.about-image > img { position:relative; z-index:1; }

/* Cabeçalho de "Possibilidades" realmente centralizado. */
.product-uses .product-heading {
    width:100%;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}
.product-uses .product-heading h2 {
    max-width:780px;
    margin-left:auto;
    margin-right:auto;
}
.product-uses .product-heading p {
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

/* Segunda imagem nas páginas de cada modalidade. */
.product-process-grid {
    grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
    gap:68px;
    align-items:center;
}
.product-process-image {
    height:500px;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 24px 55px rgba(0,0,0,.22);
}
.product-process-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.product-process-content { min-width:0; }
.product-process-content .process-list { margin-top:26px; }
.product-process-content > .text-link { margin-top:26px; }

@media(max-width:1050px) {
    .product-process-grid { gap:42px; }
    .product-process-image { height:440px; }
}

@media(max-width:860px) {
    .product-process-grid { grid-template-columns:1fr; }
    .product-process-image { height:390px; }
}

@media(max-width:580px) {
    .product-process-image { height:280px; border-radius:20px; }
    .product-uses .product-heading h2 { max-width:100%; }
}


/* =========================================================
   V4.4 — menu mobile robusto + páginas mais visuais
   ========================================================= */
.home-about-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.product-visual {
    background: var(--bg);
    padding-top: 0;
}
.product-visual-grid {
    display:grid;
    grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
    gap: 48px;
    align-items:center;
}
.product-visual-copy h2 {
    font-size: 36px;
    line-height: 1.18;
    letter-spacing: -1.3px;
    color: var(--navy);
    margin: 0 0 18px;
}
.product-visual-copy > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 24px;
}
.product-visual-points {
    display:grid;
    gap:14px;
}
.product-visual-points article {
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:18px 20px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
}
.product-visual-points i {
    width:42px;
    height:42px;
    flex:0 0 42px;
    border-radius:12px;
    display:grid;
    place-items:center;
    background:var(--primary-soft);
    color:var(--primary-dark);
    font-size:16px;
}
.product-visual-points strong {
    display:block;
    color:var(--navy);
    font-size:16px;
    margin-bottom:4px;
}
.product-visual-points span {
    display:block;
    color:var(--muted);
    font-size:14px;
    line-height:1.7;
}
.product-visual-media {
    height: 480px;
    border-radius: 26px;
    overflow:hidden;
    box-shadow: var(--shadow);
}
.product-visual-media img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media(max-width:1050px) {
    .product-visual-grid { gap:38px; }
    .product-visual-copy h2 { font-size:32px; }
}

@media(max-width:860px) {
    .product-visual-grid { grid-template-columns:1fr; }
    .product-visual-media { height:360px; order:-1; }
}

@media(max-width:580px) {
    .product-visual-media { height:260px; border-radius:20px; }
    .product-visual-copy h2 { font-size:29px; }
    .product-visual-points article { padding:16px; }
}

/* =========================================================
   V4.5 — páginas de modalidades: ritmo visual profissional
   ========================================================= */
.product-page .product-hero {
    padding: 68px 0 76px;
    background: linear-gradient(180deg, #f7fafb 0%, #fff 100%);
}
.product-page .product-hero-grid {
    grid-template-columns: minmax(0,1fr) minmax(360px,.88fr);
    gap: 72px;
    align-items: center;
}
.product-page .product-hero-copy { max-width: 610px; }
.product-page .product-hero-copy h1 {
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -1.8px;
    margin-bottom: 18px;
}
.product-page .product-hero-copy > p {
    max-width: 580px;
    font-size: 16px;
    line-height: 1.78;
}
.product-page .product-hero-image {
    height: 430px;
    border-radius: 26px;
}

/* 1ª seção com imagem: imagem à esquerda / conteúdo à direita. */
.product-about {
    background: #fff;
    padding: 92px 0;
}
.product-about-grid {
    display: grid;
    grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
    gap: 72px;
    align-items: center;
}
.product-about-media {
    height: 440px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(9,38,48,.12);
}
.product-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-about-copy { max-width: 590px; }
.product-about-copy h2 {
    color: var(--navy);
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -1.25px;
    margin: 0 0 20px;
}
.product-about-text p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.82;
    margin: 0 0 14px;
}
.product-about-text p:last-child { margin-bottom: 0; }
.product-about-note {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 15px;
    background: var(--primary-soft);
}
.product-about-note i {
    color: var(--primary-dark);
    margin-top: 4px;
}
.product-about-note p {
    margin: 0;
    color: #536f77;
    font-size: 13px;
    line-height: 1.65;
}

/* Possibilidades: vitrine curta, sem parede de texto. */
.product-page .product-uses {
    background: var(--bg);
    padding: 88px 0 94px;
}
.product-page .product-uses .product-heading {
    max-width: 760px;
    margin-bottom: 38px;
}
.product-page .product-uses .product-heading h2 {
    max-width: 690px;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: -1.25px;
}
.product-page .product-uses .product-heading p {
    max-width: 650px;
    font-size: 15px;
    line-height: 1.75;
}
.polished-use-grid { gap: 18px; }
.polished-use-card {
    min-height: 230px;
    padding: 25px 26px 27px;
    border-radius: 20px;
    box-shadow: 0 8px 26px rgba(9,38,48,.035);
}
.polished-use-card > span { display: none; }
.use-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.use-number {
    color: #9aadb2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.use-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 18px;
}
.polished-use-card h3 {
    font-size: 20px;
    margin-bottom: 9px;
}
.polished-use-card p {
    font-size: 14px;
    line-height: 1.72;
    margin: 0;
}

/* 2ª seção com imagem: conteúdo à esquerda / imagem à direita. */
.product-benefit-showcase {
    background: #fff;
    padding: 94px 0;
}
.product-benefit-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr);
    gap: 70px;
    align-items: center;
}
.product-benefit-copy { min-width: 0; }
.product-benefit-copy > h2 {
    max-width: 570px;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -1.25px;
    margin: 0 0 16px;
}
.product-benefit-copy > p {
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 30px;
}
.advantage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 22px;
}
.advantage-list article {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}
.advantage-list article > span {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-size: 15px;
}
.advantage-list strong {
    display: block;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 8px;
}
.advantage-list small {
    display: block;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}
.product-benefit-media {
    height: 455px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(9,38,48,.12);
}
.product-benefit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Como acontece: sem repetir imagem, processo limpo e objetivo. */
.product-page .product-process {
    background: var(--navy);
    padding: 88px 0 94px;
}
.product-process-centered {
    text-align: center;
}
.product-process-heading {
    max-width: 760px;
    margin: 0 auto 38px;
}
.product-process-heading h2 {
    color: #fff;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: -1.3px;
    margin: 0;
}
.product-process-heading > p {
    max-width: 760px;
    margin: 18px auto 0;
    color: #c4d6da;
    font-size: 18px;
    line-height: 1.8;
}
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    text-align: left;
}
.process-timeline:before {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    top: 29px;
    height: 1px;
    background: rgba(115,226,232,.25);
}
.process-timeline article {
    position: relative;
    z-index: 1;
    padding: 0 22px 24px;
}
.process-timeline article > span {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 18px;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0,184,196,.18);
    font-size: 14px;
    font-weight: 800;
}
.process-timeline strong {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
}
.process-timeline p {
    color: #c4d6da;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}
.process-cta-button {
    margin-top: 32px;
    box-shadow: none;
}

/* Fechamento das páginas: alternância clara de fundo. */
.product-page .product-info {
    background: var(--bg);
    padding: 88px 0;
}
.product-page .product-info .product-heading { margin-bottom: 36px; }
.product-page .product-info .product-heading h2 {
    font-size: 34px;
    line-height: 1.2;
}
.product-page .info-card-grid article {
    background: #fff;
    padding: 30px;
    min-height: 230px;
}
.product-page .info-card-grid article h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
}
.product-page .info-card-grid article p {
    font-size: 16px;
    line-height: 1.75;
}
.product-page .product-faq {
    background: #fff;
    padding: 90px 0;
}
.product-page .faq-intro h2 { font-size: 34px; }
.product-page .product-faq + .simulation-cta-section { padding-top: 16px; }

@media(max-width: 1050px) {
    .product-page .product-hero-grid,
    .product-about-grid,
    .product-benefit-showcase-grid { gap: 44px; }
    .product-benefit-media { height: 420px; }
    .advantage-list { grid-template-columns: 1fr; gap: 0; }
}

@media(max-width: 860px) {
    .product-page .product-hero-grid,
    .product-about-grid,
    .product-benefit-showcase-grid { grid-template-columns: 1fr; }
    .product-page .product-hero-image { order: -1; height: 350px; }
    .product-about-media { height: 360px; }
    .product-benefit-media { height: 360px; }
    .process-timeline { grid-template-columns: 1fr; gap: 8px; max-width: 680px; margin: 0 auto; }
    .process-timeline:before { display: none; }
    .process-timeline article { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 14px 0; }
    .process-timeline article > span { margin-bottom: 0; }
    .process-timeline strong { margin-top: 4px; }
}

@media(max-width: 580px) {
    .product-page .product-hero { padding: 38px 0 56px; }
    .product-page .product-hero-image { height: 280px; }
    .product-page .product-hero-copy h1 { font-size: 36px; }
    .product-about,
    .product-page .product-uses,
    .product-benefit-showcase,
    .product-page .product-process,
    .product-page .product-info,
    .product-page .product-faq { padding: 68px 0; }
    .product-about-media,
    .product-benefit-media { height: 275px; border-radius: 20px; }
    .product-about-copy h2,
    .product-page .product-uses .product-heading h2,
    .product-benefit-copy > h2,
    .product-process-heading h2,
    .product-page .product-info .product-heading h2,
    .product-page .faq-intro h2 { font-size: 29px; letter-spacing: -1px; }
    .polished-use-card { min-height: 0; }
    .advantage-list article { padding: 16px 0; }
    .advantage-list strong { font-size: 18px; }
    .advantage-list small { font-size: 15px; }
    .product-benefit-copy > p,
    .product-process-heading > p,
    .product-page .info-card-grid article p { font-size: 15px; }
    .process-timeline article { grid-template-columns: 50px 1fr; gap: 14px; }
    .process-timeline article > span { width: 50px; height: 50px; border-radius: 15px; }
    .process-timeline strong { font-size: 18px; }
    .process-timeline p { font-size: 15px; }
    .process-cta-button { width: 100%; }
}


/* =========================================================
   V4.5.1 — ajustes finos solicitados
   ========================================================= */
.hero {
    isolation: isolate;
}
.hero-bg {
    z-index: 0;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    backface-visibility: hidden;
    will-change: auto;
}
.hero-grid {
    position: relative;
    z-index: 2;
}
.hero:after {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.polished-use-card {
    min-height: 0;
    padding: 28px 26px 30px;
}
.use-card-top {
    justify-content: flex-start;
    margin-bottom: 22px;
}
.use-number {
    display: none;
}
.use-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 24px;
}

.product-page .info-card-grid article {
    padding: 28px 28px 30px;
}
.product-page .info-card-grid i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 24px;
    margin-bottom: 18px;
}

@media(max-width:580px) {
    .use-icon,
    .product-page .info-card-grid i {
        width: 54px;
        height: 54px;
        border-radius: 15px;
        font-size: 22px;
    }
}


/* V4.5.2 — correção definitiva da hero */
@media(max-width:860px) {
    .hero-bg {
        background-position: 42% center !important;
    }
    .hero-grid {
        width: min(100% - 40px, 1180px);
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width:580px) {
    .hero-bg {
        background-position: 38% center !important;
    }
    .hero-grid {
        width: min(100% - 28px, 1180px);
    }
    .hero-copy,
    .simulator-card {
        min-width: 0;
        max-width: 100%;
    }
}


/* V4.5.3 — ajuste do botão da seção Sobre nós */
.btn-comfy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 0 26px;
    min-height: 52px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.1px;
    white-space: nowrap;
}
@media(max-width:580px) {
    .btn-comfy {
        padding: 0 24px;
        min-height: 50px;
        font-size: 14px;
    }
}


/* =========================================================
   V4.5.6 — auditoria de espaçamento + simulador + cards
   ========================================================= */

/* O último parágrafo estava com margin-bottom:0 por uma regra antiga. */
.home-about-copy > p:last-of-type {
    margin-bottom: 28px;
}
.home-about-copy .btn-comfy {
    margin-top: 0;
    padding: 0 26px;
    min-height: 52px;
    font-size: 14px;
    border-radius: 14px;
}

/* Cabeçalho do simulador com título + texto de apoio. */
.simulator-head h2 {
    margin: 0 0 7px;
}
.simulator-head p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    max-width: 390px;
}

/* CTA visual dentro dos cards de modalidade. */
.category-content .category-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 36px;
    padding: 0 14px;
    margin-top: 2px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0,184,196,.18);
    transition: transform .2s ease, background .2s ease;
}
.category-card:hover .category-button {
    transform: translateY(-1px);
    background: var(--primary-dark);
    color: #fff;
}

@media(max-width:580px) {
    .home-about-copy > p:last-of-type {
        margin-bottom: 24px;
    }
    .simulator-head p {
        font-size: 12.5px;
        margin-bottom: 16px;
    }
}


/* =========================================================
   V4.5.9 — footer institucional redesenhado
   ========================================================= */
.footer {
    background: #061d25;
    color: #fff;
    padding: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: start;
    padding-top: 68px;
    padding-bottom: 44px;
}

.footer-company {
    min-width: 0;
}

.footer-logo {
    width: fit-content;
}

.footer-company p {
    max-width: 390px;
    margin: 22px 0 0;
    color: #8da6ac;
    font-size: 14px;
    line-height: 1.8;
}

.footer-service {
    min-width: 0;
}

.footer-kicker {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(0, 184, 196, .12);
    color: #73e2e8;
    font-size: 14px;
}

.footer-contact-item > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-item small {
    display: block;
    color: #6f8f96;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-contact-item a,
.footer-contact-item span:not(.footer-contact-icon) {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    color: #a5bbc0;
    font-size: 13px;
    line-height: 1.55;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-separator {
    height: 1px;
    background: rgba(255, 255, 255, .09);
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px;
    padding-top: 42px;
    padding-bottom: 48px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-nav-column > strong {
    color: #fff;
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-nav-column > a {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    color: #8fa8ae;
    font-size: 13px;
    line-height: 1.55;
    text-decoration: none;
    padding: 2px 0;
    transition: color .2s ease;
}

.footer-nav-column > a:hover {
    color: #fff;
}

.footer-legal-wrap {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .08);
}

.footer .footer-bottom {
    border-top: 0;
    margin-top: 0;
    padding: 20px 0 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    color: #708d94;
    font-size: 12px;
}

.footer .footer-bottom a {
    display: inline;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

@media(max-width: 1050px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-contact-list {
        max-width: 820px;
    }
}

@media(max-width: 760px) {
    .footer-top {
        padding-top: 54px;
        padding-bottom: 36px;
    }

    .footer-contact-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 28px;
        padding-top: 36px;
        padding-bottom: 42px;
    }
}

@media(max-width: 520px) {
    .footer-company p {
        font-size: 13px;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-nav-column {
        gap: 8px;
    }
}


/* =========================================================
   V4.6.0 — footer profissional, mais próximo da referência
   ========================================================= */
.footer-pro {
    background: #01293b;
    color: #fff;
}
.footer-pro .brand-light,
.footer-pro .brand-light strong,
.footer-pro .brand-light span {
    color: #fff;
}
.footer-branding {
    padding-top: 54px;
    padding-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-brand-center {
    margin: 0 auto;
}
.footer-brand-copy {
    margin-top: 20px;
    max-width: 820px;
}
.footer-brand-copy p {
    margin: 0;
    color: #edf6f8;
    font-size: 15px;
    line-height: 1.75;
}
.footer-brand-copy p + p {
    margin-top: 8px;
    color: #d6e7eb;
}
.footer-socials {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: #fff;
    color: var(--primary);
    font-size: 18px;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.footer-socials a:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: #fff;
}
.footer-columns {
    padding-top: 34px;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    min-width: 0;
}
.footer-column strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 6px;
}
.footer-column a,
.footer-text-row {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.55;
}
.footer-column a:hover {
    color: #7be6eb;
}
.footer-contact-column a,
.footer-text-row {
    color: #ffffff;
}
.footer-contact-column i,
.footer-text-row i {
    color: #d9f5f7;
    min-width: 16px;
    margin-top: 3px;
}
.footer-badges {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 24px;
    padding-bottom: 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}
.footer-badge {
    min-height: 62px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}
.footer-badge i {
    color: #7be6eb;
    font-size: 22px;
}
.footer-badge span {
    font-size: 14px;
    line-height: 1.45;
    color: #ecf7f8;
}
.footer-pro .footer-legal-wrap {
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.08);
}
.footer-pro .footer-bottom {
    padding: 18px 0 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    color: #e8f4f6;
    font-size: 13px;
}
.footer-pro .footer-bottom a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

/* páginas institucionais simples */
.legal-hero {
    background: #f5fafb;
}
.legal-hero-inner {
    max-width: 900px;
}
.legal-hero-inner h1 {
    margin: 10px 0 16px;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -1.6px;
    color: var(--navy);
}
.legal-hero-inner p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}
.legal-content {
    padding-top: 0;
}
.legal-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 36px 34px;
}
.legal-box h2 {
    font-size: 24px;
    color: var(--navy);
    margin: 0 0 10px;
}
.legal-box p {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}
.legal-box p:last-child {
    margin-bottom: 0;
}
@media(max-width: 1100px) {
    .footer-columns {
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 34px;
    }
    .footer-badges {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}
@media(max-width: 760px) {
    .footer-brand-copy p {
        font-size: 14px;
    }
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 28px 26px;
    }
    .footer-badges {
        grid-template-columns: 1fr;
    }
    .legal-hero-inner h1 {
        font-size: 34px;
    }
    .legal-hero-inner p,
    .legal-box p {
        font-size: 15px;
    }
}
@media(max-width: 520px) {
    .footer-branding {
        padding-top: 46px;
        padding-bottom: 30px;
    }
    .footer-columns {
        grid-template-columns: 1fr;
    }
    .footer-column strong {
        font-size: 17px;
    }
    .footer-column a,
    .footer-text-row {
        font-size: 14px;
    }
    .footer-badge span {
        font-size: 13px;
    }
    .legal-box {
        padding: 28px 22px;
        border-radius: 20px;
    }
}


/* =========================================================
   V4.6.1 — ajustes finos do footer e páginas de políticas
   ========================================================= */
.footer-pro .footer-columns {
    border-top: 1px solid rgba(255,255,255,.12);
}
.footer-pro .footer-socials a {
    background: #00b8c4;
    color: #fff;
}
.footer-pro .footer-socials a:hover {
    background: #019eaa;
    color: #fff;
}
.footer-pro .footer-legal-wrap {
    margin-top: 6px;
}
.footer-pro .footer-bottom {
    gap: 12px;
}
.footer-pro .h3-footer {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.footer-pro .h3-text {
    color: #fff;
}
.footer-pro .footer-badges {
    display: none !important;
}
.legal-hero-simple {
    padding-top: 84px;
    padding-bottom: 84px;
    background: #f5fafb;
}
.legal-hero-centered {
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}
.legal-hero-centered .eyebrow {
    justify-content: center;
}
.legal-hero-centered h1 {
    margin-left: auto;
    margin-right: auto;
}
.legal-hero-centered p {
    max-width: 760px;
    margin: 0 auto;
}
@media(max-width:760px){
    .legal-hero-simple {
        padding-top: 68px;
        padding-bottom: 68px;
    }
}


/* =========================================================
   V4.6.2 — submenu sem ícones + respiro do crédito H3 Web
   ========================================================= */
.nav-dropdown-menu {
    width: 238px;
}
.nav-dropdown-menu a {
    gap: 0;
    padding: 11px 13px;
}
.footer-pro .footer-bottom {
    gap: 20px;
}
.footer-pro .h3-footer {
    margin-top: 2px;
}
@media(max-width:860px){
    .nav-dropdown-menu {
        width: 100%;
    }
}


/* =========================================================
   V4.6.3 — footer em bloco único + hero das modalidades limpa
   ========================================================= */
.footer-pro,
.footer-pro .footer-legal-wrap {
    background: #01293b !important;
}
.footer-pro .footer-legal-wrap {
    border-top: 0 !important;
    margin-top: 0 !important;
}
.footer-pro .footer-columns {
    border-top: 0 !important;
}
.footer-pro .footer-bottom {
    border-top: 0 !important;
}
.product-hero-actions {
    gap: 0;
}


/* =========================================================
   V4.6.4 — linha divisória de volta com mais respiro no footer
   ========================================================= */
.footer-pro .footer-legal-wrap {
    background: #01293b !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
    margin-top: 36px !important;
}
.footer-pro .footer-bottom {
    padding-top: 16px;
    padding-bottom: 18px;
    gap: 20px;
}
.footer-pro .h3-footer {
    margin-top: 2px;
}
@media(max-width:760px){
    .footer-pro .footer-legal-wrap {
        margin-top: 28px !important;
    }
    .footer-pro .footer-bottom {
        padding-top: 14px;
        gap: 16px;
    }
}


/* =========================================================
   V4.6.5 — divisória contida no container e respiro equilibrado
   ========================================================= */
.footer-pro .footer-legal-wrap {
    background: #01293b !important;
    border-top: 0 !important;
    margin-top: 34px !important;
}
.footer-pro .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12) !important;
    padding-top: 30px !important;
    padding-bottom: 20px !important;
    gap: 20px;
}
@media(max-width:760px){
    .footer-pro .footer-legal-wrap {
        margin-top: 28px !important;
    }
    .footer-pro .footer-bottom {
        padding-top: 26px !important;
        padding-bottom: 18px !important;
        gap: 16px;
    }
}


/* =========================================================
   V4.6.6 — submenu mobile fechado + formulário em etapa única
   ========================================================= */
@media(max-width:860px) {
    .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu:not(.mobile-open),
    .nav-dropdown:not(.open) .nav-dropdown-menu {
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu.mobile-open {
        display: grid !important;
    }
}

#simulationForm .type-icons {
    margin-bottom: 17px;
}
#simulationForm .sim-contact-fields {
    margin-bottom: 2px;
}
#simulationForm .form-feedback:not(.show) {
    display: none;
}
#simulationForm > .btn-full {
    margin-top: 2px;
}


/* =========================================================
   V4.6.7 — logo em imagem + modal contida + correção do e-mail
   ========================================================= */
.brand-image {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.brand-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}
.brand-logo-header {
    height: 55px;
}
.brand-logo-footer {
    height: 65px;
}
.site-header .brand-image {
    flex: 0 0 auto;
}
.footer-brand-center.brand-image {
    margin: 0 auto;
}
.simulator-card {
    position: relative;
    overflow: hidden;
}
.modal-backdrop-inline {
    position: absolute;
    inset: 0;
    z-index: 12;
    border-radius: inherit;
    background: rgba(3,18,23,.56);
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}
.modal-backdrop-inline.show {
    opacity: 1;
    visibility: visible;
}
.modal-backdrop-inline .success-modal {
    width: min(100%, 410px);
    margin: 0;
}
#simulationForm .sim-contact-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}
#simulationForm .field {
    min-width: 0;
    width: 100%;
    overflow: hidden;
}
#simulationForm .field input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-right: 14px;
    appearance: none;
    -webkit-appearance: none;
}
#simulationForm input[type="email"]::-webkit-contacts-auto-fill-button,
#simulationForm input[type="email"]::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}
.footer-pro .footer-legal-wrap {
    border-top: 0 !important;
    margin-top: 34px !important;
}
.footer-pro .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12) !important;
    padding-top: 30px !important;
    padding-bottom: 20px !important;
    gap: 20px;
}
@media(max-width: 980px) {
    .brand-logo-header {
    height: 55px;
}
    .brand-logo-footer {
    height: 65px;
}
}
@media(max-width: 760px) {
    .footer-pro .footer-legal-wrap {
        margin-top: 28px !important;
    }
    .footer-pro .footer-bottom {
        padding-top: 26px !important;
        padding-bottom: 18px !important;
        gap: 16px;
    }
}
@media(max-width: 520px) {
    .brand-logo-header {
    height: 55px;
}
    .brand-logo-footer {
    height: 65px;
}
    .modal-backdrop-inline {
        padding: 14px;
    }
    .modal-backdrop-inline .success-modal {
        padding: 24px 20px 20px;
        border-radius: 18px;
    }
}


/* =========================================================
   V4.6.8 — correção final do formulário + logo
   ========================================================= */
#simulationForm .field input:focus,
#simulationForm .field select:focus {
    border-color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--primary);
    outline: 0;
}
#simulationForm .field input,
#simulationForm .field select {
    box-sizing: border-box;
    transform: none !important;
}

/* A modal fica restrita ao card da simulação, sem cobrir a hero inteira. */
.simulator-card {
    position: relative;
    overflow: hidden;
}
.modal-backdrop-inline {
    position: absolute !important;
    inset: 0 !important;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

/* Logos oficiais da demonstração. */
.brand-image {
    text-decoration: none;
}
.brand-logo-header {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.brand-logo-footer {
    height: 58px;
    width: auto;
    object-fit: contain;
}
@media(max-width:980px){
    .brand-logo-header {
    height: 55px;
}
}
@media(max-width:520px){
    .brand-logo-header {
    height: 55px;
}
    .brand-logo-footer {
    height: 65px;
}
}


/* V4.6.9 — tamanhos finais das logos */
.brand-logo-header {
    height: 55px !important;
}
.brand-logo-footer {
    height: 65px !important;
}
@media(max-width:980px) {
    .brand-logo-header {
        height: 55px !important;
    }
    .brand-logo-footer {
        height: 65px !important;
    }
}
@media(max-width:520px) {
    .brand-logo-header {
        height: 55px !important;
    }
    .brand-logo-footer {
        height: 65px !important;
    }
}


/* =========================================================
   V4.7.0 — compensação das âncoras para o header sticky
   ========================================================= */
html {
    scroll-padding-top: 104px;
}

#simulador,
#sobre,
#consorcios,
#como-funciona,
#vantagens,
#duvidas {
    scroll-margin-top: 104px;
}

@media(max-width:860px) {
    html {
        scroll-padding-top: 88px;
    }

    #simulador,
    #sobre,
    #consorcios,
    #como-funciona,
    #vantagens,
    #duvidas {
        scroll-margin-top: 88px;
    }
}


/* =========================================================
   V4.7.0.3 — políticas sem card e sem eyebrow
   ========================================================= */
.legal-hero-simple {
    padding-top: 76px;
    padding-bottom: 52px;
}
.legal-content {
    padding-top: 0;
    padding-bottom: 88px;
}
.legal-content .container {
    max-width: 980px;
}
.legal-box {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.legal-box h2 {
    margin-top: 34px;
    margin-bottom: 10px;
    font-size: 24px;
}
.legal-box h2:first-child {
    margin-top: 0;
}
.legal-box p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.8;
}
@media(max-width:760px){
    .legal-hero-simple {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .legal-content {
        padding-bottom: 68px;
    }
    .legal-box h2 {
        font-size: 21px;
        margin-top: 28px;
    }
    .legal-box p {
        font-size: 15px;
    }
}

/* =========================================================
   V4.7.0.4 — respiro entre hero e conteúdo das políticas
   ========================================================= */
.legal-content {
    padding-top: 58px !important;
    padding-bottom: 88px;
}

@media(max-width:760px){
    .legal-content {
        padding-top: 42px !important;
        padding-bottom: 68px;
    }
}

/* =========================================================
   V4.7.0.5 — ajustes finais
   ========================================================= */
.brand-logo-header {
    height: 60px !important;
}

@media(max-width:980px) {
    .brand-logo-header {
        height: 60px !important;
    }
}

@media(max-width:520px) {
    .brand-logo-header {
        height: 60px !important;
    }
}


/* =========================================================
   V4.7.0.6 — tipografia padronizada
   Home + páginas individuais de consórcio
   ========================================================= */

/* HOME — textos corridos */
.hero-copy > p,
.home-about-copy > p,
.section-heading > p,
.split-heading > p,
.about-copy > p,
.faq-intro > p,
.accordion details > p,
.simulation-cta-card p {
    font-size: 17px;
    line-height: 1.78;
}

/* HOME — textos internos / cards */
.steps small {
    font-size: 16px;
    line-height: 1.65;
}
.steps strong {
    font-size: 18px;
    line-height: 1.35;
}
.benefit-card p {
    font-size: 16px;
    line-height: 1.72;
}
.benefit-card h3 {
    font-size: 19px;
    line-height: 1.35;
}
.category-content small {
    font-size: 15px;
}
.accordion summary {
    font-size: 17px;
    line-height: 1.45;
}

/* PÁGINAS INDIVIDUAIS — textos principais */
.product-page .product-hero-copy > p,
.product-about-text p,
.product-page .product-uses .product-heading p,
.product-benefit-copy > p,
.product-process-heading > p,
.product-page .faq-intro > p,
.product-page .accordion details > p {
    font-size: 17px;
    line-height: 1.78;
}

/* PÁGINAS INDIVIDUAIS — observações e cards */
.product-about-note p {
    font-size: 15px;
    line-height: 1.7;
}
.polished-use-card p {
    font-size: 16px;
    line-height: 1.7;
}
.polished-use-card h3 {
    font-size: 20px;
    line-height: 1.35;
}
.advantage-list small {
    font-size: 16px;
    line-height: 1.7;
}
.advantage-list strong {
    font-size: 19px;
    line-height: 1.35;
}
.process-timeline p {
    font-size: 16px;
    line-height: 1.72;
}
.process-timeline strong {
    font-size: 19px;
    line-height: 1.35;
}
.product-page .info-card-grid article p {
    font-size: 16px;
    line-height: 1.72;
}
.product-page .info-card-grid article h3 {
    font-size: 20px;
    line-height: 1.35;
}

/* Tablet */
@media (max-width: 860px) {
    .hero-copy > p,
    .home-about-copy > p,
    .section-heading > p,
    .split-heading > p,
    .about-copy > p,
    .faq-intro > p,
    .accordion details > p,
    .simulation-cta-card p,
    .product-page .product-hero-copy > p,
    .product-about-text p,
    .product-page .product-uses .product-heading p,
    .product-benefit-copy > p,
    .product-process-heading > p,
    .product-page .faq-intro > p,
    .product-page .accordion details > p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 580px) {
    .hero-copy > p,
    .home-about-copy > p,
    .section-heading > p,
    .split-heading > p,
    .about-copy > p,
    .faq-intro > p,
    .accordion details > p,
    .simulation-cta-card p,
    .product-page .product-hero-copy > p,
    .product-about-text p,
    .product-page .product-uses .product-heading p,
    .product-benefit-copy > p,
    .product-process-heading > p,
    .product-page .faq-intro > p,
    .product-page .accordion details > p,
    .steps small,
    .benefit-card p,
    .polished-use-card p,
    .advantage-list small,
    .process-timeline p,
    .product-page .info-card-grid article p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .steps strong,
    .benefit-card h3,
    .advantage-list strong,
    .process-timeline strong,
    .product-page .info-card-grid article h3 {
        font-size: 18px;
    }

    .product-about-note p {
        font-size: 14.5px;
    }
}


/* =========================================================
   V4.7.0.14 — HERO RESPONSIVA FINAL

   Banners:
   assets/img/hero/hero-desktop.png  — 1920 x 1080 px
   assets/img/hero/hero-tablet.png   — 1200 x 600 px
   assets/img/hero/hero-mobile.png   — 640 x 1000 px
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    overflow: hidden;
    background: #071f28;
    transform: none !important;
}

.hero-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
}

/* DESKTOP — hero alta como a composição aprovada. */
@media (min-width: 1200px) {
    .hero {
        min-height: 720px !important;
        height: clamp(720px, calc(100svh - 84px), 820px);
        background: #071f28;
    }

    .hero-bg img {
        object-position: center center;
    }

    .hero-overlay {
        background: linear-gradient(90deg,
            rgba(4,28,36,.64) 0%,
            rgba(4,28,36,.48) 40%,
            rgba(4,28,36,.55) 60%,
            rgba(4,28,36,.78) 80%,
            rgba(4,28,36,.92) 100%);
    }

    .hero-grid {
        min-height: 100%;
        grid-template-columns: minmax(0,1.07fr) minmax(410px,.75fr);
        gap: 70px;
        padding: 52px 0;
        align-items: center;
    }
}

/* TABLET — mantém as duas colunas e usa o banner horizontal 1200x600. */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero {
        min-height: 620px !important;
        height: clamp(620px, 65vw, 700px);
        background: #071f28;
    }

    .hero-bg img {
        object-position: center center;
    }

    .hero-overlay {
        background: linear-gradient(90deg,
            rgba(4,28,36,.66) 0%,
            rgba(4,28,36,.48) 42%,
            rgba(4,28,36,.62) 67%,
            rgba(4,28,36,.88) 100%);
    }

    .hero-grid {
        width: min(100% - 40px, 1180px);
        min-height: 100%;
        grid-template-columns: minmax(0,1fr) minmax(330px,.92fr) !important;
        gap: 24px !important;
        padding: 32px 0 !important;
        align-items: center;
    }

    .hero-copy h1 {
        font-size: clamp(37px, 4.4vw, 46px);
    }

    .hero-copy > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .simulator-card {
        max-width: 100%;
        padding: 21px 22px 22px;
    }

    .type-icons { gap: 6px; }
    .type-icon { height: 56px; }
}

/* MOBILE — banner 640x1000 em sua proporção real.
   O degradê existe apenas na parte superior, atrás dos textos.
   Depois da imagem, o fundo é claro; não há faixa verde/azul. */
@media (max-width: 767px) {
    .hero {
        min-height: 0 !important;
        height: auto !important;
        display: block !important;
        overflow: visible;
        background: #f4f8f8 !important;
    }

    .hero:after {
        display: none !important;
    }

    .hero-bg {
        inset: 0 0 auto 0 !important;
        height: 156.25vw !important; /* 1000 / 640 */
        max-height: none !important;
        background: transparent !important;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .hero-overlay {
        inset: 0 0 auto 0 !important;
        height: 136vw !important;
        max-height: none !important;
        background: linear-gradient(180deg,
            rgba(4,28,36,.82) 0%,
            rgba(4,28,36,.74) 30%,
            rgba(4,28,36,.60) 56%,
            rgba(4,28,36,.32) 78%,
            rgba(4,28,36,0) 100%) !important;
    }

    .hero-grid {
        width: min(100% - 28px, 1180px) !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 0 44px !important;
        margin: 0 auto;
    }

    .hero-copy {
        min-height: 156.25vw;
        padding: 54px 0 62px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-copy h1 {
        font-size: 36px;
        line-height: 1.12;
        letter-spacing: -1.4px;
        margin-bottom: 22px;
    }

    .hero-copy > p {
        font-size: 15.5px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 52px;
    }

    .simulator-card {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: none;
        margin: -34px 0 0;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(9,38,48,.16);
    }
}

@media (max-width: 420px) {
    .hero-copy {
        padding-top: 48px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }
}

/* =========================================================
   V4.7.0.15 — ajustes pontuais da hero
   - Desktop: preserva o topo da arte, sem fresta inferior.
   - Mobile: sobe o simulador sem reduzir o banner 640x1000.
   ========================================================= */

/* Evita qualquer fresta visual na transição da hero. */
.hero {
    margin-bottom: -1px;
    background: #071f28;
}

@media (min-width: 1200px) {
    /* Mantém a altura aprovada; apenas muda o ponto de corte.
       A arte fica presa ao topo, então não corta cabeças/parte superior. */
    .hero-bg img {
        object-fit: cover !important;
        object-position: center top !important;
    }

    .hero-bg {
        height: calc(100% + 2px) !important;
    }
}

@media (max-width: 767px) {
    /* O banner continua exatamente em 640x1000 (156.25vw).
       Só reduzimos a área reservada ao texto para o simulador entrar
       mais cedo sobre a parte inferior da própria imagem. */
    .hero-copy {
        min-height: 140vw !important;
        padding-bottom: 34px !important;
    }

    .simulator-card {
        margin-top: -18px !important;
    }
}

@media (max-width: 420px) {
    .hero-copy {
        min-height: 138vw !important;
        padding-bottom: 30px !important;
    }
}

/* =========================================================
   V4.7.0.16 — banners finais da hero
   Mantém layout/altura da V4.7.0.15.
   Apenas reforça levemente o contraste do texto no mobile.
   ========================================================= */
@media (max-width: 767px) {
    .hero-overlay {
        background: linear-gradient(180deg,
            rgba(4,28,36,.88) 0%,
            rgba(4,28,36,.80) 28%,
            rgba(4,28,36,.66) 54%,
            rgba(4,28,36,.36) 76%,
            rgba(4,28,36,0) 100%) !important;
    }
}

/* =========================================================
   V4.7.0.17 — formulário mobile em coluna única
   Nome, E-mail e WhatsApp ocupam 100% da largura.
   ========================================================= */
@media (max-width: 760px) {
    #simulationForm .sim-contact-fields {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    #simulationForm .sim-contact-fields .field,
    #simulationForm .sim-contact-fields .field.full {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-width: 0 !important;
    }
}
