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

:root {
    --gold: #2b84c6;
    --gold-light: #89C4EE;
    --gold-dark: #1A5F96;
    --onyx: #0D1117;
    --onyx-soft: #141c24;
    --onyx-mid: #1E2A35;
    --silver: #F4F7FA;
    --silver-mid: #E0E8F0;
    --silver-dark: #8BA3BB;
    --text-dark: #0D1117;
    --text-muted: #4A6070;
    --text-light: #F4F7FA;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 1rem;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--onyx);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    contain: layout style paint;
}

/* Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3 {
    font-family: 'Inter', sans-serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(3.2rem, 6vw, 5rem);
    font-weight: 600;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
}

.label {
    position: relative;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── LAYOUT ── */
.container {
    width: 1200px;
    margin: 0 auto;
    contain: layout;
}

section {
    padding: 6rem 0;
    contain: layout style paint;
}

/* ── BUTTONS ── */
.btn-primary {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--gold);
    color: var(--onyx);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 1rem 2.4rem;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    will-change: transform, background;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-outline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.95rem 2.2rem;
    border: 1px solid var(--gold);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--onyx);
}

.gold-line.center {
    margin: 1.2rem auto 1.6rem;
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: #25D366;
    color: var(--silver);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    transition: transform 0.2s;
}

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

.wa-float svg {
    width: 30px;
    height: 30px;
}

@media (max-width:768px) {
    .container {
        width: calc(100% - 2rem);
    }

    .btn-primary,
    .btn-outline {
        text-align: center;
        width: 100%;
        padding: 1rem;
        font-size: .85rem;
    }

    .wa-float {
        bottom: 1rem;
        right: 1rem;
    }
}

/* ═══════════════════════════
    HERO
═══════════════════════════ */
header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding: 2rem 0 4rem;
    background: var(--onyx);
    overflow: hidden;
}

header .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

header .label {
    color: var(--silver-dark);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 40px;
}

header .label::after {
    width: 32px;
    height: 2px;
    position: absolute;
    margin: auto 0;
    top: 0;
    bottom: 0;
    left: -40px;
    background: var(--gold);
    content: '';
}

header .hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .9rem;
}

header .hero-title h1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: var(--silver);
}

header .hero-title h1 span:not(.proof-item span) {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

header .hero-title h1 span:last-child:not(.proof-item span) {
    color: var(--gold-light);
    justify-content: flex-end;
}

/* header h1 span:first-child small {
    width: 360px;
} */

/* header h1 span small {
    font-size: .9rem;
    text-transform: none;
    color: var(--silver-dark);
    font-weight: 400;
    width: 300px;
} */

header .hero-title p {
    width: 100%;
    text-align: left;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--silver-dark);    
}

header .hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

header .proof-item {
    display: flex;
    flex-direction: column;
}

