/* -------------------------------------- */
/* 0. CONFIGURAÇÕES GLOBAIS E REINICIALIZAÇÃO */
/* -------------------------------------- */
html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100vw;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    overflow-x: clip;
    max-width: 100vw;
    color: #4B4A4A;
    line-height: 1.6;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 34 34'%3E%3Cpath d='M 13 3 L 13 13 L 3 13 L 3 23 L 13 23 L 13 33 L 23 33 L 23 23 L 33 23 L 33 13 L 23 13 L 23 3 Z' fill='%23000' fill-opacity='0.2'/%3E%3Cpath d='M 11 1 L 11 11 L 1 11 L 1 21 L 11 21 L 11 31 L 21 31 L 21 21 L 31 21 L 31 11 L 21 11 L 21 1 Z' fill='white' stroke='%23555' stroke-width='1.5' stroke-linejoin='miter'/%3E%3C/svg%3E") 8 8, auto;
}

a,
button,
[role="button"],
label,
select,
.cursor-pointer {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 32 32'%3E%3Cpath d='M 12 2 L 12 12 L 2 12 L 2 20 L 12 20 L 12 30 L 20 30 L 20 20 L 30 20 L 30 12 L 20 12 L 20 2 Z' fill='black' stroke='black' stroke-width='4' stroke-linejoin='miter'/%3E%3Cpath d='M 12 2 L 12 12 L 2 12 L 2 20 L 12 20 L 12 30 L 20 30 L 20 20 L 30 20 L 30 12 L 20 12 L 20 2 Z' fill='black' stroke='white' stroke-width='2.5' stroke-linejoin='miter'/%3E%3Cpath d='M 12 2 L 12 12 L 2 12 L 2 20 L 12 20 L 12 30 L 20 30 L 20 20 L 30 20 L 30 12 L 20 12 L 20 2 Z' fill='black' stroke='none'/%3E%3C/svg%3E") 9 9, pointer !important;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1,
h2,
h3 {
    color: #0A7D42;
    /* Verde da marca */
    margin-top: 0;
}

/* -------------------------------------- */
/* 1. CABEÇALHO */
/* -------------------------------------- */
header {
    background-color: #ffffff;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-pequena {
    height: 50px;
    width: auto;
}

/* Navegação */
.header-nav {
    display: flex;
    align-items: center;
}

.header-nav a {
    text-decoration: none;
    color: #0A7D42;
    font-weight: 500;
    margin-left: 15px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

/* BOTÃO DE DESTAQUE (Header) */
.header-nav a:last-child {
    background-color: #0A7D42;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 6px;
    margin-left: 25px;
}

/* Hover clareando */
.header-nav a:last-child:hover {
    background-color: #0da853;
    /* Verde mais claro */
    color: #ffffff;
}

/* -------------------------------------- */
/* 2. HERO — OFERTA PRINCIPAL */
/* -------------------------------------- */
#oferta-principal {
    position: relative;
    overflow: hidden;
    padding: 30px 0 70px;
    background-color: #ffffff;
}

/* Grid global de células do Excel */
#grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 72px 28px;
    pointer-events: none;
    z-index: 9999;
}

/* Efeito de destaque do cursor no grid */
#grid-bg::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 72px 28px;
    -webkit-mask-image: radial-gradient(circle 180px at var(--mx, -200px) var(--my, -200px), black 0%, transparent 100%);
    mask-image: radial-gradient(circle 180px at var(--mx, -200px) var(--my, -200px), black 0%, transparent 100%);
    pointer-events: none;
    transition: -webkit-mask-image 0.05s ease, mask-image 0.05s ease;
}

/* Conteúdo acima da textura */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo centralizada no topo */
.hero-logo {
    margin-bottom: 15px;
}

.hero-logo img {
    max-height: 73px;
    width: auto;
}

/* Título principal */
.hero-titulo {
    font-size: 2.8rem;
    font-weight: 800;
    color: #4B4A4A;
    line-height: 1.3;
    max-width: 960px;
    margin: 0 0 10px;
}

/* Destaque verde */
.destaque-verde {
    color: #0A7D42;
}

/* Subtítulo */
.hero-subtitulo {
    font-size: 1.1rem;
    font-weight: 400;
    color: #444444;
    line-height: 1.7;
    max-width: 860px;
    margin: 0 0 15px;
}

