/* =========================================
    VARIABLES & RESET
    ========================================= */
:root {
    --blue: #004474;
    --blue-mid: #005a99;
    --blue-light: #0070be;
    --gold: #f0c030;
    --gold-dark: #c89e18;
    --gold-glow: rgba(240, 192, 48, .35);
    --white: #ffffff;
    --off-white: #f4f7fa;
    --gray-light: #e4eaf0;
    --gray-mid: #7a8fa0;
    --dark: #222222;
    --text-body: #334455;
    --shadow: 0 8px 40px rgba(0, 68, 116, .15);
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text-body);
    background: var(--white);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================
TYPOGRAPHY
========================================= */
.label-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .35em 1.1em;
    border-radius: 100px;
    background: rgba(0, 68, 116, .1);
    color: var(--blue);
    border: 1px solid rgba(0, 68, 116, .18);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

/* ★ GOLD: label-tag hover gets a gold glow */
.label-tag:hover {
    background: rgba(240, 192, 48, .12);
    border-color: rgba(240, 192, 48, .4);
    color: var(--gold-dark);
}

.label-tag-white {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .9);
    border-color: rgba(255, 255, 255, .22);
}

.label-tag-white:hover {
    background: rgba(240, 192, 48, .18);
    border-color: rgba(240, 192, 48, .5);
    color: var(--gold);
}

h1,
h2,
h3,
h4 {
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.08;
    letter-spacing: -.01em;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 900;
    color: var(--blue);
    text-transform: uppercase;
}

.section-title-gold {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
}

/* ★ GOLD: em highlights inside titles */
.section-title-gold em {
    font-style: normal;
    color: var(--gold-dark);
}

.section-title em {
    font-style: normal;
    color: var(--gold-dark);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-mid);
    max-width: 560px;
    line-height: 1.7;
}

/* =========================================
BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55em;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .9em 2.2em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

/* ★ GOLD: todos os botões são amarelo (gold) */
.btn-blue {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(240, 192, 48, .35);
}

.btn-blue:hover {
    background: var(--gold-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(240, 192, 48, .5);
}

.btn-white {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(240, 192, 48, .35);
}

.btn-white:hover {
    background: var(--gold-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(240, 192, 48, .5);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline-white:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 1.12rem;
    padding: 1.05em 2.6em;
}

.btn-xl {
    font-size: 1.22rem;
    padding: 1.15em 3em;
}

.wa-btn-icon {
    width: 19px;
    height: 19px;
    fill: var(--dark);
    flex-shrink: 0;
}

/* =========================================
HERO
========================================= */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue);
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1600&q=80');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
    opacity: .45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgb(0 68 116 / 85%) 45%, rgb(0 90 153 / 31%) 100%);
}

.hero-shape {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape::before {
    content: '';
    position: absolute;
    right: -8%;
    top: -15%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
}

.hero-shape::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 112, 192, .2) 0%, transparent 70%);
}

/* ★ GOLD: subtle gold glow in hero top-right */
.hero-shape-gold {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape-gold::before {
    content: '';
    position: absolute;
    right: 5%;
    top: 8%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 192, 48, .08) 0%, transparent 65%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 5% 5rem;
}

.hero-logo {
    margin-bottom: 1.6rem;
    animation: fadeUp .5s ease both;
}

.hero-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .4));
}

.hero-tag {
    margin-bottom: 1.1rem;
    animation: fadeUp .6s .05s ease both;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.04;
    max-width: 740px;
    margin-bottom: 1.2rem;
    animation: fadeUp .6s .1s ease both;
}

/* ★ GOLD: "10 anos de garantia" in title gets gold */
.hero-title .gold {
    color: var(--gold);
}

/* Frase secundária dentro do h1 – menor impacto */
.hero-title-sub {
    display: block;
    font-size: .58em;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .72);
    margin-top: .35em;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.78;
    max-width: 600px;
    margin-bottom: 2.2rem;
    animation: fadeUp .6s .18s ease both;
}

