/* =========================================================================
   seja-socio.css - Estilos da Página de Associação
   ========================================================================= */

/* Container Principal */
.socio-main {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

/* --- Introdução --- */
.socio-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.socio-intro h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.socio-intro p {
    font-size: 1.1rem;
    color: #555;
}

/* --- Lista de Benefícios --- */
.beneficios-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.beneficios-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beneficio-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

/* Remove margem do último item para não sobrar espaço */
.beneficio-item:last-child {
    margin-bottom: 0;
}

/* Círculo do Ícone */
.icon-wrapper {
    background: #e7f5ff;
    color: var(--primary-blue);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    flex-shrink: 0; /* Impede que o ícone amasse em telas pequenas */
}

/* Texto do Item */
.item-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--dark-blue);
}

.item-content span {
    color: #666;
    line-height: 1.5;
}

/* --- Área de Ação (CTA) --- */
.cta-container {
    margin-top: 4rem;
    text-align: center;
    background-color: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 12px;
}

.cta-container h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.cta-container p {
    margin-bottom: 2rem;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botões Padrão da Página */
.btn-socio {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    color: white;
    display: inline-block;
}

/* Efeito Hover (Substitui o JavaScript) */
.btn-socio:hover {
    transform: translateY(-3px);
    color: white; /* Mantém texto branco */
}

/* Variação Verde */
.btn-socio--green {
    background-color: #28a745;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

/* Variação Azul */
.btn-socio--blue {
    background-color: var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

/* Responsividade para Celular */
@media (max-width: 600px) {
    .beneficio-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-socio {
        width: 100%;
    }
}