/* ===================================
   ESTILOS MEJORADOS PARA PÁGINA "QUIENES SOMOS"
   =================================== */

/* Hero Section Mejorado */
.about-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #0974af 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Our Story Section Mejorado */
.our-story {
    padding: 100px 0;
    background: #ffffff;
}

.our-story .section-title-custom h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
}

.our-story .section-title-custom h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.our-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Stats Cards Mejorados */
.stat-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-description {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Why Us Section Mejorado */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-us .section-title-custom h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.why-us .section-title-custom h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Feature Cards Mejorados */
.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon {
    transform: scale(1.1);
}

.feature-card .icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Leadership Section Mejorado */
.leadership {
    padding: 100px 0;
    background: #ffffff;
}

.leadership .section-title-custom h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.leader-card-center {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.leader-card-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #0974af);
}

.leader-card-center:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.leader-img-top {
    margin-bottom: 2rem;
    left: 50%;
    position: absolute;
    top: -115px;
    transform: translateX(-50%);
}   

.leader-img-top img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f8f9fa;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.leader-card-center:hover .leader-img-top img {
    transform: scale(1.05);
}

.leader-content-center h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.leader-content-center h4 {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-mission {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.leader-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

/* Newsletter Section Mejorado */
.newsletter-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #0974af 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.newsletter-cta .container {
    position: relative;
    z-index: 2;
}

.newsletter-cta .icon {
    margin-bottom: 1.5rem;
}

.newsletter-cta .icon i {
    font-size: 3rem;
    color: rgba(255,255,255,0.9);
}

.newsletter-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.newsletter-cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-cta .btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-cta .btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .our-story .section-title-custom h2,
    .why-us .section-title-custom h2,
    .leadership .section-title-custom h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .leader-card-center {
        padding: 2rem;
    }
    
    .newsletter-cta h2 {
        font-size: 2rem;
    }
    
    .newsletter-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .our-story,
    .why-us,
    .leadership {
        padding: 60px 0;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .leader-card-center {
        padding: 1.5rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-section,
.our-story,
.why-us,
.leadership,
.newsletter-cta {
    animation: fadeInUp 0.8s ease-out;
}

/* Efectos de hover adicionales */
.feature-card .icon {
    position: relative;
    overflow: hidden;
}

.feature-card .icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover .icon::after {
    left: 100%;
}

/* Story Image Wrapper */
.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    pointer-events: none;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-item i {
    color: #667eea;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: #2c3e50;
}

/* Leader Expertise */
.leader-expertise {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.expertise-item i {
    color: #667eea;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.expertise-item span {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Newsletter Benefits */
.newsletter-benefits {
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    color: rgba(255,255,255,0.9);
}

.benefit-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.benefit-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    margin-top: 3rem;
}

.hero-stats .stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hero-stats .stat-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .story-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .leader-expertise {
        padding: 1rem;
    }
    
    .newsletter-benefits {
        margin-top: 2rem;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
    }
} 