.hero-sub strong {
    color: var(--gold);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeUp .6s .26s ease both;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.6rem;
    animation: fadeUp .6s .34s ease both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: .45em;
    font-size: .82rem;
    color: rgba(255, 255, 255, .68);
    font-weight: 500;
}

/* ★ GOLD: trust dots are gold */
.hero-trust-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    opacity: .8;
}

/* =========================================
CREDBAR (marquee ticker)
========================================= */
#credbar {
    background: var(--dark);
    padding: .8rem 0;
    overflow: hidden;
}

.credbar-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.credbar-item {
    display: flex;
    align-items: center;
    gap: .7em;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .78);
    text-transform: uppercase;
    flex-shrink: 0;
}

.credbar-item svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, .5);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ★ GOLD: credbar separator is gold */
.credbar-sep {
    color: var(--gold);
    opacity: .5;
}

/* =========================================
AUTHORITY BAR (abaixo do hero)
========================================= */
#authority-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    padding: 2.2rem 5%;
}

.authority-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    transition: background var(--transition), transform var(--transition);
}

.authority-item:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.authority-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(240, 192, 48, .12);
    border: 1.5px solid rgba(240, 192, 48, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.authority-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.authority-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.authority-text span {
    font-size: .78rem;
    color: var(--gray-mid);
    line-height: 1.4;
}

.authority-divider {
    width: 1px;
    height: 52px;
    background: var(--gray-light);
    display: block;
}

@media (max-width: 900px) {
    .authority-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .authority-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .authority-bar-inner {
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
    }

    .authority-item {
        flex-direction: column;
        text-align: center;
        padding: .9rem .7rem;
        gap: .5rem;
    }

    #authority-bar {
        padding: 1.5rem 4%;
    }
}

/* =========================================
TRUST BLOCKS (Sessão 2)
========================================= */
#trust {
    padding: 5rem 5%;
    background: var(--off-white);
}

.trust-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-header .label-tag {
    margin-bottom: 1rem;
}

.trust-header .section-title {
    margin-bottom: .5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-bottom: 2.8rem;
}

.trust-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 3px 18px rgba(0, 68, 116, .07);
    border-bottom: 3px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* ★ GOLD: trust-card hover border is gold */
.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 68, 116, .13);
    border-color: var(--gold);
}

.trust-icon {
    width: 58px;
    height: 58px;
    background: rgba(0, 68, 116, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: background var(--transition);
}

/* ★ GOLD: icon bg on hover gets gold tint */
.trust-card:hover .trust-icon {
    background: rgba(240, 192, 48, .12);
}

.trust-card:hover .trust-icon svg {
    stroke: var(--gold-dark);
}

.trust-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke var(--transition);
}

/* ★ GOLD: trust-num big numbers are gold */
.trust-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: .3rem;
}

.trust-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .5rem;
}

.trust-text {
    font-size: .84rem;
    color: var(--gray-mid);
    line-height: 1.6;
}

.trust-cta {
    text-align: center;
}

/* =========================================
DOR (Sessão 3)
========================================= */
#dor {
    padding: 6rem 5%;
    background: var(--white);
}

.dor-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 5rem;
    align-items: center;
}

.dor-content .label-tag {
    margin-bottom: 1rem;
}

.dor-content .section-title {
    margin-bottom: 1.2rem;
}

.dor-highlight {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.dor-highlight::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

/* ★ GOLD: the 40% number is gold */
.dor-highlight .big-pct {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 2px 12px rgba(240, 192, 48, .3);
}

.dor-highlight p {
    font-size: .98rem;
    color: rgba(255, 255, 255, .82);
    margin-top: .3rem;
    line-height: 1.55;
}

.dor-text {
    font-size: .98rem;
    line-height: 1.82;
    color: var(--text-body);
    margin-bottom: 1.4rem;
}

.dor-visual {
    position: relative;
}

.dor-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dor-img-wrap img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: transform .6s ease;
}

