/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
    margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

#root,
#__next {
    isolation: isolate;
}

/* ── ROOT ───────────────────────────────────────────── */
:root {
    --cor-principal: #284703;
    --cor-principal-escura: #223b02;
    --cor-principal-clara: #3a6605;

    --cor-secundaria: #c8a45c;
    --cor-secundaria-escura: #9f834b;
    --cor-secundaria-clara: #e1b866;

    --cor-branca: #ffffff;
    --cor-preta: #000000;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--cor-principal);
    color: var(--cor-branca);
}

/* ── TOPBAR ─────────────────────────────────────────── */
.topbar {
    position: relative;
    width: 100%;
    height: 44px;
    background-color: var(--cor-principal-escura);
    border-bottom: 1px solid rgba(200, 164, 92, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.topbar__slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar__item {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 13.5px;
    color: rgba(225, 184, 102, 0.9);
    letter-spacing: 0.4px;
    padding: 0 48px;
    white-space: nowrap;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.topbar__item--active {
    transform: translateY(0);
    opacity: 1;
}

.topbar__item--exit {
    transform: translateY(-100%);
    opacity: 0;
}

.negrito {
    font-weight: 700;
}

.maiusculo {
    text-transform: uppercase;
}

.topbar__timer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

.topbar__timer-block {
    background: rgba(200, 164, 92, 0.2);
    border: 1px solid rgba(200, 164, 92, 0.4);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cor-secundaria-clara);
    font-variant-numeric: tabular-nums;
    min-width: 26px;
    text-align: center;
}

.topbar__timer-sep {
    color: rgba(200, 164, 92, 0.6);
    font-weight: 700;
    font-size: 13px;
    animation: topbar-blink 1s step-end infinite;
}

@keyframes topbar-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.topbar__dots {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}

.topbar__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(200, 164, 92, 0.3);
    transition: background 0.3s;
}

.topbar__dot--active {
    background: var(--cor-secundaria);
}

/* ── HEADER ─────────────────────────────────────────── */
header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 80px 6vw;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 70% 50%,
            rgba(200, 164, 92, 0.25) 0%,
            rgba(58, 102, 5, 0.3) 35%,
            rgba(34, 59, 2, 0.95) 70%),
        linear-gradient(135deg, var(--cor-principal-escura) 0%, var(--cor-principal) 50%, var(--cor-principal-escura) 100%);
    animation: bg-shift 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes bg-shift {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    25% {
        filter: hue-rotate(15deg) brightness(1.1);
    }

    50% {
        filter: hue-rotate(-10deg) brightness(0.95);
    }

    75% {
        filter: hue-rotate(20deg) brightness(1.12);
    }

    100% {
        filter: hue-rotate(8deg) brightness(1.05);
    }
}

header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(200, 164, 92, 0.12) 1px, transparent 1px),
        radial-gradient(circle, rgba(225, 184, 102, 0.08) 1px, transparent 1px);
    background-size: 60px 60px, 100px 100px;
    background-position: 0 0, 30px 30px;
    animation: particles-drift 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes particles-drift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-60px);
    }
}

/* ── IMAGEM ─────────────────────────────────────────── */
.imagem {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    max-width: 680px;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.img-mentora {
    width: 100%;
    height: 100%;
    max-height: 95vh;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(-30px 0 60px rgba(200, 164, 92, 0.4));
    animation: mentora-appear 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes mentora-appear {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.97);
        filter: drop-shadow(-30px 0 60px rgba(200, 164, 92, 0)) blur(8px);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: drop-shadow(-30px 0 60px rgba(200, 164, 92, 0.4));
    }
}

.imagem::before {
    content: '';
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 75%;
    height: 90%;
    background: radial-gradient(ellipse 60% 80% at 60% 80%,
            rgba(200, 164, 92, 0.2) 0%,
            rgba(58, 102, 5, 0.15) 40%,
            transparent 70%);
    animation: aura-pulse 4s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes aura-pulse {
    from {
        opacity: 0.6;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.06);
    }
}

/* ── TITULO ─────────────────────────────────────────── */
.titulo {
    position: relative;
    z-index: 2;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.titulo h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cor-branca);
    letter-spacing: -0.5px;
    animation: text-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    text-shadow: 0 0 40px rgba(200, 164, 92, 0.35);
}

