/* ================================
   SECCIÓN NOSOTROS MODERNA
==================================*/
.nosotros-section {
    background: url('img/fondo-nosotros.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
}

@media (max-width: 991px) {
    .nosotros-section {
        padding-top: 130px !important;
    }
}

.nosotros-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.nosotros-section .container {
    position: relative;
    z-index: 2;
}

/* TARJETAS EXPERIENCIA, MISIÓN Y VISIÓN */
.nosotros-card {
    background: #111;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.5);
}

.nosotros-card i {
    color: #d4af37;
}

.nosotros-card h5 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 15px 0 10px;
    color: #d4af37;
}

.nosotros-card p {
    font-size: 0.95rem;
    color: #ddd;
}

.nosotros-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* CLIENTES */
.nosotros-section img {
    max-height: 60px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
}
.nosotros-section img:hover {
    transform: scale(1.1);
    filter: brightness(1) invert(0);
}


/* ESTADÍSTICAS */
.stats-card {
    background: #111;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    color: #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.5);
}
.stats-card i {
    color: #d4af37;
}
.stats-card h4 {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0 5px;
}
.stats-card p {
    font-size: 0.9rem;
    color: #fff;
}
.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.counter {
    font-weight: bold;
    color: #d4af37;
    font-size: 2rem;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .nosotros-card {
        padding: 25px 15px;
    }
    .nosotros-card h5 {
        font-size: 1.2rem;
    }
    .nosotros-card p {
        font-size: 0.9rem;
    }
    .stats-card h4 {
        font-size: 1.7rem;
    }
    .stats-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .nosotros-card h5 {
        font-size: 1.1rem;
    }
    .nosotros-card p {
        font-size: 0.85rem;
    }
    .stats-card h4 {
        font-size: 1.5rem;
    }
    .stats-card p {
        font-size: 0.8rem;
    }
}
