html {
    scroll-behavior: smooth;
}

.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 48px;
    background: radial-gradient(ellipse at 70% 50%, #ffffff 0%, #dcfce7 45%, #86efac 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 170px;
}

.hero-titulo {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
}

.hero-titulo-verde {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #22C55E;
    line-height: 1.1;
}

.hero-subtitulo {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #000000;
    max-width: 650px;
    margin-top: 24px;
    line-height: 1.6;
    opacity: 70%;
}

.hero-botoes {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
}

.btn-primario {
    background-color: #22C55E;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 100px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-primario:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

.btn-secundario {
    background-color: transparent;
    color: #22C55E;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 100px;
    border: 2px solid #22C55E;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-secundario:hover {
    background-color: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    color: #22C55E;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.numeros {
    padding: 96px 48px;
    background: #ffffff;
    text-align: center;
}

.numeros-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
}

.numeros-header p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    margin-bottom: 56px;
    opacity: 70%;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.numero-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 1px 7px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.numero-card svg {
    color: #22C55E;
    width: 32px;
    height: 32px;
}

.numero-valor {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #22C55E;
}

.numero-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    opacity: 70%;
}

.numero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(34, 197, 94, 0.411);
}

.impacto {
    padding: 96px 48px;
    background: radial-gradient(ellipse at 70% 50%, #ffffff 0%, #dcfce7 45%, #86efac 100%);
    text-align: center;
}

.impacto-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
}

.impacto-header p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    opacity: 70%;
    margin-bottom: 40px;
}

.impacto-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab, .tab-ativo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 20px;
    border: 2px solid #dcfce7;
    background: #ffffff;
    color: #22C55E;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tab-ativo {
    background: #22C55E;
    color: #ffffff;
    border-color: #22C55E;
}

.tab:hover {
    background: #22C55E;
    color: #ffffff;
    border-color: #22C55E;
}

.tab-conteudo {
    display: none;
}

.tab-conteudo-ativo {
    display: flex;
    align-items: center;
    gap: 48px;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.199);
    text-align: left;
}

.tab-info {
    flex: 1;
}

.tab-icone {
    width: 56px;
    height: 56px;
    background: #22C55E;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.tab-icone svg {
    color: #ffffff;
    width: 28px;
    height: 28px;
}

.tab-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 6px;
}

.tab-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000000;
    margin-bottom: 20px;
    opacity: 70%;
}

.tab-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #000000;
}

.tab-info ul li svg {
    background-color: #22C55E;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.tab-imagem {
    background-color: #22c55e5e;
    border-radius: 20px;
    width: 320px;
    flex-shrink: 0;
}

.tab-imagem img {
    width: 100%;
    border-radius: 16px;
}

.desafios {
    padding: 96px 48px;
    background: #ffffff;
    text-align: center;
}

.desafios-header {
    margin-bottom: 48px;
}

.desafios-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
}

.desafios-header p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    opacity: 0.7;
}

.badge-desafios {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #27c25f, #0b5827);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.badge-desafios svg {
    width: 14px;
    height: 14px;
    fill: rgb(255, 59, 24);
    color: rgb(255, 59, 24);
}

.desafios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.desafio-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 1px 7px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.desafio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(34, 197, 94, 0.342);
}

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

.desafio-icone {
    width: 44px;
    height: 44px;
    background: #bbffd3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22C55E;
}

.desafio-icone svg {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
}

.desafio-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}