.hero-subtitulo p {
    margin-bottom: 5px;
}

.hero-subtitulo p:last-child {
    margin-bottom: 0;
}



/* BOTÃO CTA PRINCIPAL */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 10px 10px 32px;
    border-radius: 50px;
    background-color: #0b8a49;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.25em;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 0px #054d29, 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.25s ease;
    margin-top: 10px;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.03);
    background-color: #0ea658;
    box-shadow: 0 10px 0px #054d29, 0 15px 30px rgba(13, 163, 86, 0.4);
}

.btn-cta:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0px #054d29, 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-text {
    flex-grow: 1;
    text-align: center;
}

.btn-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #333333;
    border-radius: 50%;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-cta:hover .btn-cta-icon {
    transform: rotate(135deg);
    background-color: #1a1a1a;
}

.btn-cta-red {
    background-color: #d32f2f;
    box-shadow: 0 6px 0px #9a0007, 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-red:hover {
    background-color: #0da356;
    box-shadow: 0 8px 0px #054d29, 0 12px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-red:active {
    box-shadow: 0 2px 0px #054d29, 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-red-gray {
    background-color: #d32f2f;
    box-shadow: 0 6px 0px #9a0007, 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-red-gray:hover {
    background-color: #6b6b6b;
    box-shadow: 0 8px 0px #444, 0 12px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-red-gray:active {
    background-color: #555;
    box-shadow: 0 2px 0px #444, 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pca-circle-btn-container {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    position: relative;
}

.pca-circle-btn-container.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Fogos de artifício no botão — mesmo efeito do círculo central */
.pca-circle-btn-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: -1;
    transition: all 0s;
}

.pca-circle-btn-container.active::before {
    animation: fireworks 1.2s ease-out forwards;
}


/* -------------------------------------- */
/* 2.5 ESTATÍSTICAS (CARDS)              */
/* -------------------------------------- */
#estatisticas {
    padding: 60px 0;
    background-color: transparent;
    position: relative;
    z-index: 2;
    /* Acima do grid global */
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 10000;
    /* Garante que fique acima do grid global (z-index: 9999) */
}

