#aboutus {
    background-color: #1383fa;
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: calc(100vh - 20px); /* Ajusta altura */
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 40px 20px 80px 20px;

}
#aboutus .wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(Recursos/wave.png);
    background-size: 1000px 100px;
    z-index: 1;
}
.card-nosotros {
    width: 80%;
    max-width: 1100px;
    background-color: #1f1f1f;
    border-radius: 20px;
    padding: 30px;
    box-shadow:
        0 0 10px rgba(0, 123, 255, 0.6),
        0 0 25px rgba(0, 123, 255, 0.4);
    height: auto;
    overflow: visible;
    z-index: 5;
}
.titulo-nosotros {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #f2f3f4;
    margin-bottom: 20px;
}
.contenido-card-aboutus {
    display: flex;
    gap: 40px;
    align-items: center;
}

.texto-nosotros {
    color: #f2f3f4;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 25px;
    border-left: 2px solid #147EF9;
}
.nosotros-img img {
    width: 420px;
    border-radius: 15px;
    object-fit: cover;
}
/* Tablets (1024px y menos) */
@media (max-width: 1024px) {
    .contenido-card-aboutus {
        gap: 25px;
    }

    .nosotros-img img {
        width: 350px;
    }

    .texto-nosotros {
        font-size: 14px;
    }
}

/* Tablets y móviles grandes */
@media (max-width: 768px) {
    .contenido-card-aboutus {
        flex-direction: column;
        text-align: center;
    }

    .texto-nosotros {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #147EF9;
        padding-top: 20px;
    }

    .nosotros-img img {
        width: 100%;
        max-width: 450px;
    }
}

/* Móviles */
@media (max-width: 480px) {
    .card-nosotros {
        padding: 20px;
    }

    .titulo-nosotros {
        font-size: 28px;
    }

    .texto-nosotros {
        font-size: 14px;
        line-height: 1.6;
    }

    .nosotros-img img {
        max-width: 100%;
        border-radius: 12px;
    }
}
@media (max-width: 900px) {
    .contenido-card-aboutus {
        flex-direction: column;
        text-align: center;
    }

    .nosotros-img img {
        width: 100%;
        max-width: 400px;
    }

    .texto-nosotros {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #147EF9;
        padding-top: 20px;
    }
}

/*Contedio Mision y Vision*/
#misionvision {
    background: #F2F3F4;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.mv-container {
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

.mv-container h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 50px;
}

/* Contenedor de las tarjetas */
.mv-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Tarjetas */
.mv-card {
    background: linear-gradient(180deg, #1f1f1f, #141414);
    width: 350px;
    min-height: 380px;
    padding: 35px;
    border-radius: 16px;
    color: #f2f3f4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hover elegante */
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 0 15px rgba(0, 123, 255, 0.6),
        0 0 40px rgba(0, 123, 255, 0.3);
}

/* Títulos */
.mv-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Texto */
.mv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #dcdcdc;
}