.titulo h2 {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.55;
    color: var(--cor-branca);
    letter-spacing: 0.2px;
    animation: text-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes text-rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── BOTÃO CTA ──────────────────────────────────────── */
.titulo a {
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    animation: text-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.CTA {
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    color: var(--cor-principal-escura);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    animation: heartbeat 1.4s ease-in-out infinite;
    box-shadow:
        0 0 0 0 rgba(200, 164, 92, 0.5),
        0 8px 32px rgba(200, 164, 92, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.CTA::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: inherit;
    pointer-events: none;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 164, 92, 0.55), 0 8px 32px rgba(200, 164, 92, 0.35);
    }

    14% {
        transform: scale(1.06);
        box-shadow: 0 0 0 8px rgba(200, 164, 92, 0.2), 0 8px 32px rgba(200, 164, 92, 0.45);
    }

    28% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(200, 164, 92, 0.1), 0 8px 32px rgba(200, 164, 92, 0.35);
    }

    42% {
        transform: scale(1.04);
        box-shadow: 0 0 0 6px rgba(200, 164, 92, 0.15), 0 8px 32px rgba(200, 164, 92, 0.45);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 164, 92, 0), 0 8px 32px rgba(200, 164, 92, 0.35);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 164, 92, 0), 0 8px 32px rgba(200, 164, 92, 0.35);
    }
}

.CTA:hover {
    animation: none;
    transform: scale(1.07);
    box-shadow: 0 0 0 10px rgba(200, 164, 92, 0.15), 0 12px 40px rgba(200, 164, 92, 0.5);
}

.CTA:active {
    transform: scale(0.97);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 40px 6vw 48px;
        min-height: 100svh;
    }

    .imagem {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: unset;
        align-items: flex-start;
        justify-content: center;
        opacity: 0.5;
    }

    .img-mentora {
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
    }

    .titulo {
        position: relative;
        z-index: 2;
        max-width: 100%;
        gap: 16px;
        align-self: center;
        text-align: center;
    }

    .titulo h1 {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
    }

    .titulo h2 {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .titulo a {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* ── SEC-VIDEO ──────────────────────────────────────── */
.sec-video {
    position: relative;
    background: var(--cor-principal-escura);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 96px 6vw 80px;
    overflow: hidden;
}

.sec-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%,
            rgba(200, 164, 92, 0.1) 0%, transparent 70%);
    animation: bg-shift 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.sec-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(200, 164, 92, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.sec-video h2 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cor-branca);
    text-align: center;
    text-shadow: 0 0 40px rgba(200, 164, 92, 0.25);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sec-video h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-video h2::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    border-radius: 2px;
    margin: 14px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.sec-video h2.visible::after {
    transform: scaleX(1);
}

.video-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 9 / 16;
    /* formato vertical */
    max-width: 400px;
    /* controla largura */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(32px) scale(0.98);
    transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
    animation: video-glow 4s ease-in-out infinite alternate;
}

.video-wrapper.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes video-glow {
    from {
        box-shadow: 0 0 0 1px rgba(200, 164, 92, 0.25), 0 24px 60px rgba(200, 164, 92, 0.2);
    }

    to {
        box-shadow: 0 0 0 1px rgba(200, 164, 92, 0.55), 0 28px 80px rgba(200, 164, 92, 0.4);
    }
}

.video-wrapper:hover .video-play-overlay {
    opacity: 1;
}

.video-wrapper:hover .video-mentoria {
    transform: scale(1.02);
}

.video-mentoria {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* preenche tudo (sem borda preta) */
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(34, 59, 2, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.video-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(200, 164, 92, 0.5);
    animation: play-pulse 1.6s ease-in-out infinite;
}

@keyframes play-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(200, 164, 92, 0.5);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 8px 44px rgba(200, 164, 92, 0.7);
    }
}

.video-play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent var(--cor-principal-escura);
    margin-left: 5px;
}

.video-play-overlay span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .sec-video {
        padding: 72px 4vw 60px;
        gap: 28px;
    }

    .video-play-btn {
        width: 56px;
        height: 56px;
    }
}

