/* ==========================================================
   SECCIÓN 2: NOSOTROS
   ========================================================== */
#nosotros {
    background: var(--negro-absoluto);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 130, 200, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(230, 0, 38, 0.7) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 56, 123, 0.7) 0%, transparent 70%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 10% 50px 10%;
}

.identidad-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.identidad-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.identidad-text {
    flex: 1;
}

.identidad-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--texto-brillante);
}

.identidad-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--texto-secundario);
    margin-bottom: 25px;
}

.text-azul-claro {
    color: var(--azul-claro) !important;
}

.btn-cta-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--azul-claro);
    color: var(--blanco);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: var(--azul-claro);
    box-shadow: var(--brillo-azul);
    transform: translateY(-2px);
}

.identidad-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-wrapper {
    border: 1px solid var(--gris-borde);
    padding: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: var(--sombra-premium);
    max-width: 100%;
}

.img-wrapper img {
    border-radius: 12px;
    max-height: 250px;
    width: 100%;
    object-fit: cover;
}

/* Cards de Valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card-valor {
    background: var(--gradiente-tarjeta);
    border: 1px solid var(--gris-borde);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-valor i {
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.card-valor h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--texto-brillante);
}

.card-valor p {
    font-size: 0.9rem;
    color: var(--texto-secundario);
    line-height: 1.5;
}

.card-valor:hover {
    transform: translateY(-8px);
    border-color: var(--azul-claro);
    box-shadow: var(--brillo-azul);
}

.card-valor.active {
    border-color: var(--azul-claro);
    box-shadow: 0 10px 25px rgba(34, 146, 187, 0.15);
}

.text-rojo { color: var(--rojo) !important; }
.text-info { color: #0dcaf0 !important; }

@media (max-width: 991px) {
    .identidad-content {
        flex-direction: column;
    }
}
