/* quienes-somos.css - Estilos específicos para la página Quiénes Somos */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-medio) 100%);
    color: var(--blanco);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../assets/img/hero-pattern.svg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    background: var(--verde-corporativo);
    color: var(--azul-oscuro);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: var(--gris-claro);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--azul-oscuro);
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--texto-principal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-highlight {
    font-size: 1.3rem;
    color: var(--azul-oscuro);
    font-weight: 600;
    background: var(--blanco);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--verde-corporativo);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: var(--blanco);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.expertise-item {
    background: var(--gris-claro);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.expertise-item:hover {
    background: var(--blanco);
    border-color: var(--verde-corporativo);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 224, 59, 0.2);
}

.expertise-check {
    width: 30px;
    height: 30px;
    background: var(--verde-corporativo);
    color: var(--azul-oscuro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.expertise-item span:last-child {
    font-weight: 500;
    color: var(--azul-oscuro);
}

/* Standards Section */
.standards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-medio) 100%);
    color: var(--blanco);
}

.standards-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.standards-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--verde-corporativo);
    font-weight: 600;
}

.standards-list {
    list-style: none;
    padding: 0;
}

.standards-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}

.standards-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--verde-corporativo);
    font-weight: 700;
}

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

/* Differentiators Section */
.differentiators-section {
    padding: 100px 0;
    background: var(--gris-claro);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diff-card {
    background: var(--blanco);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 224, 59, 0.1), transparent);
    transition: left 0.6s ease;
}

.diff-card:hover::before {
    left: 100%;
}

.diff-card:hover {
    transform: translateY(-10px);
    border-color: var(--verde-corporativo);
    box-shadow: 0 20px 40px rgba(194, 224, 59, 0.2);
}

.diff-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(194, 224, 59, 0.1) 0%, rgba(194, 224, 59, 0.2) 100%);
    border: 2px solid var(--verde-corporativo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--azul-oscuro);
}

.diff-card:hover .diff-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--azul-oscuro);
    background: linear-gradient(135deg, rgba(33, 59, 80, 0.1) 0%, rgba(64, 90, 117, 0.1) 100%);
}

.diff-card h3 {
    font-size: 1.4rem;
    color: var(--azul-oscuro);
    margin-bottom: 1rem;
    font-weight: 600;
}

.diff-card p {
    color: var(--texto-principal);
    line-height: 1.6;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--verde-corporativo);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--azul-oscuro);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--azul-oscuro);
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: var(--azul-oscuro);
    color: var(--blanco);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(33, 59, 80, 0.3);
}

.cta-button:hover {
    background: var(--azul-medio);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 59, 80, 0.4);
}

/* Section Title Global */
.section-title {
    font-size: 2.5rem;
    color: var(--azul-oscuro);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.standards-section .section-title {
    color: var(--blanco);
}

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

.diff-card {
    animation: fadeInUp 0.6s ease forwards;
}

.diff-card:nth-child(1) { animation-delay: 0.1s; }
.diff-card:nth-child(2) { animation-delay: 0.2s; }
.diff-card:nth-child(3) { animation-delay: 0.3s; }
.diff-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-content h2,
    .section-title,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .standards-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-card {
        padding: 2rem;
    }
    
    .diff-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .intro-section,
    .expertise-section,
    .standards-section,
    .differentiators-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

.hero-bg {
    background-image: url('../../assets/img/hero-somos.jpg');
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 59, 80, 0.8) 0%, rgba(64, 90, 117, 0.7) 100%);
    z-index: 1;
}

.hero-section {
    background-color: var(--azul-oscuro);
    background-image: url('../../assets/img/hero-somos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay; /* Mezcla la imagen con el fondo azul */
    color: var(--blanco);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 4. RESPONSIVE - Mantener consistencia con index */

@media (max-width: 768px) {
    .hero-section,
    .hero-bg {
        background-attachment: scroll;
        padding: 100px 0 60px;
    }
}