/* ── SEC-EMOCAO ─────────────────────────────────────── */
.sec-emocao {
    position: relative;
    background: #f5f0e8;
    overflow: hidden;
    padding: 80px 6vw 72px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.sec-emocao::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sec-emocao::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(58, 102, 5, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sec-emocao>div:first-child {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.sec-emocao h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cor-principal-escura);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sec-emocao h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-emocao h2 em {
    font-style: normal;
    color: var(--cor-principal-clara);
    position: relative;
}

.sec-emocao h2 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}

.sec-emocao h2.visible em::after {
    transform: scaleX(1);
}

.sec-emocao p {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.85;
    color: #3a3020;
    max-width: 640px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.25s, transform 0.8s ease 0.25s;
}

.sec-emocao p.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-emocao p strong {
    color: var(--cor-principal-escura);
    font-weight: 700;
}

.sec-emocao p .dor {
    color: #7a3b1e;
    font-weight: 600;
}

.sec-emocao>div:first-child::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-principal-clara), var(--cor-secundaria));
    border-radius: 2px;
    margin-top: 36px;
    opacity: 0;
    transition: opacity 0.6s ease 0.5s;
}

.sec-emocao>div:first-child.visible::after {
    opacity: 1;
}

.sec-emocao>div:last-child {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.sec-emocao>div:last-child.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-emocao span {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--cor-principal);
    font-style: italic;
    letter-spacing: 0.2px;
}

.sec-emocao .CTA {
    background: linear-gradient(135deg, var(--cor-principal-clara), var(--cor-principal));
    color: var(--cor-branca);
    font-size: 1rem;
    padding: 14px 32px;
}

@media (max-width: 768px) {
    .sec-emocao {
        padding: 60px 6vw 56px;
        gap: 36px;
    }

    .sec-emocao>div:last-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ── SEC-LOGICA ─────────────────────────────────────── */
.sec-logica {
    position: relative;
    background: var(--cor-principal);
    overflow: visible;
    padding: 96px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.sec-logica::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%,
            rgba(200, 164, 92, 0.15) 0%,
            rgba(58, 102, 5, 0.1) 40%,
            transparent 70%);
    animation: bg-shift 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.sec-logica::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(200, 164, 92, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.sec-logica__header {
    position: relative;
    z-index: 1;
    padding: 0 6vw;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sec-logica__header.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-logica__header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cor-branca);
    max-width: 700px;
    text-shadow: 0 0 40px rgba(200, 164, 92, 0.25);
}

.sec-logica__header h2 em {
    font-style: normal;
    color: var(--cor-secundaria-clara);
    position: relative;
}

.sec-logica__header h2 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.sec-logica__header.visible h2 em::after {
    transform: scaleX(1);
}

.sec-logica__carrossel-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.carrossel-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 0 6vw;
}

.carrossel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 92, 0.4);
    background: rgba(34, 59, 2, 0.7);
    color: var(--cor-secundaria-clara);
    font-size: 1rem;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carrossel-btn:hover {
    background: rgba(58, 102, 5, 0.7);
    border-color: rgba(200, 164, 92, 0.8);
    transform: scale(1.1);
}

.carrossel-btn:disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

.carrossel-progress {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carrossel-progress__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(200, 164, 92, 0.3);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.carrossel-progress__dot.active {
    background: var(--cor-secundaria);
    transform: scale(1.4);
}

.sec-logica__carrossel {
    display: flex;
    gap: 24px;
    padding: 8px 6vw 32px;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.logica-card {
    flex: 0 0 320px;
    min-height: 280px;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 1;
    transform: scale(0.93);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, box-shadow 0.4s ease;
}

.logica-card.visible {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 12px 48px rgba(200, 164, 92, 0.2);
}

.logica-card.card-inactive {
    transform: scale(0.93);
    opacity: 0.55;
}

.logica-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
            rgba(58, 102, 5, 0.7) 0%,
            rgba(34, 59, 2, 0.9) 60%,
            rgba(200, 164, 92, 0.2) 100%);
    animation: card-aura 6s ease-in-out infinite alternate;
    z-index: 0;
}

