/* ===== SECCION NOSOTROS ===== 
.nosotros-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, #0b0f2b, #0e1a3a);
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.nosotros-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.nosotros-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.nosotros-text {
    flex: 1;
}

.nosotros-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.nosotros-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5ff;
    margin-bottom: 15px;
}

.nosotros-image {
    flex: 1;
    text-align: right;
}

.nosotros-image img {
    max-width: 420px;
    border-radius: 50%;
    border: 4px solid #ff7a00;
}
*/
/* ===== NAV ACTIVO ===== 
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
    position: relative;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff7a00;
    border-radius: 10px;
}
*/
/* ===== SCROLL SUAVE ===== 
html {
    scroll-behavior: smooth;
}*/

/* ===== ANIMACIONES ===== 
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}*/

/* ===== NOSOTROS ===== 
.nosotros-section {
    padding: 120px 8%;
    background: #0b0f2b;
    color: #fff;
}

.nosotros-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.nosotros-image img {
    max-width: 380px;
    border-radius: 50%;
    border: 4px solid #ff7a00;
}
*/
/* ===== SOLUCIONES ===== 
.soluciones-section {
    padding: 120px 8%;
    background: #0e1a3a;
    color: #fff;
    text-align: center;
}
*/
/* ===== NAV ACTIVO ===== 
.nav-links a.active {
    color: #ff7a00;
}
*/