@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* Reset básico */
body, h1, h2, h3, p, ul, li, a, button, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Clash Display', 'Poppins', sans-serif; /* Fonte similar à original, precisa verificar a exata */
    border: none;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid #333; /* Estimativa, verificar original */
}
header .container {
    display: flex;
    justify-content: center; /* Centralizado como no original */
    align-items: center;
}
.logo {
    height: 50px; /* Ajustar conforme o tamanho real */
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #0a0a0a; /* Cor de fundo sutil, verificar original */
}
.hero {
    min-height: 70vh; /* Para dar mais altura à seção hero */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700; /* Mais próximo do original */
}
.hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    margin-top: 40px; /* Mais espaço acima dos botões */
}
.hero-buttons .btn {
    background-color: #8A2BE2; /* Roxo - cor primária do site */
    color: #fff;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
.hero-buttons .btn:hover {
    background-color: #7B1FA2; /* Roxo mais escuro */
}
.vagas-limitadas {
    margin-top: 20px;
    font-style: italic;
    font-size: 0.9em;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 50px 20px;
    background-color: #121212; /* Outro tom escuro */
}
.intro .container p {
    margin-bottom: 20px;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.intro .btn-cta {
    background-color: #00C2FF; /* Azul ciano - cor secundária */
    color: #000;
    padding: 18px 35px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}
.intro .btn-cta:hover {
    background-color: #00A8E0; /* Azul ciano mais escuro */
}
.decorative-element-top, .decorative-element-bottom {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto; /* Ajustar conforme o asset original */
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #333;
    font-size: 0.9em;
}
.logo-footer {
    height: 40px; /* Ajustar */
    margin-bottom: 15px;
}
footer p {
    margin-bottom: 10px;
}
.footer-links a {
    color: #00C2FF;
    margin: 0 10px;
}
.footer-links a:hover {
    text-decoration: underline;
}

/* About Event Section */
.about-event {
    padding: 50px 20px;
    text-align: center;
}
.about-event h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #00C2FF; /* Cor secundária para títulos de seção */
}
.about-event p {
    font-size: 1.1em;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Izaias Section */
.about-izaias {
    padding: 50px 20px;
    background-color: #0a0a0a;
    text-align: center;
}
.izaias-photo {
    max-width: 100%;
    height: auto;
    width: 300px; /* Ajustar tamanho */
    border-radius: 10px; /* Se a original tiver bordas arredondadas */
    margin-bottom: 25px;
}
.about-izaias h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #00C2FF;
}
.about-izaias p {
    font-size: 1.1em;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Izaias Media Section */
.izaias-media {
    padding: 50px 20px;
    text-align: center;
}
.izaias-media h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #00C2FF;
}
.izaias-media p {
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.media-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Para quebrar em telas menores */
}
.media-grid img {
    width: 100%;
    max-width: 300px; /* Ajustar tamanho */
    height: auto;
    border-radius: 8px;
    border: 2px solid #333; /* Borda sutil */
}

/* Speakers Section */
.speakers {
    padding: 50px 20px;
    text-align: center;
    background-color: #121212;
}
.speakers h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #00C2FF;
}
.speakers > .container > p { /* Parágrafo diretamente filho do container da seção */
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsivo */
    gap: 30px;
    text-align: left;
}
.speaker-card {
    background-color: #1f1f1f; /* Cor de card */
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
}
.speakers-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Aumentar minmax */
    gap: 35px;
}
.speaker-card {
    display: flex; /* Para melhor controle interno */
    flex-direction: column;
    justify-content: space-between; /* Para alinhar conteúdo */
}
.speaker-card img {
    width: 100%;
    max-height: 250px; /* Limitar altura da imagem */
    object-fit: cover; /* Para não distorcer */
    border-radius: 6px;
    margin-bottom: 20px;
}
.speaker-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #00C2FF;
}
.speaker-card p {
    font-size: 0.95em;
    margin-bottom: 15px;
    line-height: 1.5;
}
.speaker-card a {
    color: #8A2BE2; /* Roxo */
    font-weight: bold;
    text-decoration: underline;
}
.speaker-card a:hover {
    color: #7B1FA2;
}