header .proof-item .number {
    font-family: 'Inter', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

header .proof-item .desc {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: .2rem;
    font-size: 0.8rem;
    color: var(--silver-dark);
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

header .proof-item .desc span {
    width: fit-content;
    font-size: 1rem;
}

header .hero-img {
    width: 100%;
    height: 600px;
    position: relative;
    box-shadow: 0 0 0 2px var(--onyx-mid);
    border: 8px solid #0D1117;
}

header .hero-img img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .hero-img .logo-animada {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
    border-radius: 200px;
}

header .hero-img .logo-animada .texto-animado {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gold-dark);
    padding: 0.1rem;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .hero-img .logo-animada .texto-animado img {
    width: 108%;
    height: 108%;
    object-fit: cover;
    animation: slow-rotate 18s linear infinite;
}

header .hero-img .logo-animada .logo-estatica {
    position: relative;
    width: 64px;
    height: 64px;
    background: var(--silver);
    border-radius: 120px;
    padding: .7rem;
    z-index: 2;
}

header .hero-img .logo-animada .logo-estatica img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width:768px) {
    header .label {
        font-size: .55rem;
        margin-left: 0;
    }

    header .label::after {
        width: 48px;
        margin: 0;
        left: 0;
        top: -8px;
        bottom: auto;
    }

    header .hero-title {
        padding-top: 2rem;
    }
    
    header h1 span {
        position: relative;
        gap: 1rem;
        text-align: left;
    }

    header .proof-item {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: .5rem;
        margin-top: 1rem;
        position: absolute;
        bottom: calc(100% + 1rem);
        left: 0;
    }

    header .proof-item .number {
        width: fit-content;
    }

    header .proof-item .desc {
        width: fit-content;
        font-size: .65rem;
    }

    header .hero-title p {
        text-transform: none;
        font-size: 1rem;
    }
    
}


/* ═══════════════════════════
    DOR — SEÇÃO ESPELHO
═══════════════════════════ */
/* #dor {
    background: var(--silver);
    color: var(--text-dark);
    padding: 5rem 0;
}

#dor .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

#dor .header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

#dor .titulo {
    width: 600px;
}

#dor .header p {
    width: 500px;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

#dor h2 {
    text-align: left;
    color: var(--onyx);
}

#dor .conteudo {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

#dor .intro {
    width: 630px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#dor .conteudo>img {
    width: 540px;
    height: 521px;
    object-fit: cover;
}

#dor .itens {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

#dor .itens .item {
    display: flex;
}

#dor .itens .item:first-child {
    padding: 3rem 2rem 0;
    flex-direction: column;
    border: 1px solid var(--silver-mid);
}

#dor .itens .item:first-child>p {
    font-size: 1.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

#dor .itens .item .detalhes {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: -.5rem;
}

#dor .itens .item:first-child .texto {
    width: 100%;
    border-top: 1px solid var(--text-dark);
    padding: 1rem 0 2rem;
}

#dor .itens .item:first-child .texto p {
    font-size: 1rem;
    color: var(--text-dark);
}

#dor .itens .item:first-child .texto p:first-child {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--silver-dark);
}

#dor .itens .item .detalhes img {
    width: 240px;
}

#dor .itens .item:not(:first-child):not(:last-child) {
    background-color: transparent;
    border: 1px solid var(--silver-mid);
    color: var(--text-dark);
}

#dor .itens .item:not(:first-child) {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-end;
    width: 307px;
    background-color: var(--onyx-mid);
    color: var(--text-light);
}

#dor .itens .item:not(:first-child) img {
    width: 44px;
    height: 44px;
    border-radius: 100px;
    border: 1px solid var(--silver-mid);
}

#dor .itens .item p {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width:768px) {
    #dor .header {
        gap: 1rem;
    }

    #dor .header, #dor .conteudo {
        flex-direction: column;
        align-items: flex-start;
    }

    #dor .titulo, #dor .header p, #dor .intro {
        width: 100%;
    }

    #dor .itens .item:first-child {
        padding: 1.5rem 1rem 0;
        gap: 1rem;
    }

    #dor .itens .item:first-child>p {
        font-size: 1.35rem;
    }

    #dor .itens .item:not(:first-child) {
        width: 100%;
        flex-direction: row-reverse;
        gap: 1rem;
        align-items: flex-start;
    }

    #dor .itens .item .detalhes {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 0;
    }

    #dor .conteudo>img {
        width: 100%;
        height: auto;
    }
} */

/* ═══════════════════════════
    SERVIÇOS
═══════════════════════════ */
#servicos {
    background: var(--onyx-soft);
    padding: 6rem 0;
}

#servicos .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

#servicos .titulo {
    width: 700px;
    text-align: center;
}

#servicos .conteudo {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* #servicos .conteudo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    object-position: 0 245px;
    z-index: 2;
} */


#servicos .cards {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    z-index: 0;
}

#servicos .card {
    width: 100%;
    border: 1px solid var(--gold);
    padding: 2rem;
}

#servicos .card:hover {
    background-color: var(--gold-dark);
    cursor: pointer;
}