.desafio-badge.facil   { background: #22C55E; color: #ffffff; }
.desafio-badge.medio   { background: #f6c500; color: #ffffff; }
.desafio-badge.dificil { background: #f60000; color: #ffffff; }

.desafio-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.desafio-card p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #000000;
    opacity: 0.7;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.desafio-rodape {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    align-items: flex-end;
}

.desafio-pts {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #22C55E;
}

.btn-desafio {
    background: transparent;
    color: #22C55E;
    border: 2px solid #22C55E;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    width: 100%;
}

.btn-desafio:hover {
    background: #16a34a;
    color: white;
}

.desafio-card.concluido {
    border: 2px solid #22C55E;
    background: #f0fdf4;
}

.btn-desafio.concluido {
    background: #f0fdf4;
    color: #22C55E;
    border: 2px solid #22C55E;
    cursor: default;
}

.contador-flutuante {
    position: fixed;
    top: 540px;
    right: 30px;
    z-index: 999;
    background: #ffffff;
    color: rgb(0, 0, 0);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    border: 2px solid #22C55E;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.contador-flutuante svg {
    width: 16px;
    height: 16px;
    color: #22C55E;
    fill: #22C55E;
}

.contador-flutuante span {
    font-size: 14px;
    font-weight: 900;
}

@keyframes pulso {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.contador-flutuante.pulsando {
    animation: pulso 0.4s ease;
}

.assine {
    padding: 96px 48px;
    background: radial-gradient(ellipse at 70% 50%, #ffffff 0%, #dcfce7 45%, #86efac 100%);
    text-align: center;
}

.assine h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
}

.assine > p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    opacity: 0.7;
    margin-bottom: 16px;
}

.assine-contador {
    display: inline-block;
    background: #22C55E;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 40px;
}

.assine-form-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grupo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-grupo label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.form-grupo label svg {
    width: 16px;
    height: 16px;
    color: #22C55E;
}

.form-grupo input,
.form-grupo textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000000;
    border: 2px solid #dcfce7;
    border-radius: 12px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s ease;
    resize: none;
}

.form-grupo textarea {
    height: 100px;
}

.form-grupo input:focus,
.form-grupo textarea:focus {
    border-color: #22C55E;
}

.btn-assinar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #22C55E;
    color: white;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    border-radius: 100px;
    cursor: pointer;
    width: 100%;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-assinar:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-assinar svg {
    width: 18px;
    height: 18px;
}

.footer {
    background: #0F172A;
    padding: 64px 48px 24px;
}

.footer-conteudo {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.footer-logo-area .logo {
    color: #ffffff;
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-logo-area p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-links h4,
.footer-redes h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: #22C55E;
}

.redes-icones {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.redes-icones a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.redes-icones a:hover {
    background: #22C55E;
    color: #ffffff;
}

.redes-icones a svg {
    width: 18px;
    height: 18px;
}

.footer-redes p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.footer-rodape {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-rodape p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.nav-hamburguer {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000000;
    padding: 4px;
}

.nav-hamburguer svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {

    .nav-hamburguer {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        padding: 24px;
        gap: 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.aberto {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
    }

    .btn-cta {
        display: none;
    }

    .btn-tema {
        display: flex;
    }

    .hero-content {
        padding: 120px 24px 0;
    }

    .hero-titulo,
    .hero-titulo-verde {
        font-size: 36px;
    }

    .hero-subtitulo {
        font-size: 16px;
    }

    .hero-botoes {
        flex-direction: column;
        align-items: center;
        padding: 0 24px;
    }

    .btn-primario,
    .btn-secundario {
        width: 100%;
        text-align: center;
    }

    .numeros {
        padding: 64px 24px;
    }

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

    .impacto {
        padding: 64px 24px;
    }

    .impacto-tabs {
        flex-wrap: wrap;
    }

    .tab-conteudo-ativo {
        flex-direction: column;
        padding: 24px;
    }

    .tab-imagem {
        width: 100%;
    }

    .desafios {
        padding: 64px 24px;
    }

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

    .contador-flutuante {
        top: auto;
        bottom: 16px;
        right: 16px;
    }

    .assine {
        padding: 64px 24px;
    }

    .assine-form-box {
        padding: 24px;
    }

    .footer {
        padding: 48px 24px 24px;
    }

    .footer-conteudo {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tab, .tab-ativo {
        width: 100%;
        justify-content: center;
    }
}

body.dark {
    background: #0f172a;
}

body.dark nav {
    background: rgba(15, 23, 42, 0.685);
}

body.dark .logo {
    color: #ffffff;
}

body.dark .nav-links a {
    color: #ffffff;
}

body.dark .nav-links {
    background: rgb(15, 23, 42);
}

body.dark .nav-links a:hover {
    color: #22C55E;
}


body.dark .nav-hamburguer {
    color: #ffffff;
}


body.dark .hero {
    background: radial-gradient(ellipse at 70% 50%, #0f172a 0%, #052e16 45%, #14532d 100%);
}

body.dark .hero-titulo {
    color: #ffffff;
}

body.dark .hero-subtitulo {
    color: #ffffff;
}

body.dark .numeros {
    background: #1e293b;
}

body.dark .numeros-header h2 {
    color: #ffffff;
}

body.dark .numeros-header p {
    color: #ffffff;
}

body.dark .numero-card {
    background: #0f172a;
}

body.dark .numero-card p {
    color: #ffffff;
}

body.dark .impacto {
    background: radial-gradient(ellipse at 70% 50%, #0f172a 0%, #052e16 45%, #14532d 100%);
}

body.dark .impacto-header h2,
body.dark .impacto-header p {
    color: #ffffff;
}

body.dark .tab {
    background: #1e293b;
    border-color: #1e293b;
    color: #22C55E;
}

body.dark .tab-conteudo-ativo {
    background: #1e293b;
}

body.dark .tab-info h3 {
    color: #ffffff;
}

body.dark .tab-info p {
    color: #ffffff;
}

body.dark .tab-info ul li {
    color: #ffffff;
}

body.dark .desafios {
    background: #1e293b;
}

body.dark .desafios-header h2 {
    color: #ffffff;
}

body.dark .desafios-header p {
    color: #ffffff;
}

body.dark .desafio-card {
    background: #0f172a;
}

body.dark .desafio-card h3 {
    color: #ffffff;
}

body.dark .desafio-card p {
    color: #ffffff;
}

body.dark .assine {
    background: radial-gradient(ellipse at 70% 50%, #0f172a 0%, #052e16 45%, #14532d 100%);
}

body.dark .assine h2 {
    color: #ffffff;
}

body.dark .assine > p {
    color: #ffffff;
}

body.dark .assine-form-box {
    background: #1e293b;
}

body.dark .form-grupo label {
    color: #ffffff;
}

body.dark .form-grupo input,
body.dark .form-grupo textarea {
    background: #1e293b;
    color: #ffffff;
    border-color: #22C55E;
}

body.dark .form-grupo input::placeholder,
body.dark .form-grupo textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

body.dark .footer {
    background: #020617;
}