/* Schedule Section */
.schedule {
    padding: 50px 20px;
    text-align: center;
}
.schedule h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #00C2FF;
}
.schedule-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Para responsividade */
    gap: 30px;
    text-align: left;
    margin-bottom: 30px;
}
.schedule-day {
    background-color: #1f1f1f;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
    flex-basis: calc(33.333% - 20px); /* Três colunas com gap */
    min-width: 280px; /* Para não espremer demais */
}
.schedule-day h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #8A2BE2; /* Roxo */
    border-bottom: 2px solid #8A2BE2;
    padding-bottom: 10px;
}
.schedule-day ul li {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.4;
}
.schedule-note {
    font-style: italic;
    font-size: 0.9em;
    margin-top: 20px;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    text-align: center;
    background-color: #0a0a0a;
}
.pricing h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #fff; /* Título principal em branco */
}
.pricing h2 strong {
    color: #00C2FF; /* Destaque no título */
}
.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}
.pricing-card {
    box-shadow: 0 0 25px rgba(0, 194, 255, 0.2); /* Sombra sutil azulada */
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    width: 100%;
    max-width: 350px; /* Largura dos cards */
    text-align: center;
}
.pricing-card img:first-of-type { /* Ícone do lote */
    height: 60px; /* Ajustar */
    margin-bottom: 15px;
}
.pricing-card h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #00C2FF;
}
.pricing-card p {
    margin-bottom: 15px;
    font-size: 1em;
}
.pricing-card ul {
    margin-bottom: 20px;
    text-align: left;
    padding-left: 20px; /* Para alinhar com marcadores */
}
.pricing-card ul li {
    margin-bottom: 8px;
    list-style: disc; /* Marcadores padrão */
}
.price-from {
    font-size: 0.9em;
}
.price-main {
    font-size: 2.5em;
    font-weight: bold;
    color: #8A2BE2; /* Roxo */
    margin: 5px 0 10px 0;
}
.price-alternative {
    font-size: 1.1em;
    margin-bottom: 25px;
}
.btn-buy {
    background-color: #8A2BE2;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    display: block; /* Ocupar largura total */
    width: 100%;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}
.btn-buy:hover {
    background-color: #7B1FA2;
}
.btn-buy.disabled {
    background-color: #555;
    cursor: not-allowed;
    pointer-events: none;
}
.btn-buy.disabled:hover {
    background-color: #555;
}
    background-color: #7B1FA2;
}
.pricing-card img:last-of-type { /* Imagem de métodos de pagamento */
    max-width: 100%;
    height: auto;
}
.pricing-note {
    font-size: 1em;
    max-width: 700px;
    margin: 20px auto 0 auto;
}

/* FAQ Section */
.faq {
    padding: 50px 20px;
    text-align: left; /* Alinhamento do FAQ */
}
.faq h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #00C2FF;
    text-align: center;
}
.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #1f1f1f;
    border-radius: 8px;
    border: 1px solid #333;
}
.faq-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #fff; /* Cor do texto da pergunta */
}
.faq-item p {
    font-size: 1em;
    line-height: 1.6;
}

/* Help Section */
.help {
    padding: 50px 20px;
    text-align: center;
    background-color: #0a0a0a;
}
.logo-help {
    height: 50px; /* Ajustar */
    margin-bottom: 20px;
}
.support-footer h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #00C2FF;
}
.support-footer p {
    font-size: 1.1em;
    margin-bottom: 25px;
}
.btn-support {
    background-color: #00C2FF; /* Azul ciano */
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
.btn-support:hover {
    background-color: #00A8E0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }
    .hero p {
        font-size: 1em;
    }
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9em;
        display: block;
        margin-bottom: 10px;
    }
    .schedule-columns {
        flex-direction: column;
    }
    .schedule-day {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    .speakers-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        max-width: 90%;
    }
    .media-grid {
        flex-direction: column;
        align-items: center;
    }
    .media-grid img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }
    .container {
        width: 95%;
    }
    .about-event h2, .about-izaias h2, .izaias-media h2, .speakers h2, .schedule h2, .pricing h2, .faq h2, .help h3 {
        font-size: 1.8em;
    }
}
/* Fim dos estilos principais. Ajustes finos podem ser feitos conforme feedback. */