.dor-img-wrap:hover img {
    transform: scale(1.04);
}

.dor-float {
    position: absolute;
    bottom: -18px;
    left: -22px;
    background: var(--white);
    border-radius: 14px;
    padding: 1rem 1.3rem;
    box-shadow: 0 8px 36px rgba(0, 0, 0, .13);
    display: flex;
    align-items: center;
    gap: .8rem;
    min-width: 190px;
    animation: float 4s ease infinite;
}

/* ★ GOLD: float card left border accent */
.dor-float {
    border-left: 3px solid var(--gold);
}

.dor-float .float-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 68, 116, .08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dor-float .float-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dor-float strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--blue);
    display: block;
    line-height: 1;
}

.dor-float span {
    font-size: .73rem;
    color: var(--gray-mid);
}

/* =========================================
SOLUCOES (Sessão 4)
========================================= */
#solucoes {
    padding: 6rem 5%;
    background: var(--off-white);
}

.solucoes-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.solucoes-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.solucoes-header .label-tag {
    margin-bottom: 1rem;
}

.sol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}

.sol-carousel {
    display: none;
    position: relative;
}

.sol-carousel-track-wrap {
    overflow: hidden;
}

.sol-carousel-track {
    display: flex;
    gap: 1.2rem;
    transition: transform .42s cubic-bezier(.4, 0, .2, 1);
}

.sol-carousel-track .sol-card {
    flex: 0 0 calc(100% - 1.2rem);
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    margin-top: 1.5rem;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    background: var(--white);
    color: var(--blue);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* ★ GOLD: carousel arrows hover is gold */
.carousel-arrow:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.carousel-dots {
    display: flex;
    gap: .4rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

/* ★ GOLD: active carousel dot is gold */
.carousel-dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
}

.sol-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0, 0, 0, .07);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.sol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(0, 68, 116, .13);
}

/* ★ GOLD: featured card border is gold */
.sol-card.featured {
    border: 2px solid var(--gold);
}

.sol-card-img {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.sol-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.sol-card:hover .sol-card-img img {
    transform: scale(1.06);
}

.sol-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--blue);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3em .9em;
    border-radius: 100px;
}

.sol-card-body {
    padding: 1.7rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sol-card-icon {
    margin-bottom: .7rem;
}

.sol-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sol-card-title {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.sol-card-tagline {
    font-size: .88rem;
    color: var(--blue-mid);
    font-weight: 600;
    margin-bottom: .85rem;
}

.sol-card-text {
    font-size: .88rem;
    color: var(--text-body);
    line-height: 1.72;
    margin-bottom: 1rem;
}

.sol-specs {
    flex: 1;
    margin-bottom: 1.3rem;
}

.sol-specs li {
    display: flex;
    align-items: flex-start;
    gap: .5em;
    font-size: .81rem;
    color: var(--text-body);
    padding: .32rem 0;
    border-bottom: 1px solid var(--gray-light);
    line-height: 1.4;
}

.sol-specs li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    margin-top: .4rem;
    flex-shrink: 0;
}

.sol-economy {
    background: var(--blue);
    color: var(--white);
    border-radius: 10px;
    padding: .65rem 1rem;
    display: flex;
    align-items: center;
    gap: .6em;
    font-size: .81rem;
    margin-bottom: 1.1rem;
}

/* ★ GOLD: economy value percentage is gold */
.sol-economy .eco-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gold);
}

/* =========================================
POR QUE SOLIS (Sessão 5)
========================================= */
#solis {
    padding: 6rem 5%;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

.solis-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 40%, rgba(0, 112, 192, .35) 0%, transparent 60%);
}

.solis-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solis-header {
    max-width: 720px;
    margin-bottom: 3.5rem;
}

.solis-header .label-tag-white {
    margin-bottom: 1rem;
}

.solis-header .section-title {
    color: var(--white);
    margin-bottom: .7rem;
    margin-top: .4rem;
}