/* Unified card hover + focus (accessible contrast) */
#servicos .card,
#diferenciais .card,
#garantias .card,
.depo-card {
    transition: background 200ms ease, transform 150ms ease, box-shadow 180ms ease;
    cursor: pointer;
}

#servicos .card:hover,
#diferenciais .card:hover,
#garantias .card:hover,
.depo-card:hover,
#servicos .card:focus-visible,
#diferenciais .card:focus-visible,
#garantias .card:focus-visible,
.depo-card:focus-visible {
    background-color: var(--gold-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(10, 20, 30, 0.45);
    outline: none;
}

#servicos .card:hover h3,
#diferenciais .card:hover h3,
#garantias .card:hover h3,
.depo-card:hover h3,
#servicos .card:focus-visible h3,
#diferenciais .card:focus-visible h3,
#garantias .card:focus-visible h3,
.depo-card:focus-visible h3 {
    color: var(--text-light);
}

#servicos .card:hover p,
#diferenciais .card:hover p,
#garantias .card:hover p,
.depo-card:hover p,
#servicos .card:focus-visible p,
#diferenciais .card:focus-visible p,
#garantias .card:focus-visible p,
.depo-card:focus-visible p {
    color: rgba(255, 255, 255, 0.9);
}

#servicos .card:hover .icon span,
#diferenciais .card:hover .icon span,
#garantias .card:hover .icon span,
.depo-card:hover .icon span,
#servicos .card:focus-visible .icon span,
#diferenciais .card:focus-visible .icon span,
#garantias .card:focus-visible .icon span,
.depo-card:focus-visible .icon span {
    color: var(--text-light);
}

/* Keyboard accessibility: visible focus ring */
#servicos .card:focus-visible,
#diferenciais .card:focus-visible,
#garantias .card:focus-visible,
.depo-card:focus-visible {
    box-shadow: 0 0 0 4px rgba(43, 132, 198, 0.12), 0 10px 28px rgba(10, 20, 30, 0.35);
}

/* Entrance animations (performant: only transform + opacity) */
.reveal {
    opacity: 0;
    transform: translateY(12px) scale(0.995);
    will-change: opacity, transform;
    transition: opacity 420ms cubic-bezier(.2,.9,.2,1), transform 420ms cubic-bezier(.2,.9,.2,1);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Reduce motion preference: disable animations */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

#servicos .icon {
    width: 64px;
    height: 64px;
    background: rgba(43, 132, 198, 0.1);
    border: 1px solid rgba(43, 132, 198, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

#servicos .icon span {
    font-size: 24px;
    color: var(--gold);
}

#servicos .card h3 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 0.5rem;
}

#servicos .card p {
    font-size: 0.88rem;
    color: var(--silver-dark);
    line-height: 1.6;
}

@media (max-width:768px) {
    #servicos .titulo {
        width: 100%;
    }
    #servicos .cards {
        flex-direction: column;
    }

    #servicos .conteudo {
        flex-direction: column;
        gap: 1rem;
    }

    /* #servicos .conteudo img {
        position: relative;
        object-position: 0;
    } */
}

/* ═══════════════════════════
    NÚMEROS
═══════════════════════════ */
#numeros {
    background: var(--gold);
    padding: 4rem 0;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
}

.numero-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.numero-item:last-child {
    border-right: none;
}

.numero-item .big {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--silver);
    line-height: 1;
}

.numero-item .small {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width:768px) {
    .numeros-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .numero-item .big {
        font-size: 2rem;
    }

    .numero-item .small {
        font-size: 0.75rem;
    }

    .numero-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}

/* ═══════════════════════════
    DIFERENCIAIS
═══════════════════════════ */
#diferenciais {
    background: var(--onyx);
    padding: 6rem 0;
}

#diferenciais .header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

#diferenciais .header .titulo {
    max-width: 610px;
}

#diferenciais .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
}

#diferenciais .conteudo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

