/* --- CSS DA PÁGINA DREAMER --- */

/* Hero */
.hero-dreamer {
    background: var(--gradiente-hero);
    padding: 80px 20px;
    text-align: center;
    color: white;
}
.hero-content h1 { font-size: 2.8rem; margin-bottom: 15px; }
.hero-content p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; opacity: 0.9; }


/* --- SEÇÃO DIVIDIDA (CARDS) --- */
.roles-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas iguais */
    gap: 40px;
    margin-top: -40px; /* Sobe um pouco pra ficar em cima do Hero */
    position: relative;
    z-index: 2;
}

.role-card {
    background-color: var(--cor-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--cor-borda);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

/* Header do Card (Parte colorida de cima) */
.role-header {
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.business .role-header { background: linear-gradient(135deg, #1e3c72, #2a5298); }
.individual .role-header { background: linear-gradient(135deg, #00b4db, #0083b0); }

.role-icon { font-size: 3rem; margin-bottom: 15px; }
.role-header h2 { font-size: 1.8rem; margin-bottom: 5px; }
.role-header p { opacity: 0.9; font-size: 0.9rem; }

/* Corpo do Card */
.role-body {
    padding: 30px;
    flex: 1; /* Ocupa o resto do espaço */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.role-body p {
    color: var(--cor-texto);
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

/* Ícones da lista com cores diferentes para cada card */
.business .benefits-list i { color: #FFD700; margin-top: 5px; } /* Dourado */
.individual .benefits-list i { color: #00d4ff; margin-top: 5px; } /* Ciano */

.benefits-list span {
    font-size: 0.95rem;
    color: var(--cor-texto);
}

/* Botões */
.btn-role {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-business {
    background-color: transparent;
    border: 2px solid #2a5298;
    color: #2a5298;
}
body.dark-mode .btn-business { color: #8faae8; border-color: #8faae8; }

.btn-business:hover { background-color: #2a5298; color: white; }

.btn-individual {
    background-color: transparent;
    border: 2px solid #0083b0;
    color: #0083b0;
}
body.dark-mode .btn-individual { color: #00d4ff; border-color: #00d4ff; }

.btn-individual:hover { background-color: #0083b0; color: white; }


/* --- FORMULÁRIO FINAL --- */
.join-form-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--cor-fundo);
}

.join-form-section h2 { color: var(--cor-titulo); margin-bottom: 10px; }
.join-form-section p { color: var(--cor-texto); margin-bottom: 30px; }

.simple-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.simple-form input, 
.simple-form select {
    flex: 1;
    min-width: 200px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--cor-borda);
    background-color: var(--cor-card);
    color: var(--cor-texto);
    outline: none;
}

.simple-form button {
    padding: 12px 30px;
    background-color: var(--cor-destaque);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}
.simple-form button:hover { background-color: #0056b3; }

/* Responsividade */
@media (max-width: 768px) {
    .roles-container {
        grid-template-columns: 1fr; /* Um card embaixo do outro */
        margin-top: 30px;
    }
}