.solis-header .section-sub {
    color: rgba(255, 255, 255, .65);
}

.solis-header .section-body {
    margin-top: 1rem;
    font-size: .98rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.78;
    max-width: 640px;
}

.solis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.solis-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 2rem;
    transition: background var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.solis-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-4px);
}

/* ★ GOLD: solis card hover bottom bar is gold */
.solis-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.solis-card:hover::after {
    transform: scaleX(1);
}

.solis-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .1);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: background var(--transition);
}

/* ★ GOLD: solis card icon bg on hover gets gold tint */
.solis-card:hover .solis-card-icon {
    background: rgba(240, 192, 48, .15);
}

.solis-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, .9);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solis-card-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: .55rem;
}

.solis-card-text {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.72;
}

.solis-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 2.2rem;
}

.solis-stat {
    text-align: center;
}

/* ★ GOLD: stats numbers are gold */
.solis-stat .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.solis-stat .lbl {
    font-size: .74rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.4;
    margin-top: .3rem;
}

/* =========================================
PROCESSO (Sessão 6)
========================================= */
#processo {
    padding: 6rem 5%;
    background: var(--white);
}

.processo-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.processo-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.processo-header .label-tag {
    margin-bottom: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}

/* ★ GOLD: step connector line has gold in gradient */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 49px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 50%, var(--blue-light) 100%);
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 1.4rem 1rem;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    border: 3px solid var(--white);
    outline: 3px solid var(--blue);
    transition: background var(--transition), transform var(--transition), outline-color var(--transition);
    box-shadow: 0 3px 16px rgba(0, 68, 116, .22);
}

/* ★ GOLD: step number hover is gold */
.step-card:hover .step-num {
    background: var(--gold);
    color: var(--dark);
    outline-color: var(--gold-dark);
    box-shadow: 0 3px 20px var(--gold-glow);
}

.step-icon {
    margin-bottom: .6rem;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin: 0 auto;
}

.step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.step-text {
    font-size: .84rem;
    color: var(--gray-mid);
    line-height: 1.6;
}

.processo-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =========================================
DIFERENCIAIS (Sessão 7)
========================================= */
#diferenciais {
    padding: 6rem 5%;
    background: var(--off-white);
}

.diferenciais-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.dif-header {
    margin-bottom: 2rem;
}

.dif-header .label-tag {
    margin-bottom: .8rem;
}

.dif-header .section-title {
    margin-bottom: .5rem;
}

.dif-list {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.dif-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: transform var(--transition), box-shadow var(--transition), border-left var(--transition);
    border-left: 3px solid transparent;
}

/* ★ GOLD: dif-item hover gets gold left border */
.dif-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 22px rgba(0, 68, 116, .1);
    border-left-color: var(--gold);
}

.dif-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 68, 116, .08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

/* ★ GOLD: dif icon bg on hover gets gold tint */
.dif-item:hover .dif-icon {
    background: rgba(240, 192, 48, .12);
}

.dif-item:hover .dif-icon svg {
    stroke: var(--gold-dark);
}

.dif-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke var(--transition);
}

.dif-item h4 {
    font-size: .98rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: .18rem;
}

.dif-item p {
    font-size: .82rem;
    color: var(--gray-mid);
    line-height: 1.5;
}

.dif-visual {
    position: relative;
}

.dif-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dif-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* ★ GOLD: dif float card is gold */
.dif-float {
    position: absolute;
    top: -18px;
    right: -18px;
    background: var(--gold);
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    text-align: center;
    box-shadow: 0 8px 28px var(--gold-glow);
}

.dif-float strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--dark);
    display: block;
    line-height: 1;
}

.dif-float span {
    font-size: .7rem;
    color: rgba(34, 34, 34, .7);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* =========================================
FAQ (Sessão 8)
========================================= */
#faq {
    padding: 6rem 5%;
    background: var(--white);
}

.faq-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.faq-left .label-tag {
    margin-bottom: .8rem;
}