#diferenciais .card {
    width: 588px;
    background: var(--onyx-soft);
    border: 1px solid var(--onyx-mid);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

#diferenciais .card .texto {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 2rem 0 2rem 2rem;
}

#diferenciais .card img {
    width: 240px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

.dif-num {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(43, 132, 198, 0.3);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -4px;
}

.dif-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 0.5rem;
}

.dif-content p {
    font-size: 0.9rem;
    color: var(--silver-dark);
    line-height: 1.6;
}

@media (max-width:768px) {
    #diferenciais .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    #diferenciais .card {
        width: 100%;
        flex-direction: column;
    }

    #diferenciais .card .texto {
        padding: 1rem;
    }

    #diferenciais .card img {
        width: 100%;
    }
}

/* ═══════════════════════════
    SOBRE
═══════════════════════════ */
#sobre {
    background: var(--silver);
    color: var(--text-dark);
    padding: 6rem 0;
}

#sobre .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#sobre h2 {
    color: var(--onyx);
}

#sobre .label {
    color: var(--gold-dark);
}

#sobre .imgs {
    width: 540px;
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

#sobre .imgs img {
    position: relative;
    width: 97%;
    height: 400px;
    object-fit: cover;
    object-position: 0 -120px;
}

#sobre .imgs img:first-of-type {
    position: absolute;
    bottom: 0px;
    left: -50px;
    border: 5px solid var(--silver);
    z-index: 2;
    object-position: 0 -210px;
}

#sobre .destaques {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: .5rem;
}

#sobre .destaque {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
    padding: 1.5rem 1rem;
    background-color: var(--silver-mid);
    color: var(--text-muted);
    font-size: .95rem;
}

#sobre .destaque .titulo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .25rem;
}

#sobre .destaque strong {
    color: var(--gold);
    font-size: 1.05rem;
    text-transform: uppercase;
}

#sobre .destaque .material-icons-outlined {
    font-size: 1.2rem;
    color: var(--gold);
}

#sobre .conteudo {
    width: 630px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

#sobre .conteudo .texto {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width:768px) {
    #sobre .container {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    #sobre .conteudo {
        width: 100%;
        gap: 2rem;
    }

    #sobre .destaques {
        flex-direction: column;
    }

    #sobre .imgs {
        width: 100%;
        height: auto;
        gap: 0;
    }

    #sobre .imgs img {
        width: 100%;
        height: auto;
        object-position: center !important;
    }

    #sobre .imgs img:first-of-type {
        position: relative;
        left: 0;
        border: none;
    }
}

/* ═══════════════════════════
    MEDOS / OBJEÇÕES
═══════════════════════════ */
/* #garantias {
    background: var(--onyx-soft);
    padding: 6rem 0;
}

#garantias .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

#garantias .conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#garantias .garantias {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

#garantias img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-57%, -50%);
    z-index: 4;
    pointer-events: none;
}

#garantias .card {
    width: 100%;
    padding: 2rem 3.5rem;
    border: 1px solid var(--onyx-mid);
    background: rgba(43, 132, 198, 0.05);
    border-color: rgba(43, 132, 198, 0.25);
}

#garantias .card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

#garantias .card p {
    font-size: 0.92rem;
    color: var(--silver-dark);
    line-height: 1.7;
}

#garantias .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    background: rgba(43, 132, 198, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

#garantias .icon span {
    font-size: 24px;
    color: var(--gold);
}

@media (max-width:768px) {
    #garantias .garantias {
        flex-direction: column;
    }

    #garantias .card {
        padding: 1.5rem;
    }

    #garantias img {
        top: auto;
        left: auto;
        bottom: -170px;
        right: -100px;
        transform: none;
    }
} */

/* ═══════════════════════════
    DEPOIMENTOS
═══════════════════════════ */
#depoimentos {
    background: var(--onyx);
    padding: 6rem 0;
}

#depoimentos .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