.logica-card:nth-child(2)::before {
    animation-delay: -1.5s;
}

.logica-card:nth-child(3)::before {
    animation-delay: -3s;
}

.logica-card:nth-child(4)::before {
    animation-delay: -4.5s;
}

@keyframes card-aura {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    33% {
        filter: hue-rotate(15deg) brightness(1.15);
    }

    66% {
        filter: hue-rotate(-10deg) brightness(0.95);
    }

    100% {
        filter: hue-rotate(20deg) brightness(1.1);
    }
}

.logica-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(200, 164, 92, 0.3);
    z-index: 1;
    pointer-events: none;
}

.logica-card .logica-card__glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(200, 164, 92, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.logica-card__icon {
    position: relative;
    z-index: 2;
    font-size: 1.6rem;
    color: var(--cor-secundaria-clara);
    line-height: 1;
}

.logica-card h3 {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cor-branca);
    line-height: 1.25;
}

.logica-card p {
    position: relative;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 0.97rem;
    line-height: 1.75;
    color: rgba(225, 184, 102, 0.82);
}

.sec-logica__cta {
    position: relative;
    z-index: 1;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.sec-logica__cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-logica__cta span {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(225, 184, 102, 0.8);
    font-style: italic;
}

@media (max-width: 768px) {
    .sec-logica {
        padding: 72px 0 64px;
        gap: 40px;
    }

    .logica-card {
        flex: 0 0 75vw;
        min-height: 260px;
    }

    .sec-logica__carrossel {
        padding: 8px 6vw 32px;
    }

    .sec-logica__cta {
        padding: 0 6vw;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ── SEC-FUNCIONA ───────────────────────────────────── */
.sec-funciona {
    position: relative;
    background: #f5f0e8;
    overflow: hidden;
    padding: 96px 6vw 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.sec-funciona::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sec-funciona__header {
    max-width: 680px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sec-funciona__header.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-funciona__header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cor-principal-escura);
}

.sec-funciona__header h2 em {
    font-style: normal;
    color: var(--cor-principal-clara);
    position: relative;
}

.sec-funciona__header h2 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.sec-funciona__header.visible h2 em::after {
    transform: scaleX(1);
}

.sec-funciona__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 32px;
}

.timeline-linha {
    position: absolute;
    left: 52px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--cor-principal-clara), var(--cor-secundaria), var(--cor-principal-clara));
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    background-size: 100% 200%;
    animation: linha-pulse 4s ease-in-out infinite;
}

.timeline-linha.visible {
    transform: scaleY(1);
}

@keyframes linha-pulse {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 0% 100%;
    }
}

.modulo-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 16px 0;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.modulo-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.modulo-item__dot {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cor-principal-clara), var(--cor-principal));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(200, 164, 92, 0.15), 0 4px 20px rgba(58, 102, 5, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.modulo-item__dot--final {
    background: linear-gradient(135deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    box-shadow: 0 0 0 6px rgba(200, 164, 92, 0.2), 0 4px 24px rgba(200, 164, 92, 0.4);
    animation: dot-final-pulse 2s ease-in-out infinite alternate;
}

@keyframes dot-final-pulse {
    from {
        box-shadow: 0 0 0 4px rgba(200, 164, 92, 0.2), 0 4px 20px rgba(200, 164, 92, 0.35);
    }

    to {
        box-shadow: 0 0 0 10px rgba(200, 164, 92, 0.1), 0 4px 28px rgba(200, 164, 92, 0.5);
    }
}

.modulo-item__dot:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(200, 164, 92, 0.2), 0 6px 28px rgba(58, 102, 5, 0.45);
}

.modulo-item__numero {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cor-branca);
    line-height: 1;
}

.modulo-item__card {
    flex: 1;
    background: var(--cor-branca);
    border: 1px solid rgba(58, 102, 5, 0.15);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.modulo-item__card:hover {
    border-color: rgba(200, 164, 92, 0.5);
    box-shadow: 0 8px 32px rgba(200, 164, 92, 0.15);
    transform: translateX(6px);
}

.modulo-item__card--final {
    background: linear-gradient(135deg,
            rgba(200, 164, 92, 0.08) 0%,
            rgba(58, 102, 5, 0.06) 100%);
    border-color: rgba(200, 164, 92, 0.3);
}

.modulo-item__card--final:hover {
    border-color: rgba(200, 164, 92, 0.6);
    box-shadow: 0 8px 32px rgba(200, 164, 92, 0.2);
}

.modulo-item__tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cor-secundaria-escura);
}

