.socio-page {
    background: var(--bg-main);
    min-height: 100vh;
    padding-top: 80px;
}

.socio-content {
    padding: 2rem;
}

.socio-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.socio-main-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sección de Beneficios */
.benefits-section {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
}

.feature-preview {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-preview:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.feature-preview h5 {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-preview p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Call to Action */
.cta-section {
    text-align: center;
    padding: 2rem 0;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.btn-primary {
    background: var(--accent);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-hover, #e63946);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

/* Formulario de Registro */
.form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.form-label {
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    color: var(--text-main);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-options .form-check {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.payment-options .form-check:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(230, 57, 70, 0.3);
}

.payment-options .form-check:has(input[type="radio"]:checked) {
    border-color: var(--accent);
    background: rgba(230, 57, 70, 0.1);
}

.payment-options .form-check-label {
    color: var(--text-main);
    cursor: pointer;
    padding-left: 0.5rem;
    font-size: 0.95rem;
}

.payment-options .form-check-label strong {
    color: var(--text-main);
    font-size: 0.95rem;
}

.payment-options .form-check-label small {
    font-size: 0.8rem;
    margin-top: 0.1rem;
}

.payment-options .form-check-input {
    margin-top: 0.15rem;
}

/* Payment Card Layout */
.payment-card {
    display: block;
    padding: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.payment-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(230, 57, 70, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-check:checked + .payment-card {
    border-color: var(--accent);
    background: rgba(230, 57, 70, 0.15);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.payment-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.payment-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.payment-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.payment-card .badge {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.btn-check {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .socio-main-title {
        font-size: 2rem;
    }
    
    .socio-main-description {
        font-size: 1rem;
    }
    
    .benefits-title {
        font-size: 1.6rem;
    }
    
    .feature-preview {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
}