.faq-left .section-title {
    margin-bottom: .6rem;
}

.faq-left .section-sub {
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.faq-item {
    background: var(--off-white);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 18px rgba(0, 68, 116, .1);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.05rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-q-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.3;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

/* ★ GOLD: open FAQ icon is gold */
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--dark);
}

/* ★ GOLD: open FAQ item has gold left border */
.faq-item.open {
    border-left: 3px solid var(--gold);
    box-shadow: 0 4px 18px rgba(240, 192, 48, .12);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding: 0 1.25rem;
}

.faq-item.open .faq-a {
    max-height: 320px;
    padding-bottom: 1.1rem;
}

.faq-a p {
    font-size: .87rem;
    color: var(--text-body);
    line-height: 1.78;
    border-top: 1px solid var(--gray-light);
    padding-top: .85rem;
}

/* =========================================
CTA FINAL (Sessão 9)
========================================= */
#cta-final {
    padding: 5.5rem 5%;
    background: var(--blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 112, 192, .3) 0%, transparent 65%);
}

.cta-final-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, .02) 40px, rgba(255, 255, 255, .02) 41px);
}

.cta-final-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-final-inner .label-tag-white {
    margin-bottom: 1.2rem;
}

.cta-final-inner .section-title {
    color: var(--white);
    margin-bottom: .6rem;
    margin-top: .4rem;
}

.cta-final-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.72;
    margin-bottom: 2.2rem;
}

.cta-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-tiny {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
    margin-top: .9rem;
    letter-spacing: .03em;
}

/* ★ GOLD: CTA final button (btn-white on blue bg) gets gold ring on hover */
#cta-final .btn-white:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15), 0 0 0 3px var(--gold);
}

/* =========================================
FOOTER
========================================= */
#footer {
    background: var(--dark);
    padding: 3rem 5% 1.5rem;
    color: rgba(255, 255, 255, .62);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 58px;
    width: auto;
    margin-bottom: .9rem;
}

.footer-brand p {
    font-size: .84rem;
    line-height: 1.72;
    max-width: 280px;
}

.footer-col h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-col li {
    font-size: .84rem;
    display: flex;
    align-items: center;
    gap: .5em;
}

.footer-col li svg {
    width: 13px;
    height: 13px;
    stroke: rgba(255, 255, 255, .35);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.footer-col a {
    color: rgba(255, 255, 255, .58);
    transition: color var(--transition);
}

/* ★ GOLD: footer links hover is gold */
.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .77rem;
}

.footer-revenda {
    font-size: .77rem;
    color: rgba(255, 255, 255, .45);
}

/* =========================================
WHATSAPP FLOAT
========================================= */
.wa-float {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(37, 211, 102, .42);
    animation: pulse-wa 2.8s ease infinite;
    transition: transform var(--transition);
}

.wa-float:hover {
    transform: scale(1.1);
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--white);
    color: var(--blue);
    padding: .45em .95em;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
MOBILE MENU
========================================= */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--blue);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ★ GOLD: mobile menu link hover is gold */
.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-close {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* =========================================
SCROLL REVEAL
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: none;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

/* =========================================
KEYFRAMES
========================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 6px 22px rgba(37, 211, 102, .42);
    }

    50% {
        box-shadow: 0 6px 36px rgba(37, 211, 102, .72);
    }
}

/* =========================================
RESPONSIVE
========================================= */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dor-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dor-visual {
        display: none;
    }

    .solis-grid {
        grid-template-columns: 1fr 1fr;
    }

    .solis-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diferenciais-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dif-visual {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta-desktop {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .sol-grid {
        display: none;
    }

    .sol-carousel {
        display: block;
    }

    .solis-grid {
        grid-template-columns: 1fr;
    }

    .solis-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .cta-final-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 540px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 1em 1.8em;
    }

    .btn {
        padding: .9em 1.8em;
        font-size: .95rem;
    }

    .solis-stats {
        grid-template-columns: 1fr;
    }
}