.modulo-item__card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cor-principal-escura);
    line-height: 1.25;
}

.modulo-item__card p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #5a4a2a;
    line-height: 1.5;
}

.sec-funciona__cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sec-funciona__cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-funciona__cta span {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--cor-principal);
    font-style: italic;
}

@media (max-width: 768px) {
    .sec-funciona {
        padding: 72px 5vw 64px;
        gap: 48px;
    }

    .sec-funciona__timeline {
        padding-left: 16px;
    }

    .timeline-linha {
        left: 36px;
    }

    .modulo-item {
        gap: 18px;
    }

    .modulo-item__card {
        padding: 16px 18px;
    }

    .sec-funciona__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ── SEC-SOBRE ──────────────────────────────────────── */
.sec-sobre {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 56px;
    padding: 96px 6vw 80px;
    overflow: hidden;
    background: var(--cor-principal-escura);
}

.sec-sobre__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.foto-ana-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 95%;
    width: auto;
    max-width: 55%;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.85;
    filter: none;
    animation: ana-float 6s ease-in-out infinite alternate;
}

@keyframes ana-float {
    from {
        transform: translateY(0px) scale(1);
    }

    to {
        transform: translateY(-12px) scale(1.02);
    }
}

.sec-sobre__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(34, 59, 2, 0.95) 0%,
            rgba(34, 59, 2, 0.80) 40%,
            rgba(34, 59, 2, 0.15) 65%,
            rgba(34, 59, 2, 0.05) 100%),
        radial-gradient(ellipse 60% 80% at 80% 60%,
            rgba(200, 164, 92, 0.08) 0%, transparent 70%);
    animation: overlay-shift 10s ease-in-out infinite alternate;
}

@keyframes overlay-shift {
    from {
        filter: hue-rotate(0deg);
    }

    to {
        filter: hue-rotate(10deg);
    }
}

.sec-sobre__conteudo {
    position: relative;
    z-index: 1;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.sec-sobre__conteudo.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-sobre__texto h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cor-branca);
    margin-bottom: 28px;
    text-shadow: 0 0 40px rgba(200, 164, 92, 0.2);
}

.sec-sobre__texto h2 em {
    font-style: normal;
    color: var(--cor-secundaria-clara);
    position: relative;
}

.sec-sobre__texto h2 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}

.sec-sobre__conteudo.visible .sec-sobre__texto h2 em::after {
    transform: scaleX(1);
}

.sec-sobre__texto p {
    font-family: var(--font-body);
    font-size: clamp(0.98rem, 1.6vw, 1.1rem);
    line-height: 1.9;
    color: rgba(225, 184, 102, 0.8);
    margin-bottom: 20px;
}

.sec-sobre__texto p:last-child {
    margin-bottom: 0;
}

.sec-sobre__texto strong {
    color: var(--cor-secundaria-clara);
    font-weight: 700;
}

.sec-sobre__selos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.selo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 164, 92, 0.2);
    border-radius: 14px;
    padding: 16px 20px;
    min-width: 120px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, background 0.3s;
}

.selo:nth-child(1) {
    transition-delay: 0.1s;
}

.selo:nth-child(2) {
    transition-delay: 0.2s;
}

.selo:nth-child(3) {
    transition-delay: 0.3s;
}

.sec-sobre__conteudo.visible .selo {
    opacity: 1;
    transform: translateY(0);
}

.selo:hover {
    background: rgba(200, 164, 92, 0.1);
    border-color: rgba(200, 164, 92, 0.5);
}

.selo__numero {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cor-secundaria-clara);
    line-height: 1;
}

.selo__label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(200, 164, 92, 0.7);
    line-height: 1.35;
}

.sec-sobre__cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.sec-sobre__cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-sobre__cta span {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(200, 164, 92, 0.8);
    font-style: italic;
}

