/* * Estilos Exclusivos: Landing Page Seja Membro
 * Arquivo: assets/css/seja-membro.css
 */

.membership-lp-container {
    background-color: #0E0C18; /* Dark Background */
    color: #fff;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

/* --- HERO SECTION --- */
.lp-hero {
    position: relative;
    padding: 160px 0 100px; /* Espaço para header fixo */
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #1F1D2B 0%, #0E0C18 70%);
}

/* Efeito de brilho de fundo */
.lp-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(230, 165, 92, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.lp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.lp-tag {
    display: inline-block;
    background: rgba(230, 165, 92, 0.15);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(230, 165, 92, 0.3);
}

.lp-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lp-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão CTA Principal */
.btn-lp-cta {
    background: linear-gradient(135deg, var(--gold) 0%, #C5A059 100%);
    color: #000 !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 165, 92, 0.3);
}

.btn-lp-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(230, 165, 92, 0.5);
    background: #fff;
}

/* Animação de Pulso */
.pulse-anim { animation: pulse-shadow 2s infinite; }
@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(230, 165, 92, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(230, 165, 92, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 165, 92, 0); }
}

.lp-safe-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* --- BENEFÍCIOS --- */
.lp-benefits {
    padding: 80px 20px;
    background-color: #111; /* Levemente diferente */
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}
.divider-gold {
    width: 60px; height: 3px; background: var(--gold); margin: 0 auto 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
}

.icon-box {
    width: 70px; height: 70px;
    background: rgba(230, 165, 92, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.benefit-card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.benefit-card.highlight {
    border-color: rgba(230, 165, 92, 0.3);
    background: linear-gradient(180deg, rgba(230, 165, 92, 0.05) 0%, rgba(0,0,0,0) 100%);
}

/* --- CTA FOOTER --- */
.lp-cta-footer {
    padding: 100px 0;
    text-align: center;
}

.cta-box-inner {
    background: linear-gradient(135deg, #2a2a2a 0%, #151515 100%);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.cta-box-inner h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative; z-index: 2;
}

.cta-box-inner p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative; z-index: 2;
}

.btn-large {
    padding: 20px 60px;
    font-size: 1.2rem;
    position: relative; z-index: 2;
}

/* Responsivo */
@media (max-width: 768px) {
    .lp-title { font-size: 2.5rem; }
    .lp-hero { padding-top: 140px; }
    .btn-lp-cta { width: 100%; justify-content: center; }
}