.news-tag {
    position: absolute;
    top: 18px;
    left: -35px;
    background-color: #d32f2f;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(-45deg);
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.news-tag-right {
    left: auto;
    right: -35px;
    transform: rotate(45deg);
}

.stat-card {
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card.align-left {
    text-align: left;
}

.stat-card.align-right {
    text-align: right;
    background-color: #0A7D42;
    /* Verde da marca */
    border-color: #0A7D42;
}

/* Ajuste de cores para o card verde */
.stat-card.align-right .stat-headline,
.stat-card.align-right .stat-body {
    color: #ffffff;
}

.stat-card.align-right .stat-source {
    color: #cce8d6;
    /* Verde clarinho para a fonte */
}

.stat-headline {
    color: #0A7D42;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.stat-body {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stat-source {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    font-style: italic;
}

/* ==================================================
   SEÇÃO OFERTA
   ================================================== */
#oferta {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.oferta-titulo {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 60px;
    line-height: 1.2;
}

.oferta-cards-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

/* Base de todos os cards de oferta */
.oferta-card-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Destaque Verde (Card 1) */
.destaque-verde-forte {
    background: #ffffff;
    border: 2px solid #0A7D42;
    border-radius: 16px;
    padding: 0;
    box-shadow: -8px 8px 0px #0A7D42;
    z-index: 2;
    transform: scale(1.02);
    /* Fica um pouco maior que o básico por padrão */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destaque-verde-forte:hover {
    transform: scale(1.02) translate(4px, -4px) !important;
    box-shadow: -14px 14px 0px #0A7D42;
}

.destaque-verde-forte .oferta-card {
    background: transparent;
    border-radius: 16px;
    padding: 45px 35px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.oferta-badge {
    position: absolute;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #fde047, #f59e0b);
    /* Amarelo premium */
    color: #1a1a1a;
    /* Preto */
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    z-index: 10;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.badge-top {
    top: 15px;
}

.badge-bottom {
    bottom: 15px;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marqueeRight 12s linear infinite;
}

.marquee-left {
    animation: marqueeLeft 12s linear infinite;
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

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

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

.destaque-verde-forte .oferta-preco-antigo {
    font-size: 1.15rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
    margin-top: 15px;
    font-weight: 500;
}

.destaque-verde-forte .oferta-preco-atual {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0A7D42;
    margin-bottom: 15px;
    line-height: 1.1;
}

/* Animação de pulsação para o preço atual */
@keyframes pulsePreco {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-text {
    animation: pulsePreco 2s infinite ease-in-out;
    display: inline-block;
}

/* Botões da Seção de Oferta */
.btn-oferta {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.btn-oferta-amarelo {
    background: linear-gradient(135deg, #ff9f00, #e67e22);
    color: #ffffff;
    box-shadow: 0 6px 0px #b35c00, 0 8px 15px rgba(230, 126, 34, 0.3);
    animation: pulsePreco 2.5s infinite ease-in-out;
}

.btn-oferta-verde {
    background: #0da356;
    color: #ffffff;
    box-shadow: 0 6px 0px #054d29, 0 8px 15px rgba(13, 163, 86, 0.3);
}

.btn-oferta-verde:hover {
    background: #0ea658;
    box-shadow: 0 8px 0px #054d29, 0 12px 20px rgba(13, 163, 86, 0.4);
    transform: translateY(-2px);
}

.btn-oferta-verde:active {
    background: #054d29;
    box-shadow: 0 2px 0px #054d29, 0 4px 6px rgba(13, 163, 86, 0.2);
    transform: translateY(4px);
}

.btn-oferta-amarelo:hover {
    background: linear-gradient(135deg, #ffb833, #f39c12);
    transform: translateY(-2px);
    box-shadow: 0 8px 0px #b35c00, 0 12px 20px rgba(243, 156, 18, 0.4);
}

.btn-oferta-amarelo:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0px #b35c00, 0 4px 6px rgba(230, 126, 34, 0.2);
}

.btn-oferta-cinza {
    background: #ffffff;
    color: #4B4A4A;
    border: 2px solid #ccc;
    box-shadow: 0 6px 0px #999, 0 8px 15px rgba(0, 0, 0, 0.08);
}

.btn-oferta-cinza:hover {
    background: #f5f5f5;
    border-color: #999;
    transform: translateY(-2px);
    box-shadow: 0 8px 0px #999, 0 12px 20px rgba(0, 0, 0, 0.12);
}

.btn-oferta-cinza:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0px #999, 0 4px 6px rgba(0, 0, 0, 0.06);
}

.card-divider {
    border: none;
    height: 1px;
    margin: 25px 0;
}

.card-divider-verde {
    background: linear-gradient(90deg, transparent, rgba(10, 125, 66, 0.35), transparent);
}

.oferta-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.destaque-verde-forte .oferta-lista li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.destaque-verde-forte .oferta-lista li:last-child {
    margin-bottom: 0;
}

.destaque-verde-forte .check-icon {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Card 2 (Básico / Apagado) */
.oferta-apagada {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    opacity: 0.9;
    z-index: 1;
    border: 1.5px solid #e0d0d0;
}

.oferta-apagada:hover {
    opacity: 1;
    transform: translateY(-5px) !important;
    border-color: #d09090;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.oferta-apagada .oferta-card {
    background: transparent;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.oferta-apagada .oferta-preco-atual {
    color: #4B4A4A;
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 35px;
    /* Compensa a ausência do badge */
}

.card-divider-cinza {
    background: linear-gradient(90deg, transparent, #ccc, transparent);
}

.oferta-apagada .oferta-lista li {
    font-size: 1.05rem;
    color: #777;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.oferta-apagada .check-icon.cinza {
    color: #999;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.oferta-divisor {
    display: none;
    /* Removido para um layout mais clean com os cards próximos */
}


/* -------------------------------------- */
/* 5. RODAPÉ */
/* -------------------------------------- */
footer {
    background-color: #4B4A4A;
    color: #fff;
    text-align: center;
    padding: 2px 0;
    margin-top: 40px;
}

/* -------------------------------------- */
/* 6. RESPONSIVIDADE */
/* -------------------------------------- */
@media (max-width: 768px) {
    #oferta-principal {
        padding: 50px 0 40px;
    }




    .hero-titulo {
        font-size: 1.95rem;
    }

    .hero-subtitulo {
        font-size: 1rem;
    }

    .header-content {
        flex-direction: column;
    }

    .header-nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .header-nav a {
        width: 80%;
        text-align: center;
        margin: 0 auto;
    }

    .esforco-cards-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .card-verde-wrapper {
        flex: 1;
    }

    .esforco-divisor {
        width: 80%;
        height: 1px;
        margin: 5px auto;
        background: linear-gradient(90deg, transparent, #d0d0d0, transparent);
    }

    .esforco-titulo {
        font-size: 1.7rem;
    }
}

/* ============================================== */
/* SEÇÃO PCA — TIMELINE VERTICAL                  */
/* ============================================== */
#pca-vertical {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.pca-vert-header {
    text-align: center;
    margin-bottom: 70px;
}

.pca-vert-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pca-vert-header p {
    font-size: 1.15rem;
    color: #606060;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Wrapper */
.pca-vert-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Linhas centrais */
.pca-vert-line-bg,
.pca-vert-line-progress {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    border-radius: 2px;
}

.pca-vert-line-bg {
    background-color: #eaeaea;
    z-index: 1;
}

.pca-vert-line-progress {
    background-color: #15803d;
    height: 0%;
    /* animado via JS */
    z-index: 2;
    transition: height 0.1s linear;
    box-shadow: 0 0 10px rgba(21, 128, 61, 0.5);
}

/* Steps (Grid) */
.pca-vert-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.pca-vert-step:last-child {
    margin-bottom: 0;
}

/* Ícone central */
.pca-vert-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f4fbf6;
    border: 3px solid #eaeaea;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pca-vert-dot {
    width: 28px;
    height: 28px;
    background-color: #ccc;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 50%;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estado Ativo (quando scrolar por cima) */
.pca-vert-step.active .pca-vert-icon {
    border-color: #15803d;
    background-color: #dcfce7;
    box-shadow: 0 0 20px rgba(21, 128, 61, 0.3);
    transform: scale(1.1);
}

.pca-vert-step.active .pca-vert-dot {
    width: 36px;
    height: 36px;
    background-color: #15803d;
    color: white;
    font-size: 1.15rem;
    animation: popInVert 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popInVert {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Conteúdo (Caixa de texto) */
.pca-vert-content {
    /* Estado inicial (oculto e deslocado) */
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pca-vert-content.left {
    justify-self: end;
    transform: translateX(-40px);
}

.pca-vert-content.right {
    justify-self: start;
    transform: translateX(40px);
}

/* Quando ativo, caixa de texto desliza para o lugar original */
.pca-vert-step.active .pca-vert-content {
    opacity: 1;
    transform: translateX(0);
}

.pca-vert-box {
    background: #ffffff;
    padding: 24px 32px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 360px;
    text-align: left;
}

.pca-vert-box h4 {
    margin: 0 0 12px 0;
    font-size: 1.15rem;
    color: #15803d;
    font-weight: 800;
}

.pca-vert-box p {
    margin: 0;
    font-size: 0.98rem;
    color: #555;
    font-weight: 500;
    line-height: 1.6;
}

/* ==================================================
   RESPONSIVIDADE (MOBILE)
   ================================================== */
@media (max-width: 768px) {
    #pca-vertical {
        padding: 60px 0;
    }

    .pca-vert-header {
        margin-bottom: 50px;
        padding: 0 16px;
    }

    .pca-vert-header h2 {
        font-size: 1.8rem;
    }

    /* Muda o grid para (ícone | conteúdo) de forma explícita */
    .pca-vert-step {
        grid-template-columns: 58px 1fr;
        grid-template-areas: "icon content";
        gap: 20px;
        margin-bottom: 60px;
        align-items: center;
    }

    /* Linhas centrais movem para a esquerda */
    .pca-vert-line-bg,
    .pca-vert-line-progress {
        left: 29px;
        /* Metade do tamanho do ícone (58px / 2) */
        transform: none;
    }

    /* Ícone fica na primeira coluna */
    .pca-vert-icon {
        grid-area: icon;
        width: 58px;
        height: 58px;
        margin-left: 0;
    }

    /* Spacer some */
    .pca-vert-spacer {
        display: none;
    }

    /* Conteúdos vão todos para a direita (área content) */
    .pca-vert-content.left,
    .pca-vert-content.right {
        grid-area: content;
        justify-self: stretch;
        transform: translateX(30px);
        /* Sempre desloca da direita no mobile */
    }

    .pca-vert-box {
        max-width: 100%;
        text-align: left;
        padding: 24px;
    }
}

/* ============================================== */
/* SEÇÃO PCA — CÍRCULO SCROLL                     */
/* ============================================== */
#pca-circle {
    padding: 100px 0 80px;
    background-color: #fcfcfc;
    position: relative;
    border-top: 1px solid #eaeaea;
}

.circle-header {
    text-align: center;
    margin-bottom: 0;
    padding: 0 20px;
}

.circle-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.circle-header p {
    font-size: 1.15rem;
    color: #606060;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Espaço de Scroll Extra - Permite que a tela desça enquanto o círculo anima */
.circle-scroll-wrapper {
    position: relative;
    height: 350vh;
    /* Muito espaço para rolar */
}

/* O container que fica grudado na tela */
.circle-container {
    position: sticky;
    top: 2vh;
    height: 96vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.circle-visuals {
    position: relative;
    width: 100%;
    flex: 1;
}

/* SVG Animado */
.progress-ring {
    width: 400px;
    height: 400px;
    transform: rotate(-90deg);
    /* Faz começar do meio-topo (12 horas) */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -200px;
    margin-left: -200px;
}

/* As bolinhas e textos ficarão em position absolute relativos ao SVG */
.circle-dot {
    position: absolute;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    color: #aaa;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Bolinha ativa */
.circle-dot.active {
    border-color: #16a34a;
    background: linear-gradient(135deg, #15803d, #16a34a);
    color: #fff;
    transform: scale(1.3);
    box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Textos ao redor do anel */
.circle-text {
    position: absolute;
    width: 250px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #777;
    line-height: 1.5;
    opacity: 0.2;
    transition: all 0.5s ease;
}

/* Texto ativo */
.circle-text.active {
    opacity: 1;
    color: #15803d;
    transform: scale(1.05);
}

/* Posições das Bolinhas no Anel (R=180). 
   Em 45deg: cos(45)*180 = 127. 
*/
.dot-1 {
    top: calc(50% - 127px);
    left: calc(50% + 127px);
    margin: -18px 0 0 -18px;
}

.dot-2 {
    top: calc(50% + 127px);
    left: calc(50% + 127px);
    margin: -18px 0 0 -18px;
}

.dot-3 {
    top: calc(50% + 127px);
    left: calc(50% - 127px);
    margin: -18px 0 0 -18px;
}

.dot-4 {
    top: calc(50% - 127px);
    left: calc(50% - 127px);
    margin: -18px 0 0 -18px;
}

/* Posições dos Textos (Ajustados para não sobrepor as bolinhas no PC) */
.text-1 {
    top: calc(50% - 147px);
    left: calc(50% + 185px);
    text-align: left;
}

.text-2 {
    top: calc(50% + 110px);
    left: calc(50% + 185px);
    text-align: left;
}

.text-3 {
    top: calc(50% + 110px);
    right: calc(50% + 185px);
    text-align: right;
}

.text-4 {
    top: calc(50% - 147px);
    right: calc(50% + 185px);
    text-align: right;
}

/* Centro (Final) */
.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    text-align: center;
    background: linear-gradient(135deg, #16a34a, #15803d);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: none;
    box-shadow:
        0 10px 25px rgba(21, 128, 61, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 20;
    pointer-events: none;
}

.circle-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: -1;
    transition: all 0s;
}

.circle-center.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.circle-center.active::before {
    animation: fireworks 1.2s ease-out forwards;
}

@keyframes fireworks {
    0% {
        box-shadow:
            0 0 0 -2px #15803d, 0 0 0 -2px #4ade80, 0 0 0 -2px #15803d, 0 0 0 -2px #4ade80,
            0 0 0 -2px #15803d, 0 0 0 -2px #4ade80, 0 0 0 -2px #15803d, 0 0 0 -2px #4ade80;
        opacity: 1;
    }

    100% {
        box-shadow:
            0 -120px 0 2px #15803d, 120px 0 0 2px #4ade80, 0 120px 0 2px #15803d, -120px 0 0 2px #4ade80,
            85px -85px 0 2px #15803d, 85px 85px 0 2px #4ade80, -85px 85px 0 2px #15803d, -85px -85px 0 2px #4ade80;
        opacity: 0;
    }
}

.center-arrow {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: -2px;
    transform: scaleY(0.8) scaleX(1.4);
    animation: bounceUp 1.5s infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.center-text {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes bounceUp {

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

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

.mobile-active-text {
    display: none;
}

/* ==================================================
   SEÇÃO "É PARA VOCÊ?"
   ================================================== */
#is-it-for-you {
    padding: 100px 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eaeaea;
}

.is-it-for-you-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.for-you-content {
    flex: 1;
    max-width: 600px;
}

.for-you-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.4;
}

.inline-logo {
    height: 1.2em;
    vertical-align: middle;
    margin: 0 4px;
    border-radius: 4px;
}

.quality-boxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.quality-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 6px solid #15803d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    /* Para a animação inicial */
}

.quality-box.animate-in {
    animation: slideInRight 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.quality-box:hover {
    transform: translateX(5px) !important;
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.15);
}

.quality-box p {
    font-size: 1.05rem;
    color: #444;
    font-weight: 500;
    margin: 0;
    padding-right: 20px;
    line-height: 1.4;
}

.check-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(21, 128, 61, 0.3);
}

.for-you-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.for-you-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* ==================================================
   SEÇÃO "NÃO É PARA VOCÊ"
   ================================================== */
#not-for-you {
    padding: 20px 0 100px;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.negative-box {
    border-left-color: #b91c1c;
    /* Vermelho escuro */
}

.negative-box:hover {
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.15) !important;
}

.cross-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    /* Vermelho */
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(185, 28, 28, 0.3);
}

/* ==================================================
   DESTAQUES DE TEXTO (GRIFO ANIMADO DA ESQUERDA PARA DIREITA)
   ================================================== */
.highlight {
    display: inline;
    color: inherit;
    transition: color 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, background-position 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
    background-image: linear-gradient(to right, rgba(34, 197, 94, 0.4) 50%, transparent 50%);
    background-size: 200% 35%;
    background-position: 100% 88%;
    background-repeat: no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.highlight.highlight-red {
    background-image: linear-gradient(to right, rgba(239, 68, 68, 0.4) 50%, transparent 50%);
}

.highlight.animate-in,
.highlight.animated {
    color: #15803d;
    background-position: 0 88%;
}

.highlight.highlight-red.animate-in,
.highlight.highlight-red.animated {
    color: #ef4444;
    background-position: 0 88%;
}

/* ==================================================
   SEÇÃO QUALIDADES DO CURSO
   ================================================== */
#course-features {
    padding: 80px 0;
    background-color: #ffffff;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.animated-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #15803d;
}

.animated-arrows span {
    animation: bounceArrows 1.5s infinite;
}

.animated-arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounceArrows {

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

    50% {
        transform: translateY(15px);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid #15803d;
}

.feature-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(21, 128, 61, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f0fdf4;
    color: #15803d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* ==================================================
   SEÇÃO O SEGREDO
   ================================================== */
#o-segredo {
    background-color: #000000;
    color: #ffffff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.o-segredo-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.segredo-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.segredo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.segredo-content {
    flex: 1.2;
}

.segredo-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.segredo-content p {
    font-size: 1.1rem;
    color: #d1d5db;
    /* cinza claro */
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ==================================================
   ANIMAÇÕES DE SCROLL GERAIS
   ================================================== */
.stat-card,
.feature-card,
.oferta-card-wrapper,
.segredo-content,
.segredo-image {
    opacity: 0;
}

.stat-card.animated,
.feature-card.animated,
.oferta-card-wrapper.animated,
.quality-box.animated,
.segredo-content.animated,
.segredo-image.animated,
.learning-module.animated {
    opacity: 1;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card.animate-in,
.feature-card.animate-in,
.oferta-card-wrapper.animate-in,
.segredo-content.animate-in,
.segredo-image.animate-in,
.learning-module.animate-in {
    animation: fadeInUp 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* ============================================== */
/* SEÇÃO: O QUE VAI APRENDER                      */
/* ============================================== */

#o-que-vai-aprender {
    padding: 80px 0;
    background-color: #ffffff;
}

.learning-module {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
    opacity: 0;
}

.learning-module.reverse {
    flex-direction: row-reverse;
}

.learning-module .module-text {
    flex: 1;
}

.learning-module .module-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #15803d;
    margin-bottom: 15px;
    line-height: 1.2;
}

.learning-module .module-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

.learning-module .module-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.learning-module .module-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==================================================
   RESPONSIVIDADE (MOBILE)
   ================================================== */
@media (max-width: 768px) {

    .learning-module,
    .learning-module.reverse {
        flex-direction: column;
        text-align: center;
    }

    .destaque-verde-forte .oferta-preco-atual {
        font-size: 2rem;
    }

    #pca-circle {
        padding: 50px 0 0;
    }

    .circle-header {
        padding: 0 10px;
    }

    .circle-header h2 {
        font-size: 1.6rem;
    }

    .circle-container {
        top: 2vh;
        height: 95vh;
    }

    .circle-visuals {
        flex: 1;
        min-height: 260px;
    }

    .progress-ring {
        width: 220px;
        height: 220px;
        top: 50%;
        margin-top: -110px;
        margin-left: -110px;
    }

    /* Posições das bolinhas proporcionais ao anel de 220px (R≈78, offset≈68) */
    .dot-1 {
        top: calc(50% - 68px);
        left: calc(50% + 68px);
    }

    .dot-2 {
        top: calc(50% + 68px);
        left: calc(50% + 68px);
    }

    .dot-3 {
        top: calc(50% + 68px);
        left: calc(50% - 68px);
    }

    .dot-4 {
        top: calc(50% - 68px);
        left: calc(50% - 68px);
    }

    .circle-dot {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    /* Ocultar os textos fixos nas laterais */
    .circle-text {
        display: none;
    }

    /* Mostrar o painel de texto dinâmico na PARTE DE BAIXO */
    .mobile-active-text {
        order: 3;
        display: flex;
        flex-direction: column;
        position: relative;
        margin: 10px auto 10px;
        width: 88%;
        max-width: 320px;
        background: #15803d;
        color: #ffffff;
        padding: 18px 16px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(21, 128, 61, 0.3);
        border: none;
        text-align: center;
        font-size: 0.95rem;
        font-weight: 500;
        min-height: 100px;
        align-items: center;
        justify-content: center;
        z-index: 50;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .pca-circle-btn-container {
        order: 4;
    }

    /* Destaque quando tiver um texto de step ativo */
    .mobile-active-text.active {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-active-number {
        width: 34px;
        height: 34px;
        min-width: 34px;
        background: #ffffff;
        color: #15803d;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 900;
        font-size: 1.1rem;
        margin-right: 0;
        margin-bottom: 8px;
        /* Dá espaço para o texto abaixo */
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }

    .mobile-active-content {
        flex: 0 1 auto;
        line-height: 1.35;
        font-size: 0.88rem;
    }

    @keyframes popUpgrade {
        0% {
            transform: scale(1) translateY(0);
        }

        50% {
            transform: scale(1.05) translateY(0);
        }

        100% {
            transform: scale(1) translateY(0);
        }
    }

    .mobile-active-text.pop-upgrade {
        animation: popUpgrade 0.4s ease-out;
    }

    .circle-center {
        width: 100px;
        height: 100px;
        top: 50%;
    }

    .circle-center .center-arrow {
        font-size: 1.4rem;
    }

    .circle-center .center-text {
        font-size: 0.75rem;
    }

    #is-it-for-you {
        padding: 60px 0;
    }

    #not-for-you {
        padding: 0 0 60px;
    }

    .is-it-for-you-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .for-you-content h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .quality-box {
        text-align: left;
        padding: 16px 20px;
    }

    .quality-box p {
        font-size: 0.95rem;
        padding-right: 12px;
    }

    .for-you-image {
        justify-content: center;
        margin-top: 20px;
    }

    #not-for-you .for-you-content {
        order: 1;
    }

    #not-for-you .for-you-image {
        order: 2;
        margin-top: 0;
    }

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

    .o-segredo-container {
        flex-direction: column;
        text-align: center;
    }

    .segredo-image {
        order: -1;
    }

    .oferta-cards-container {
        flex-direction: column;
        gap: 30px;
    }

    .destaque-verde-forte {
        transform: scale(1);
    }

    .destaque-verde-forte:hover {
        transform: scale(1) translateY(-5px) !important;
    }
}