@media (max-width: 768px) {
    .sec-sobre {
        padding: 72px 6vw 64px;
        gap: 40px;
        min-height: auto;
    }

    .foto-ana-bg {
        opacity: 0.12;
        max-width: 100%;
        height: 70%;
        right: -10%;
    }

    .sec-sobre__selos {
        gap: 12px;
    }

    .selo {
        flex: 1;
        min-width: 100px;
    }

    .sec-sobre__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ── SEC-PROMOCAO ───────────────────────────────────── */
.sec-promocao {
    position: relative;
    background: #f5f0e8;
    overflow: hidden;
    padding: 96px 6vw 80px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
}

.sec-promocao::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 5% 50%, rgba(58, 102, 5, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 95% 80%, rgba(200, 164, 92, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.sec-promocao__imagem {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sec-promocao__imagem.visible {
    opacity: 1;
    transform: translateX(0);
}

.img-ana-promocao {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(200, 164, 92, 0.2));
    animation: promo-float 5s ease-in-out infinite alternate;
}

@keyframes promo-float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.sec-promocao__imagem-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(200, 164, 92, 0.15) 0%, transparent 70%);
    z-index: 0;
    animation: glow-breathe 4s ease-in-out infinite alternate;
}

@keyframes glow-breathe {
    from {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.sec-promocao__conteudo {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.sec-promocao__conteudo.visible {
    opacity: 1;
    transform: translateY(0);
}

.badge-urgencia {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 8px;
}

.badge-urgencia__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dc2626;
    animation: urgencia-blink 1s ease-in-out infinite;
}

@keyframes urgencia-blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.sec-promocao__topo h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cor-principal-escura);
    margin-bottom: 20px;
}

.sec-promocao__topo h2 em {
    font-style: normal;
    color: var(--cor-principal-clara);
    position: relative;
}

.sec-promocao__topo h2 em::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.sec-promocao__conteudo.visible .sec-promocao__topo h2 em::after {
    transform: scaleX(1);
}

.sec-promocao__subtitulo {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--cor-principal);
    margin-bottom: 12px;
}

.sec-promocao__lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sec-promocao__lista li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: #3a3020;
    line-height: 1.5;
}

.lista-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cor-principal-clara), var(--cor-principal));
    color: var(--cor-branca);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.sec-promocao__preco-box {
    background: var(--cor-principal-escura);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(200, 164, 92, 0.25);
    position: relative;
    overflow: hidden;
}

.sec-promocao__preco-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.preco-box__titulo {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(200, 164, 92, 0.7);
}

.preco-box__de {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preco-box__de-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(200, 164, 92, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preco-box__de-valor {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(200, 164, 92, 0.45);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.6);
}

.preco-box__por {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.preco-box__por-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(200, 164, 92, 0.6);
}

.preco-box__por-valor {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #4ade80;
    line-height: 1;
    animation: preco-heartbeat 1.4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

@keyframes preco-heartbeat {
    0% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
    }

    14% {
        transform: scale(1.05);
        text-shadow: 0 0 35px rgba(74, 222, 128, 0.7);
    }

    28% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
    }

    42% {
        transform: scale(1.03);
        text-shadow: 0 0 28px rgba(74, 222, 128, 0.55);
    }

    70% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
    }
}

.preco-box__economia {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #fca5a5;
    animation: economia-pulse 2s ease-in-out infinite alternate;
}

.preco-box__economia strong {
    color: #f87171;
    font-weight: 700;
    font-size: 1.05rem;
}

@keyframes economia-pulse {
    from {
        background: rgba(239, 68, 68, 0.1);
        border-color: rgba(239, 68, 68, 0.25);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }

    to {
        background: rgba(239, 68, 68, 0.18);
        border-color: rgba(239, 68, 68, 0.5);
        box-shadow: 0 0 16px rgba(239, 68, 68, 0.2);
    }
}

.preco-box__cta {
    width: 100%;
    font-size: 1.1rem;
    padding: 18px 32px;
    margin-top: 4px;
}

.preco-box__seguranca {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(200, 164, 92, 0.4);
    text-align: center;
    letter-spacing: 0.3px;
}

