/* Hero de Página - MODIFICADO */
.page-hero-section {
    position: relative;
    overflow: hidden;
}

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Puedes ajustar el brightness si es necesario */
    /* filter: brightness(0.7); */
}

.page-hero-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* OVERLAY ESTÁNDAR NEGRO */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    /* O simplemente un color sólido */
    /* background: rgba(0, 0, 0, 0.5); */
}

.page-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
/* Sección Quiénes Somos */
.about-company-section {
    background: white;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.brand-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Sección Filosofía */
.philosophy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.philosophy-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2.5rem;
    box-shadow: var(--shadow-md);
}

/* Sección Misión y Visión */
.mission-card {
    border-top: 4px solid var(--primary-color) !important;
    transition: var(--transition);
}

.vision-card {
    border-top: 4px solid var(--accent-color) !important;
    transition: var(--transition);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

.mission-icon, .vision-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.mission-icon {
    background: var(--primary-light);
    color: var(--primary-color);
}

.vision-icon {
    background: rgba(255, 170, 0, 0.1);
    color: var(--accent-color);
}

.card-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.card-text {
    color: var(--secondary-color);
    line-height: 1.8;
    text-align: center;
}

/* Sección Valores */
.value-item {
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.value-item p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .value-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .mission-icon, .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}