/* ================================
   NOSOTROS / sitMI
   CSS dedicado, encapsulado por página
================================ */

.nosotros-page {
    background: var(--whitesmoke);
}

.nosotros-page .contenedor {
    max-width: 1180px;
}

.nosotros-breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 10px 0 22px;
    color: #6b7280;
    font-size: 0.86rem;
    line-height: 1.2;
}

.nosotros-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.nosotros-breadcrumb a:hover,
.nosotros-breadcrumb a:focus {
    color: var(--sienna);
    text-decoration: underline;
}

.nosotros-hero {
    max-width: 980px;
    margin-bottom: 28px;
}

.nosotros-antetitulo {
    margin: 0 0 8px;
    color: var(--sienna);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.nosotros-hero h1 {
    margin: 0;
    color: var(--azul-prusiano);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.nosotros-bajada {
    max-width: 860px;
    margin: 14px 0 0;
    color: #2f3438;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.55;
}

.nosotros-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.nosotros-card {
    border: 1px solid #d7e1ea;
    border-radius: 5px;
    background: var(--blanco);
    box-shadow: 0 1px 7px rgba(0, 49, 83, 0.08);
}

.nosotros-card--principal {
    padding: clamp(24px, 3vw, 42px);
}

.nosotros-card--lateral {
    position: sticky;
    top: 124px;
    padding: 24px;
}

.nosotros-card h2 {
    margin: 0 0 14px;
    color: var(--azul-prusiano);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.nosotros-card--principal h2:not(:first-child) {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.nosotros-card--principal p {
    margin: 0 0 17px;
    color: #222222;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.03rem;
    line-height: 1.72;
    text-align: justify;
}

.nosotros-card--principal p:last-child {
    margin-bottom: 0;
}

.nosotros-datos {
    display: grid;
    gap: 14px;
    margin: 0;
}

.nosotros-datos div {
    padding-bottom: 13px;
    border-bottom: 1px solid #e2e8f0;
}

.nosotros-datos div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.nosotros-datos dt {
    margin: 0 0 4px;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-transform: uppercase;
}

.nosotros-datos dd {
    margin: 0;
    color: #1f2933;
    font-size: 0.93rem;
    line-height: 1.4;
}

.nosotros-boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 22px;
    padding: 0 20px;
    border: 2px solid var(--azul-prusiano);
    border-radius: 4px;
    background: var(--azul-prusiano);
    color: var(--blanco);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.2s ease-in-out;
}

.nosotros-boton:hover,
.nosotros-boton:focus {
    background: #174866;
    border-color: #174866;
    color: var(--blanco);
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .nosotros-layout {
        grid-template-columns: 1fr;
    }

    .nosotros-card--lateral {
        position: static;
    }
}

@media (max-width: 768px) {
    .nosotros-breadcrumb {
        margin-top: 4px;
    }

    .nosotros-hero {
        margin-bottom: 22px;
    }

    .nosotros-card--principal p {
        font-size: 0.98rem;
        line-height: 1.62;
        text-align: left;
    }
}

@media (max-width: 520px) {
    .nosotros-card--principal,
    .nosotros-card--lateral {
        padding: 20px;
    }

    .nosotros-bajada {
        font-size: 1rem;
    }
}
