/* ===== NOSOTROS ===== */
.nosotros {
    max-width: 1100px;
    margin: 80px auto 162px;
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TÍTULO PRINCIPAL */
.nosotros h1 {
    text-align: center;
    font-size: 40px;
    color: #0b3c5d;
    margin-bottom: 40px;
    position: relative;
}

/* línea decorativa */
.nosotros h1::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #00b4d8;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* SUBTÍTULOS */
.nosotros h2 {
    margin-top: 30px;
    color: #0b3c5d;
}

/* PÁRRAFOS */
.nosotros p {
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

/* LISTA */
.nosotros ul {
    margin-top: 10px;
    padding-left: 20px;
}

.nosotros ul li {
    margin-bottom: 8px;
    color: #333;
    position: relative;
}

/* icono personalizado */
.nosotros ul li::before {
    color: #00b4d8;
    margin-right: 8px;
}

.grid-nosotros {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* CARD */
.box {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* IMAGEN */
.box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENIDO */
.box .contenido {
    padding: 20px;
}

/* TITULO */
.box h2 {
    font-size: 20px;
    color: #0b3c5d;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICONO */
.box h2 i {
    color: #0b3c5d;
}

/* TEXTO */
.box p,
.box ul {
    color: #555;
    margin-top: 10px;
}

/* LISTA */
.box ul {
    padding-left: 20px;
}

.box ul li {
    margin-bottom: 5px;
}

/* HOVER */
.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}