/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000; /* Fundo Preto como na referência */
    color: #fff; /* Texto Branco */
    line-height: 1.6;
}

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

/* CORES DE DESTAQUE */
:root {
    --primary-color: #4a701c; /* Cor do Reino Business (Verde Musgo) */
    --accent-color: #ff9900; /* Laranja/Dourado para CTAs */
    --dark-card: #1a1a1a;
}

/* ------------------- HERO VIDEO ------------------- */
.hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
}

.hero-content-overlay {
    position: relative;
    z-index: 1;
    color: #fff;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* ------------------- BOTÃO CTA ------------------- */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #ffb433;
}

/* ------------------- SEÇÃO DE CARTÕES GERAIS ------------------- */
h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
}

.section-cards {
    padding: 60px 0;
}

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

/* Estilo do Cartão */
.card {
    background-color: var(--dark-card); 
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333; /* Borda sutil */
    transition: transform 0.3s;
}

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

.card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card p {
    color: #aaa;
}

/* ------------------- SEÇÃO BENEFÍCIOS (Fundo Escuro) ------------------- */
.section-benefits {
    padding: 80px 0;
    background-color: #000;
}

/* Ajusta o layout para 3 colunas, como na referência */
.benefit-card {
    text-align: left;
}

.benefit-card h3 {
    color: #fff;
}

/* ------------------- SEÇÃO CTA/VALOR/FORMULÁRIO ------------------- */
.section-cta {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-card);
    padding: 50px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    text-align: center;
    padding: 20px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 40px;
}

.pricing-card .price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: 10px 0;
}

.pricing-card .tag {
    background-color: var(--accent-color);
    color: #000;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Estilo do Formulário */
.form-register {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.form-register h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
}

.form-register input {
    padding: 12px 15px;
    margin-bottom: 15px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-register input::placeholder {
    color: #999;
}

/* ------------------- RODAPÉ ------------------- */
.footer {
    padding: 20px 0;
    background-color: #000;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-info p {
    margin: 5px 0;
    color: #aaa;
}

.copyright {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
}

/* ------------------- MEDIA QUERIES (Responsividade) ------------------- */
@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 30px;
    }

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

    .cta-box {
        padding: 30px;
    }
}


/* ------------------- SEÇÃO ANFITRIÃO/MENTOR ------------------- */
.section-mentor {
    padding: 80px 0;
    background-color: #000;
}

.mentor-box {
    display: flex;
    align-items: center;
    background-color: var(--dark-card); 
    border-radius: 10px;
    overflow: hidden; /* Garante que a borda do cartão fique nítida */
    padding: 0;
}

.mentor-image {
    width: 45%; /* Ocupa a metade esquerda, como na referência */
    position: relative;
    overflow: hidden;
}

.mentor-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: contain;
}

.mentor-info {
    width: 55%; /* Ocupa a metade direita */
    padding: 40px;
}

.mentor-info .role {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.mentor-info h2 {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 20px;
    padding-top: 0;
    color: var(--primary-color);
}

.mentor-info p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 15px;
}

.mentor-info .highlight {
    font-weight: 600;
    color: #fff;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

/* Responsividade para o Mentor */
@media (max-width: 768px) {
    .mentor-box {
        flex-direction: column;
    }

    .mentor-image {
        width: 100%;
        max-height: 300px; /* Limita a altura da imagem no mobile */
    }

    .mentor-info {
        width: 100%;
    }

    .mentor-info {
        text-align: center;
        padding: 30px;
    }

    .mentor-info h2 {
        text-align: center;
    }
}


/* ------------------- SEÇÃO PARCEIROS/APOIADORES ------------------- */
.section-partners {
    padding: 60px 0;
    background-color: #000;
}

.partners-grid {
    display: grid;
    /* 4 colunas para desktop. Ajuste o número conforme a quantidade de logos */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.partner-logo {
    width: 100%; 
    padding: 10px;
    opacity: 0.7; /* Suaviza os logos, como é comum em LPs */
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1; /* Destaque ao passar o mouse */
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Ajuste para logos coloridos em fundo escuro */
    /* filter: brightness(0) invert(1) grayscale(100%); */ 
    /* **ATENÇÃO:** Se seus logos já são brancos/cinzas, remova o 'filter' */
}

/* Responsividade para Parceiros */
@media (max-width: 768px) {
    .partners-grid {
        /* Muda para 2 colunas no mobile */
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* ------------------- HERO VIDEO (Responsividade) ------------------- */
@media (max-width: 768px) {
    #hero-video-background {
        display: none; /* Esconde o vídeo em telas menores */
    }

    .hero-video {
        height: 300px; /* Altura ajustada para mobile */
        background: url('img/maos.jpg') no-repeat center center/cover; /* Adiciona uma imagem de fundo */
    }

    .hero-content h1 {
        font-size: 2.2rem; /* Reduz o tamanho da fonte para mobile */
    }

    .hero-content .subtitle {
        font-size: 1.1rem; /* Reduz o tamanho da fonte para mobile */
    }
}