.nosotros-hero {
    position: relative;
    height: 50vh; 
    min-height: 500px;
    background-color: var(--azul-intra, #003366);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nosotros-hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nosotros-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
}

.nosotros-hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.nosotros-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 51, 102, 0.6) 0%, rgba(0, 25, 50, 0.3) 100%);
    z-index: 2;
}

.nosotros-hero-content {
    position: relative;
    z-index: 3;
}

.nosotros-hero h1 {
    color: var(--blanco, #ffffff);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
    .nosotros-hero h1 {
        font-size: 2.5rem;
    }
}

.nosotros-intro {
    padding: 80px 5% 60px;
    background-color: var(--blanco, #ffffff);
}

.nosotros-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nosotros-intro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.nosotros-intro-lead {
    font-size: 1.15rem; 
    color: #444444;
    line-height: 1.8;
    font-weight: 400;
    text-align: justify;
    letter-spacing: -0.01em;
    word-spacing: -0.03em;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

.nosotros-intro-lead strong {
    color: var(--azul-intra, #003366);
    font-weight: 700;
}

.nosotros-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    display: block;
}

.nosotros-mvv-section {
    padding: 90px 5%;
    background-color: #ffffff;
}

.nosotros-mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.nosotros-mvv-card {
    background: #f1f5f9; 
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.05);
    border-top: 5px solid var(--rojo-intra, #cc0000); 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 51, 102, 0.1);
}

.nosotros-mvv-icon {
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nosotros-mvv-icon i {
    font-size: 2.2rem;
    color: var(--azul-intra, #003366);
}

.nosotros-mvv-text h2 {
    color: var(--azul-intra, #003366);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.nosotros-mvv-text p {
    text-align: justify;
    line-height: 1.7;
    color: #4b5563;
    font-size: 1.15rem; 
    letter-spacing: -0.01em;
    word-spacing: -0.03em;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

.nosotros-valores-container {
    margin-top: 90px;
    text-align: center;
}

.nosotros-valores-title {
    color: var(--azul-intra, #003366);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.nosotros-valores-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--rojo-intra, #cc0000);
}

.nosotros-valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.nosotros-valor-card {
    background: #f1f5f9; 
    padding: 35px;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 51, 102, 0.04);
    transition: all 0.3s ease;
}

.nosotros-valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.08);
}

.nosotros-valor-icon {
    flex: 0 0 65px;
    height: 65px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nosotros-valor-icon i {
    font-size: 2rem;
    color: var(--azul-intra, #003366);
}

.nosotros-valor-content h3 {
    color: var(--azul-intra, #003366);
    font-size: 1.4rem; 
    font-weight: 700;
    margin-bottom: 8px;
}

.nosotros-valor-content p {
    color: #334155;
    font-size: 1.15rem; 
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    letter-spacing: -0.01em;
    word-spacing: -0.03em;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

@media (max-width: 768px) {
    .nosotros-mvv-grid,
    .nosotros-valores-grid {
        grid-template-columns: 1fr;
    }

    .nosotros-valor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .nosotros-mvv-card {
        padding: 30px 20px;
    }

    .nosotros-valor-content p, 
    .nosotros-mvv-text p {
        text-align: justify;
    }
}