/* ==================== Página: Asociados ==================== */

.hero-asociados {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><filter id="blur"><feGaussianBlur in="SourceGraphic" stdDeviation="2"/></filter></defs><g opacity="0.15" filter="url(%23blur)"><circle cx="200" cy="100" r="40" fill="white"/><circle cx="400" cy="150" r="50" fill="white"/><circle cx="600" cy="120" r="35" fill="white"/><circle cx="800" cy="180" r="45" fill="white"/><circle cx="1000" cy="140" r="40" fill="white"/><line x1="200" y1="100" x2="400" y2="150" stroke="white" stroke-width="1"/><line x1="400" y1="150" x2="600" y2="120" stroke="white" stroke-width="1"/><line x1="600" y1="120" x2="800" y2="180" stroke="white" stroke-width="1"/><line x1="800" y1="180" x2="1000" y2="140" stroke="white" stroke-width="1"/></g></svg>');
    background-size: cover;
    background-position: center;
    padding: 100px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #ef4444;
}

.hero-asociados-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-asociados-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: white;
}

.hero-asociados-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-asociados-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ef4444;
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.btn-secondary {
    background: white;
    color: #1e293b;
    padding: 16px 36px;
    border-radius: 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-asociados-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(100, 150, 200, 0.3) 0%, rgba(50, 100, 180, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.beneficios-section {
    background: #f5f5f0;
    padding: 100px 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #64748b;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ef4444;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.benefit-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.banner-sticky {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    padding: 20px 60px;
    position: sticky;
    bottom: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-text::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    flex: 0 0 6px;
}

@media (max-width: 1024px) {
    .hero-asociados {
        padding: 80px 40px;
        flex-direction: column;
        text-align: center;
    }
    .hero-asociados-image { margin-top: 40px; }
    .beneficios-section { padding: 60px 40px; }
}

@media (max-width: 768px) {
    .hero-asociados { padding: 40px 20px; min-height: auto; }
    .hero-asociados-title { font-size: 36px; }
    .hero-asociados-subtitle { font-size: 16px; }
    .hero-asociados-cta { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    .hero-asociados-image { margin-top: 30px; }
    .image-placeholder { max-width: 100%; height: 300px; }
    .beneficios-section { padding: 40px 20px; }
    .beneficios-grid { grid-template-columns: 1fr; gap: 20px; }
    .banner-sticky { padding: 15px 20px; font-size: 12px; }
}
