/* ============================================
   Sobre Nosotros - Estilos Personalizados
   ============================================ */

/* Hero Section */
.hero-about {
    background: linear-gradient(135deg, #2d5a27 0%, #1e3a8a 100%);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 40px;
}

.hero-about h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-about .lead {
    font-size: 1.5rem;
    opacity: 0.95;
}

/* Section Titles */
.section-title {
    color: #2d5a27;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2d5a27, #1e3a8a);
    border-radius: 2px;
}

/* Feature Cards */
.feature-card-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
}

.feature-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card-custom .card-body {
    padding: 2rem;
}

.feature-card-custom .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d5a27 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.feature-card-custom h4 {
    color: #2d5a27;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Benefit Lists */
.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list i {
    color: #2d5a27;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Sport Cards */
.sport-card-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    overflow: hidden;
}

.sport-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sport-card-custom .card-body {
    padding: 1.5rem;
}

.sport-card-custom h4 {
    color: #2d5a27;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sport-card-custom i {
    color: #ffc107;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section-custom {
    background: linear-gradient(135deg, #2d5a27 0%, #1e3a8a 100%);
    color: white;
    padding: 60px 0;
    border-radius: 16px;
    margin: 40px 0;
}

.cta-section-custom h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section-custom .btn-light {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
}

.cta-section-custom .btn-outline-light {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid white;
}

/* History Section */
.history-section {
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.history-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

/* Commitment Section */
.commitment-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

.commitment-section ul {
    list-style: none;
    padding: 0;
}

.commitment-section li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.commitment-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5a27;
    font-weight: 700;
    font-size: 1.25rem;
}

/* CTA B2B - Dueños de Complejos */
.cta-b2b-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    padding: 60px 0;
    border: 2px solid #2d5a27;
    border-radius: 16px;
    margin: 40px 0;
}

.cta-b2b-section .cta-b2b-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2d5a27 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.cta-b2b-section h2 {
    color: #2d5a27;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-b2b-section .lead {
    color: #495057;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-b2b-section .btn-success {
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-b2b-section .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.3);
}

.cta-b2b-section .btn-outline-success {
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #2d5a27;
    color: #2d5a27;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-b2b-section .btn-outline-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-about {
        padding: 60px 0 40px;
    }
    
    .hero-about h1 {
        font-size: 2rem;
    }
    
    .hero-about .lead {
        font-size: 1.1rem;
    }
    
    .feature-card-custom .card-body,
    .sport-card-custom .card-body {
        padding: 1.5rem;
    }
    
    .history-section,
    .commitment-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-section-custom {
        padding: 40px 1.5rem;
    }
    
    .cta-section-custom .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .cta-b2b-section {
        padding: 40px 1.5rem;
        margin: 30px 0;
    }

    .cta-b2b-section .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
}
