/* Importação da fonte Space Grotesk do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Resets básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    /* Ajuste para a fonte do projeto */
}

body {
    background-color: #020804;
    color: #ffffff;
}

/* --- ESTILOS DO HEADER --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #040c08;
    position: relative;
    z-index: 50;
}

.logo {
    display: flex;
    flex-direction: column;
    max-width: 100px;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Como adicionamos a tag <a> em volta da imagem, é bom garantir que o link ocupe todo o espaço */
.logo a {
    display: flex;
    width: 100%;
}

.logo-title {
    font-size: 24px;
    font-weight: bold;
}

.logo-subtitle {
    color: #a3e635;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #a3e635;
}

/* --- Botão do Header --- */
.btn-nav {
    background-color: #99f6b2;
    color: #00414C !important;
    /* Cor do texto atualizada */
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* O seletor .main-nav foi adicionado aqui para ter "mais força" e garantir
   que a cor do texto não seja alterada pela regra geral dos links */
.main-nav .btn-nav:hover {
    background-color: #5eead4;
    color: #00414C;
    /* Trava a cor do texto para não alterar no hover */
}

/* --- ESTILOS DA HERO SECTION --- */
.hero-section {
    display: flex;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #012014, #020804);
}

.sed-hero-content {
    width: 50%;
    padding: 80px 60px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sed-hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 40px;
    max-width: 450px;
}

.info-block {
    border-left: 3px solid #99f6e4;
    padding-left: 15px;
    margin-bottom: 40px;
}

.info-block p {
    margin-bottom: 5px;
    color: #e5e7eb;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #99f6e4;
    color: #064e3b;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    /* --- Adições para a tag <a> --- */
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary {
    background-color: #112a36;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    /* --- Adições para a tag <a> --- */
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* --- RECORTE DIAGONAL DA IMAGEM --- */
.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 5;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* É aqui que a mágica acontece: o polygon desenha a diagonal */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* --- SEÇÃO DE HISTÓRIA --- */
.about-history-section {
    position: relative;
    background-color: #f8f9fa;
    /* Fundo bem claro, quase branco */
    padding: 120px 20px;
    overflow: hidden;
    /* Evita que o brilho verde crie rolagem horizontal */
    font-family: 'Inter', sans-serif;
}

/* Efeito de luz verde no canto superior direito */
.green-glow-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle, rgba(10, 255, 120, 0.4) 0%, rgba(248, 249, 250, 0) 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    /* Garante que o brilho não atrapalhe os cliques no site */
}

.history-container {
    position: relative;
    z-index: 10;
    /* Garante que o conteúdo fique acima do brilho verde */
    max-width: 1100px;
    margin: 0 auto;
}

/* Linha do vídeo */
.video-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
}

.video-player-wrapper {
    width: 550px;
    height: 320px;
    background-color: #d1d5db;
    /* Cor cinza do placeholder */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Faz o vídeo preencher todo o quadrado sem distorcer */
    border: none;
}

.video-caption p {
    color: #8c8c8c;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 15px;
    /* Alinha sutilmente mais para baixo em relação ao topo do vídeo */
}

/* Linha de textos - Deslocada para a direita como no design */
.history-content {
    max-width: 800px;
    margin-left: auto;
    /* Empurra o conteúdo para a direita */
    padding-left: 40px;
    /* Cria o distanciamento exato em relação ao lado esquerdo do vídeo */
}

.history-content h2 {
    color: #023c32;
    /* Verde bem escuro/Teal */
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.text-blocks p {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.text-blocks p:last-child {
    margin-bottom: 0;
}

/* --- RESPONSIVIDADE (Tablets e Celulares) --- */
@media (max-width: 900px) {
    .video-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-player-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        /* Mantém a proporção do vídeo */
    }

    .history-content {
        margin-left: 0;
        padding-left: 0;
    }

    .history-content h2 {
        font-size: 32px;
    }
}

.video-player-wrapper {
    width: 550px;
    height: 320px;
    background-color: #d1d5db;
    /* Cor de fundo caso o vídeo demore a carregar */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    /* Importante para o iframe se comportar bem */
}

/* Alterado de 'video' para 'iframe' */
.video-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- SEÇÃO DE PROPOSTA DE VALOR --- */
.value-proposition-section {
    position: relative;
    background-color: #010604;
    /* Fundo super escuro */
    padding: 100px 20px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

/* Efeitos de Luz no Fundo */
.glow-bg {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.glow-bg.top-left {
    top: -20%;
    left: -20%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(1, 6, 4, 0) 60%);
}

.glow-bg.bottom-right {
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(1, 6, 4, 0) 60%);
}

.value-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

/* Textos do Cabeçalho */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.highlight-green {
    color: #6ee7b7;
    /* Verde claro brilhante */
    font-weight: 600;
}

.section-header p {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.5;
    max-width: 700px;
}

/* Grid dos Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Estilo Individual do Card */
.feature-card {
    background-color: #0c1a16;
    /* Fundo verde super escuro da base do card */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Efeito Visual do Topo do Card (Cone de Luz) */
/* Container que segura a imagem no topo do card */
.card-visual {
    height: 160px;
    width: 100%;
    overflow: hidden;
    /* Garante que a imagem não morda os cantos arredondados do card */
    position: relative;
}

/* Estilização da imagem interna */
.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Faz a imagem preencher todo o espaço cortando as sobras, sem distorcer */
    display: block;
}

/* Opcional: Adiciona um filtro escuro suave sobre as imagens para manter a identidade do site */
.card-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(12, 26, 22, 0.8));
    pointer-events: none;
}

