/* Updated: 2025-07-11 - Timestamp: 1752002600 */
/**
 * Quiénes Somos CSS - Estilos específicos para la página Quiénes Somos
 * Optimizada para SEO y experiencia de usuario
 */

/* ===== HERO SECTION ===== */

.hero-section-quienes-somos {
    background: linear-gradient(135deg, var(--color-orange-overlay) 0%, var(--color-orange-overlay) 100%),
                url('../images/banners/banner-who-we-are.webp'),
                url('../images/banners/banner-who-we-are.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.hero-section-quienes-somos::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section-quienes-somos .hero-content {
    display: flex;
    position: relative;
    z-index: 2;
}

/* Ocultar el título en el hero (usamos solo texto introductorio) */
.hero-section-quienes-somos .hero-title { display: none; }

.hero-section-quienes-somos .hero-intro {
    font-size: 20px;
    opacity: 0.98;
    margin-top: 8px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-section-quienes-somos .hero-image {
    text-align: center;
}

.hero-section-quienes-somos .hero-image i {
    font-size: 6.5rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ===== SIMPLE TEXT PAGE ===== */

.text-page {
    padding: 48px 0;
}

.info-section {
    margin-bottom: 32px;
}

.info-section h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-section p,
.info-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.info-section ul {
    padding-left: 20px;
}

/* ===== FEATURES GRID ===== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* ===== CTA SECTION ===== */

.cta-section {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--border-color));
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.cta-section h2 {
    color: var(--text-primary);
    font-size: var(--font-size-xxxl);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ===== SIDEBAR ===== */

.sidebar {
    position: sticky;
    top: 32px;
}

.sidebar-section {
    background: var(--color-white);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.sidebar-section h4 {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-section h4 i {
    color: var(--primary-color);
}

/* ===== STATS LIST ===== */

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.stat-item:hover {
    background: var(--border-color);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== BENEFITS LIST ===== */

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.benefits-list li i {
    color: var(--success-color);
    font-size: var(--font-size-base);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 992px) {
    .hero-section-quienes-somos .hero-intro { font-size: var(--font-size-base); }
    .hero-section-quienes-somos .hero-image i { font-size: 5rem; }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sidebar {
        position: static;
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .hero-section-quienes-somos {
        padding: 48px 0;
    }
    
    .hero-section-quienes-somos .hero-intro { text-align: center; }
    
    .content-section {
        padding: 32px 0;
    }
    
    .content-block {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .content-block h2 {
        font-size: 24px;
    }
    
    .cta-section {
        padding: 32px 24px;
    }
    
    .cta-section h2 {
        font-size: 29px;
    }
    
    .sidebar-section {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-section-quienes-somos .hero-image i {
        font-size: 64px;
    }
    
    .content-block {
        padding: 16px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== ANIMATIONS ===== */

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

.content-block,
.sidebar-section {
    animation: fadeInUp 0.6s ease-out;
}

.content-block:nth-child(2) { animation-delay: 0.1s; }
.content-block:nth-child(3) { animation-delay: 0.2s; }
.content-block:nth-child(4) { animation-delay: 0.3s; }

.sidebar-section:nth-child(2) { animation-delay: 0.4s; }
.sidebar-section:nth-child(3) { animation-delay: 0.5s; }

/* ===== ACCESSIBILITY ===== */

@media (prefers-reduced-motion: reduce) {
    .content-block,
    .sidebar-section,
    .feature-item {
        animation: none;
        transition: none;
    }
}

/* ===== PRINT STYLES ===== */

@media print {
    .hero-section-quienes-somos {
        background: white;
        color: black;
    }
    
    .cta-section,
    .sidebar-section {
        break-inside: avoid;
    }
} 