/* --- CABECERA NOSOTROS AJUSTADA --- */
.nosotros-header {
    /* Reducimos el margen para que pegue justo al borde rojo del navbar */

    /* Aumentamos el padding interno para centrar el título y que no se esconda */
    padding-top: 180px !important;
    padding-bottom: 40px !important;
    background-color: #001a35 !important;
    position: relative;
    z-index: 1;
    border-bottom: 4px solid #ff0000;
}

/* Estilo para las migas de pan (Breadcrumbs) */
.nosotros-header .breadcrumb {
    margin-bottom: 15px !important;
    background: transparent;
    padding: 0;
}

.nosotros-header .breadcrumb-item,
.nosotros-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
}

.nosotros-header .breadcrumb-item.active {
    color: #ffffff !important;
    font-weight: 700;
}

/* --- GLOBAL / UTILIDADES --- */
.fw-black { font-weight: 900 !important; }
.ls-1 { letter-spacing: 1px; }
.color-azul { color: #001a35; }


/* --- QUIÉNES SOMOS --- */
.about-main-content {
    /* Ajustamos el padding superior para eliminar el hueco blanco excesivo */
    padding-top: 60px !important;
    padding-bottom: 80px !important;
}

.section-title-hpl {
    border-left: 5px solid #ff0000;
    padding-left: 20px;
    color: #001a35;
    font-size: 2.5rem;
    font-weight: 800;
}

.about-img-wrapper {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.image-thunder-hover {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-img-wrapper:hover .image-thunder-hover {
    transform: scale(1.04);
}

/* --- TÍTULO DE IMPACTO TRUENO --- */
.italic-thunder {
    font-style: italic;
    font-weight: 900;
    color: #001a35;
    letter-spacing: -1px;
    font-size: 3.5rem;
    line-height: 1.1;
}

.thunder-icon {
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
    animation: thunder-blink 2.5s infinite;
}

@keyframes thunder-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

/* --- VALORES CARDS MODERNAS --- */
.transition-hover-value {
    transition: all 0.3s ease;
    border: 1px solid #eee !important;
    border-top: 4px solid transparent !important;
    background: #fff !important;
}

.transition-hover-value:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08) !important;
    border-top: 4px solid #ff0000 !important;
}

.img-value-modern {
    width: 80px;
    height: 80px;
    filter: grayscale(100%) opacity(0.7);
    transition: 0.4s ease;
}

.transition-hover-value:hover .img-value-modern {
    filter: grayscale(0%) opacity(1);
    transform: rotate(-5deg);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .nosotros-header {

        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }

    .italic-thunder {
        font-size: 2.2rem;
    }

    .about-main-content {
        padding-top: 40px !important;
    }
}