#depoimentos .depoimentos {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#depoimentos .depoimentos .controles {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.depo-card {
    background: var(--onyx-soft);
    border: 1px solid var(--onyx-mid);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.depo-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.depo-text {
    font-size: 0.95rem;
    color: var(--silver-dark);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}

/* Truncamento para até 5 linhas com botão 'Ler mais' */
.depo-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.depo-text.expanded {
    display: block;
}

.read-more {
    margin-top: 0.75rem;
    background: transparent;
    border: none;
    color: var(--gold);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}
.read-more:focus { outline: none; }

.depo-author {
    font-size: 0.85rem;
    color: var(--silver);
    font-weight: 500;
    border-top: 1px solid var(--onyx-mid);
    padding-top: 1rem;
}

.depo-author span {
    color: var(--silver-dark);
    font-weight: 400;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    width: 100%;
    touch-action: pan-x;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 320px;
    background: var(--onyx-soft);
    border: 1px solid var(--onyx-mid);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    user-select: none;
}

.carousel-slide.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

@media (min-width: 760px) {
    .carousel-slide {
        min-width: calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (min-width: 1200px) {
    .carousel-slide {
        min-width: calc(33.33% - 0.75rem);
        max-width: calc(33.33% - 0.75rem);
    }
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--onyx);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-meta-text {
    display: grid;
    gap: 0.2rem;
}

.review-name {
    font-weight: 600;
    color: var(--silver);
}

.review-source {
    font-size: 0.85rem;
    color: var(--silver-dark);
}

.review-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.review-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--silver);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.carousel-control {
    background: rgba(255, 255, 255, 0.08);
    color: var(--silver);
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.carousel-control:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.14);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transition: background 0.2s;
}

.carousel-indicator.active {
    background: var(--gold);
}

@media (max-width:768px) {
    #depoimentos .cta-banner-btns a {
        font-size: .75rem;
    }
}

/* ═══════════════════════════
    CTA INTERMEDIÁRIO
═══════════════════════════ */
.cta-banner {
    background: var(--onyx-mid);
    border: 1px solid rgba(43, 132, 198, 0.25);
    padding: 3rem;
    text-align: center;
    margin: 3.5rem 0 0;
}

.cta-banner h2 {
    color: var(--silver);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 0.8rem;
}

.cta-banner p {
    color: var(--silver-dark);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ═══════════════════════════
    MARCAS
═══════════════════════════ */
#marcas {
    background: var(--silver);
    padding: 4rem 0;
}

#marcas .label {
    color: var(--gold-dark);
    text-align: center;
    display: block;
    margin-bottom: 0.5rem;
}

#marcas h2 {
    color: var(--onyx);
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
}

.marcas-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
}

#marcas .pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    background: var(--silver);
    border: 1px solid var(--silver-mid);
    padding: .5rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

#marcas .pill img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}


/* ═══════════════════════════
    CTA FINAL
═══════════════════════════ */
/* #cta-final {
    background: var(--onyx);
    padding: 6rem 0;
    text-align: center;
}

#cta-final h2 {
    width: 800px;
    color: var(--silver);
    margin: 0 auto 1rem;
}

#cta-final p {
    color: var(--silver-dark);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

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

@media (max-width:768px) {
    #cta-final h2 {
        width: 100%;
    }
} */

/* ═══════════════════════════
    FOOTER
═══════════════════════════ */
footer {
    background: var(--onyx-soft);
    border-top: 1px solid var(--onyx-mid);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--silver-dark);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
}

.footer-col a,
.footer-col p {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    font-size: 0.88rem;
    color: var(--silver-dark);
    text-decoration: none;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--gold);
}

footer a {
    color: var(--silver-dark);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid var(--onyx-mid);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--silver-dark);
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 600px) {
    section {
        padding: 4rem 0;
    }

    .hero-cta-group,
    .cta-banner-btns,
    .cta-final-btns {
        flex-direction: column;
    }

    
}

@keyframes slow-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}