/* ===== HERO SOCIOS ===== */
.hero-socios {
    min-height: 60vh;
    background: linear-gradient(rgba(11,28,45,0.75), rgba(11,28,45,0.75)),
    url('https://images.unsplash.com/photo-1581092160562-40aa08e78837');
    background-size: cover;
    background-position: center;
}

/* ===== BENEFICIOS ===== */
.benefits-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-6px);
}

.benefit-card i {
    font-size: 36px;
    color: #ff9f1c;
    margin-bottom: 15px;
}

/* ===== FORMULARIO ===== */
.join-section {
    padding: 6rem 0;
    background: #0b1c2d;
    color: white;
}

.join-section .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.join-section .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #ff9f1c;
    box-shadow: none;
    color: white;
}

.btn-cta {
    background: #ff9f1c;
    border: none;
    font-weight: 600;
    padding: 10px 25px;
}

.btn-cta:hover {
    background: #ffb347;
}

.download-btn {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #0b1c2d;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.download-btn i {
    font-size: 16px;
    color: #ff9f1c;
}

.download-btn:hover {
    background: #ff9f1c;
    color: #fff;
    border-color: #ff9f1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.download-btn:hover i {
    color: #fff;
}