/* Recriando os gradientes visuais da imagem via CSS */
.gradient-1 {
    background: conic-gradient(from 180deg at 50% 60%, #032014, #34d399, #032014);
}

.gradient-2 {
    background: conic-gradient(from 180deg at 50% 60%, #6ee7b7, #10b981, #022c22);
}

.gradient-3 {
    background: conic-gradient(from 180deg at 50% 60%, #022c22, #4ade80, #064e3b);
}

.gradient-4 {
    background: conic-gradient(from 180deg at 50% 60%, #064e3b, #10b981, #020617);
}

/* Conteúdo de Texto do Card */
.card-content {
    padding: 30px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: #a7f3d0;
    /* Verde pastel para o título do card */
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

.card-content p {
    color: #9ca3af;
    /* Cinza claro */
    font-size: 14px;
    line-height: 1.6;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 colunas em tablets */
    }
}

@media (max-width: 640px) {
    .cards-grid {
        grid-template-columns: 1fr;
        /* 1 coluna em celulares */
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }
}

/* --- SEÇÃO DA AGENDA (DOIS DIAS) --- */
.agenda-section {
    position: relative;
    background-color: #ffffff;
    /* Fundo branco */
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    overflow: hidden;
}

/* --- TIPOGRAFIA DO CABEÇALHO --- */
.agenda-header {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
    text-align: center;
}

/* Aplicando a Space Grotesk em todo o h2 garantidamente */
.agenda-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
}

/* Linha 1: "Dois Dias." */
.text-top {
    font-weight: 400;
    color: #111827;
}

/* Linha 2: O Degradê de Verde para Preto */
.text-gradient {
    font-weight: 500;
    letter-spacing: -1.5px;

    /* Cria um gradiente linear da esquerda para a direita (ajuste os códigos das cores se precisar) */
    background: linear-gradient(to right, #00df73 0%, #1f2937 90%);

    /* A mágica do CSS para fazer o gradiente pintar apenas as letras do texto */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.agenda-subtitle {
    font-family: 'Inter', sans-serif;
    color: #111827;
    font-size: 18px;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

.green-text {
    color: #22c55e;
    font-weight: 600;
    letter-spacing: -1px;
}

.dark-text {
    color: #1f2937;
    font-weight: 600;
    letter-spacing: -1px;
}



/* Container do Grid */
.agenda-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 50px auto;
    position: relative;
    z-index: 10;
    text-align: left;
    /* Volta o texto dos cards para a esquerda */
}

/* Estilo Base dos Cards */
.agenda-card {
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.card-date {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.card-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 15px;
    margin-bottom: 30px;
}

/* Estilização Específica do Card Escuro (Dia 01) */
.dark-card {
    background-color: #06130c;
    color: #ffffff;
}

.dark-card .card-date {
    color: #86efac;
}

.dark-card .card-title {
    color: #86efac;
}

.dark-card .card-desc {
    color: #d1d5db;
}

.dark-card .agenda-list li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-card strong {
    color: #ffffff;
    font-weight: 600;
}

/* Estilização Específica do Card Claro (Dia 02) */
.light-card {
    background-color: #f8faf9;
    border: 1px solid #86efac;
    /* Borda verde clara */
    color: #111827;
}

.light-card .card-date {
    color: #4b5563;
}

.light-card .card-title {
    color: #111827;
}

.light-card .card-desc {
    color: #064e3b;
    font-weight: 500;
}

.light-card .agenda-list li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.light-card strong {
    color: #064e3b;
    font-weight: 600;
}

/* Estilização das Listas internas */
.agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.agenda-list li {
    padding: 24px 0 24px 16px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

/* Criando o Bullet (bolinha) customizado para as listas */
.agenda-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 24px;
    font-size: 16px;
}

/* Botão Inferior */
.agenda-action {
    position: relative;
    z-index: 10;
}

.btn-agenda {
    background-color: #0f172a;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    /* --- Adições para a tag <a> --- */
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-agenda:hover {
    background-color: #1e293b;
}

/* Gradiente Verde Fixo na Base */
.agenda-bottom-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to top, rgba(167, 243, 208, 0.6) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .agenda-cards-container {
        grid-template-columns: 1fr;
        /* Muda para 1 coluna no celular/tablet */
    }

    .agenda-title {
        font-size: 36px;
    }

    .agenda-subtitle {
        font-size: 16px;
    }
}

/* --- SEÇÃO DE PALESTRANTES --- */
.speakers-section {
    background-color: #031008;
    /* Verde bem escuro, fiel ao design */
    padding: 100px 0;
    /* Padding lateral zerado para o carrossel vazar nas bordas */
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    /* Importante para não gerar barra de rolagem horizontal */
}

/* Container que segura o cabeçalho alinhado ao centro */
.speakers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Layout do Cabeçalho */
.speakers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.speakers-title-block h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 500;
}

.text-white {
    color: #ffffff;
}

.text-light-green {
    color: #86efac;
    /* Verde claro/Neon */
    font-weight: 600;
}

.speakers-title-block p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
}

.btn-all-speakers {
    background-color: #86efac;
    color: #064e3b;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-all-speakers:hover {
    background-color: #4ade80;
}


/* --- CARROSSEL INFINITO --- */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Removemos o gap daqui para a matemática de 50% ser exata */
.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 45s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
    /* Pausa ao passar o mouse */
}

/* O segredo do loop perfeito: padding-right igual ao gap */
.carousel-group {
    display: flex;
    gap: 24px;
    padding-right: 24px;
}

/* A animação agora roda exatamente 50% (o tamanho exato de um grupo inteiro) */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

/* --- ESTILO DAS IMAGENS DOS CARDS PRONTOS --- */
.speaker-card-img {
    width: 280px;
    height: auto;
    border-radius: 12px;
    flex-shrink: 0;
    /* Impede que os cards sejam esmagados */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .speakers-header {
        flex-direction: column;
        gap: 24px;
    }

    .speakers-title-block h2 {
        font-size: 32px;
    }

    /* Acelera um pouco a animação no mobile, já que a tela é menor */
    .carousel-track {
        animation-duration: 20s;
    }
}

/* --- SEÇÃO DE DEPOIMENTOS --- */
.testimonials-section {
    position: relative;
    background-color: #f8faf9;
    /* Fundo bem clarinho */
    padding: 100px 20px 150px;
    /* Padding extra embaixo para o brilho verde ter espaço */
    font-family: 'Inter', sans-serif;
    text-align: center;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    z-index: 10;
    /* Mantém o conteúdo acima do brilho do fundo */
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-title {
    /* Se estiver usando a Space Grotesk aqui também, descomente a linha abaixo */
    /* font-family: 'Space Grotesk', sans-serif; */
    font-size: 42px;
    color: #063126;
    /* Verde/Teal bem escuro */
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* Grid para os cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Estilo do Card individual */
.testimonial-card {
    background-color: #0b1c1c;
    /* Fundo escuro azulado/esverdeado */
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
}

.testimonial-text {
    color: #d1d5db;
    /* Texto cinza claro */
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    /* O flex-grow garante que este bloco empurre o 'author-info' lá para o rodapé do card */
    flex-grow: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    color: #9ca3af;
    font-size: 14px;
}

.author-company {
    color: #86efac;
    /* Verde neon da empresa */
    font-size: 18px;
    font-weight: 600;
}

/* Efeito de brilho radial verde na base da tela */
.testimonials-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 350px;
    /* Cria uma elipse de luz verde saindo do rodapé */
    background: radial-gradient(ellipse at bottom, rgba(74, 222, 128, 0.4) 0%, rgba(248, 250, 249, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        /* Muda para 1 coluna em telas menores */
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonials-title {
        font-size: 32px;
    }
}

/* --- SEÇÃO DE INGRESSOS (PRICING) --- */
.pricing-section {
    background-color: #031008;
    /* Verde super escuro, fiel ao design */
    padding: 120px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #ffffff;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Selo Superior (Lote Encerrado) */
.status-badge {
    background-color: #a7f3d0;
    /* Verde claro pastel */
    color: #064e3b;
    /* Texto escuro */
    padding: 10px 24px;
    border-radius: 999px;
    /* Formato de pílula */
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 40px;
    display: inline-block;
}

/* Título da Seção */
.pricing-title {
    font-family: 'Space Grotesk', sans-serif !important;
    /* Mantendo a identidade visual */
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* Wrapper do Card (Necessário para o selo sobreposto funcionar bem) */
.pricing-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Selo sobreposto no topo do card */
.card-badge {
    position: absolute;
    top: -18px;
    /* Metade para fora do card */
    left: 50%;
    transform: translateX(-50%);
    background-color: #86efac;
    /* Verde neon */
    color: #064e3b;
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* O Card em si */
.pricing-card {
    background-color: #f8faf9;
    /* Branco com leve tom esverdeado */
    border: 3px solid #86efac;
    /* Borda verde neon */
    border-radius: 12px;
    padding: 50px 40px 40px 40px;
    /* Padding top maior para compensar o selo */
    text-align: left;
    color: #111827;
    /* Texto escuro padrão do card */
}

.ticket-type {
    color: #0f766e;
    /* Teal médio */
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

/* Bloco do Preço */
.price-block {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
    color: #111827;
}

.currency {
    font-size: 36px;
    font-weight: 400;
    margin-right: 8px;
}

.amount {
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -2px;
}

.per-person {
    font-size: 16px;
    color: #4b5563;
    margin-left: 4px;
}

/* Alerta de Virada de Lote */
.price-alert {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 32px;
}

/* Lista de Benefícios */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.benefits-list li {
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Criando o bullet point customizado (bolinha menor e azulada/esverdeada) */
.benefits-list li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #0f766e;
    /* Cor do bullet */
    border-radius: 50%;
    margin-right: 12px;
}

/* Botão de Compra */
.btn-buy {
    width: 100%;
    background-color: #a7f3d0;
    color: #064e3b;
    border: 1px solid #86efac;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    /* --- Adições para a tag <a> --- */
    text-decoration: none;
    display: block;
    /* Importante para manter o width: 100% funcionando corretamente no link */
    text-align: center;
}

.btn-buy:hover {
    background-color: #86efac;
    transform: translateY(-2px);
    /* Leve efeito de elevação no hover */
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 640px) {
    .pricing-title {
        font-size: 36px;
    }

    .pricing-card {
        padding: 50px 24px 30px 24px;
    }

    .amount {
        font-size: 48px;
    }

    .currency {
        font-size: 28px;
    }
}

/* --- SEÇÃO DE PATROCINADORES --- */
.sponsors-section {
    background-color: #031008;
    /* Verde super escuro, mesmo fundo do restante do site */
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-align: center;
}

.sponsors-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Título Principal */
.sponsors-main-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

/* Título das Cotas (Black, Silver, etc) */
.sponsor-tier {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: 20px;
    /* Dá um respiro caso tenha cotas anteriores */
}

/* --- ESTILO DO CARD DA COTA BLACK --- */
.sponsor-card {
    background-color: #f8faf9;
    /* Fundo branco/off-white */
    border-radius: 12px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin-bottom: 60px;
    /* Espaçamento antes da próxima cota */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Container do Logo Black */
.sponsor-logo {
    flex-shrink: 0;
    width: 180px;
    /* Largura fixa para o logo não distorcer o layout */
    display: flex;
    justify-content: center;
}

.sponsor-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Texto descritivo */
.sponsor-desc {
    flex-grow: 1;
    text-align: left;
}

.sponsor-desc p {
    color: #1f2937;
    /* Cinza escuro/azulado */
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Botão Saiba Mais */
.sponsor-action {
    flex-shrink: 0;
}

.btn-sponsor {
    background-color: #0f172a;
    /* Azul/Cinza bem escuro (Slate 900) */
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 999px;
    /* Formato de pílula arredondada */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-sponsor:hover {
    background-color: #1e293b;
}

/* --- ESTILO DA COTA SILVER --- */
.silver-sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    /* Permite quebrar linha se houver muitos logos */
}

.silver-logo {
    max-width: 220px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.silver-logo:hover {
    opacity: 1;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .sponsor-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .sponsor-desc {
        text-align: center;
    }

    .sponsors-main-title {
        font-size: 28px;
    }
}

/* --- SEÇÃO CALL TO ACTION FINAL --- */
.cta-final-section {
    position: relative;
    background-color: #f8faf9;
    padding: 120px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    /* REMOVIDO o overflow: hidden daqui para a seta poder subir! */
}

/* Novo Wrapper para conter apenas o brilho e evitar scroll horizontal */
.cta-glow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Corta apenas o brilho, não a seta */
    pointer-events: none;
    z-index: 0;
}

/* Brilho Verde na Esquerda */
.cta-glow-left {
    position: absolute;
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    width: 50vw;
    height: 80vh;
    background: radial-gradient(ellipse at center, rgba(16, 255, 136, 0.35) 0%, rgba(248, 250, 249, 0) 70%);
    filter: blur(80px);
}

/* Seta Verde na Direita */
.cta-shape-right {
    position: absolute;
    top: -120px;
    /* É ESSE VALOR QUE FAZ ELA INVADIR A SEÇÃO DE CIMA. Aumente negativo (ex: -150px) se quiser que suba mais */
    right: 0;
    /* Cola na lateral direita da tela */
    width: 350px;
    z-index: 20;
    /* Z-index bem alto para garantir que fique por cima da faixa preta dos patrocinadores */
    pointer-events: none;
}

/* ... o restante do CSS do título, subtítulo e botão continuam iguais ... */

/* Container do Conteúdo */
.cta-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Título */
.cta-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 46px;
    color: #0c3830;
    /* Tom de verde/azul bem escuro */
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

/* Subtítulo */
.cta-subtitle {
    color: #1f2937;
    /* Cinza chumbo */
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Botão */
.btn-cta-final {
    background-color: #a7f3d0;
    color: #064e3b;
    border: 1px solid #86efac;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    /* --- Adições para a tag <a> --- */
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-cta-final:hover {
    background-color: #86efac;
    transform: translateY(-2px);
    /* Efeito de elevação ao passar o mouse */
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .cta-final-section {
        padding: 80px 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-shape-right {
        width: 180px;
        /* Seta menor no celular */
        top: -10px;
        right: -10px;
    }
}

/* --- ESTILOS DO FOOTER --- */
.main-footer {
    background-color: #020804;
    /* Fundo idêntico ao do Header */
    color: #ffffff;
    padding: 100px 60px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    /* Garante que não quebre em telas menores */
    gap: 40px;
}

/* --- Coluna 1: Logo e Textos --- */
.footer-brand {
    display: flex;
    flex-direction: column;
    max-width: 350px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.footer-logo .logo-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.1;
}

.footer-logo .logo-subtitle {
    color: #a3e635;
    /* Verde Neon */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
}

.footer-desc {
    color: #f3f4f6;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-copy {
    color: #f3f4f6;
    font-size: 15px;
}

/* --- Coluna 2 e 3: Links e Social --- */
.footer-nav,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #a3e635;
}

.social-title {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 4px;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    /* Empurra o texto pra esquerda e a seta pra direita */
    align-items: center;
    width: 160px;
    /* Largura fixa para deixar todas as setas perfeitamente alinhadas */
    transition: color 0.3s;
}

/* Efeito Hover das Redes Sociais */
.social-link svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
    color: #a3e635;
}

.social-link:hover svg {
    transform: translate(3px, -3px);
    /* Move a setinha sutilmente na diagonal */
    color: #a3e635;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .social-link {
        width: 100%;
        max-width: 200px;
    }
}