@media (max-width: 900px) {
    .sec-promocao {
        grid-template-columns: 1fr;
        padding: 72px 6vw 64px;
        gap: 32px;
    }

    .sec-promocao__imagem {
        display: none;
    }
}

/* ── SEC-DEPOIMENTOS ────────────────────────────────── */
.sec-depoimentos {
    position: relative;
    background: var(--cor-principal);
    overflow: hidden;
    padding: 96px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.sec-depoimentos::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%,
            rgba(200, 164, 92, 0.08) 0%, transparent 70%);
    animation: bg-shift 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.sec-depoimentos__header {
    position: relative;
    z-index: 1;
    padding: 0 6vw;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sec-depoimentos__header.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-depoimentos__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cor-branca);
    text-shadow: 0 0 40px rgba(200, 164, 92, 0.2);
}

.sec-depoimentos__header h2 em {
    font-style: normal;
    color: var(--cor-secundaria-clara);
    position: relative;
}

.sec-depoimentos__header h2 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.sec-depoimentos__header.visible h2 em::after {
    transform: scaleX(1);
}

.sec-depoimentos__carrossel-wrapper {
    position: relative;
    z-index: 1;
}

.sec-depoimentos__carrossel {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    padding: 16px 0 24px;
}

.dep-card {
    flex-shrink: 0;
    background: linear-gradient(135deg,
            rgba(58, 102, 5, 0.55) 0%,
            rgba(34, 59, 2, 0.9) 60%,
            rgba(200, 164, 92, 0.15) 100%);
    border: 1px solid rgba(200, 164, 92, 0.2);
    border-radius: 24px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    animation: card-aura 7s ease-in-out infinite alternate;
    cursor: pointer;
}

.dep-card:nth-child(2) {
    animation-delay: -2s;
}

.dep-card:nth-child(3) {
    animation-delay: -3.5s;
}

.dep-card:nth-child(4) {
    animation-delay: -5s;
}

.dep-card:nth-child(5) {
    animation-delay: -6s;
}

.dep-card.ativo {
    transform: scale(1.03);
    border-color: rgba(200, 164, 92, 0.5);
    box-shadow: 0 20px 60px rgba(200, 164, 92, 0.2);
}

.dep-card.lateral {
    opacity: 0.5;
    transform: scale(0.93);
}

.dep-card__aspas {
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: rgba(200, 164, 92, 0.2);
    pointer-events: none;
}

.dep-card__texto {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(225, 184, 102, 0.88);
    padding-top: 28px;
    flex: 1;
}

.dep-card__autor {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(200, 164, 92, 0.15);
    padding-top: 20px;
}

.dep-card__foto {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(200, 164, 92, 0.4);
    flex-shrink: 0;
}

.dep-card__nome {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cor-secundaria-clara);
    letter-spacing: 0.2px;
}

.dep-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 92, 0.4);
    background: rgba(34, 59, 2, 0.8);
    color: var(--cor-secundaria-clara);
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.dep-btn:hover {
    background: rgba(58, 102, 5, 0.7);
    border-color: rgba(200, 164, 92, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.dep-btn:disabled {
    opacity: 0.2;
    pointer-events: none;
}

.dep-btn--prev {
    left: 12px;
}

.dep-btn--next {
    right: 12px;
}

.dep-dots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dep-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(200, 164, 92, 0.3);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.dep-dot.active {
    background: var(--cor-secundaria);
    transform: scale(1.4);
}

@media (max-width: 768px) {
    .sec-depoimentos {
        padding: 72px 0 64px;
        gap: 36px;
    }
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
    position: relative;
    background: var(--cor-principal-escura);
    border-top: 1px solid rgba(200, 164, 92, 0.15);
    overflow: hidden;
    padding: 48px 6vw;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 100%,
            rgba(200, 164, 92, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.links-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 32px;
}

.copy-footer {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(200, 164, 92, 0.4);
    letter-spacing: 0.3px;
}

.link-rodape {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(200, 164, 92, 0.6);
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s ease;
}

.link-rodape::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-secundaria-escura));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-rodape:hover {
    color: var(--cor-secundaria-clara);
}

.link-rodape:hover::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    footer {
        padding: 36px 6vw;
    }

    .links-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}