/* =========================================================
   NOSOTROS - HERO INTERNO
========================================================= */

.page-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-height) + 70px) 0 90px;
    background: linear-gradient( 90deg, rgba(2, 8, 14, 0.30) 0%, rgba(3, 12, 21, 0.18) 42%, rgba(3, 12, 21, 0.07) 72%, rgba(2, 8, 14, 0.02) 100% ), url("/images/hero-landscape-luz.png") center center / cover no-repeat;
    isolation: isolate;
}

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: radial-gradient( circle at 78% 42%, rgba(239, 37, 45, 0.16), transparent 30% ), radial-gradient( circle at 52% 30%, rgba(47, 154, 224, 0.12), transparent 34% );
    }

.page-hero-overlay {
    background: linear-gradient( 90deg, rgba(3, 16, 27, 0.42), rgba(3, 16, 27, 0.16) );
}

.page-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--lam-red);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

    .page-subtitle::before {
        content: "";
        width: 34px;
        height: 2px;
        background: var(--lam-red);
    }

.page-title {
    max-width: 920px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.5rem, 6vw, 7rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.52);
}

    .page-title strong {
        display: block;
        color: var(--lam-red);
    }

.page-description {
    max-width: 640px;
    margin-top: 30px;
    color: #b7c5cf;
    font-size: 1.08rem;
    line-height: 1.8;
}


/* =========================================================
   QUIÉNES SOMOS
========================================================= */

.about-company {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: radial-gradient( circle at 16% 30%, rgba(239, 37, 45, 0.08), transparent 28% ), linear-gradient( 180deg, #040b12, #071522 );
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 78px;
}

.about-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 26px;
}

    .about-image img {
        width: 100%;
        height: 100%;
        min-height: 520px;
        object-fit: cover;
        display: block;
        filter: brightness(0.82) contrast(1.08) saturate(0.94);
        transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
    }

    .about-image:hover img {
        transform: scale(1.055);
    }

    .about-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(2, 8, 14, 0.5), transparent 46% );
        pointer-events: none;
    }

.section-mini {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--lam-red);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-content h2,
.quality-content h2,
.human-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.6rem, 4.5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

    .about-content h2 strong,
    .quality-content h2 strong,
    .human-content h2 strong {
        color: var(--lam-red);
    }

.about-content p,
.quality-content p,
.human-content p {
    margin-top: 28px;
    color: #9fb0bc;
    font-size: 1rem;
    line-height: 1.85;
}


/* =========================================================
   MISIÓN / VISIÓN
========================================================= */

.about-principles {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: radial-gradient( circle at 78% 20%, rgba(50, 159, 232, 0.12), transparent 30% ), linear-gradient( 180deg, #071522, #040b12 );
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 70px;
}

.principle-card {
    position: relative;
    min-height: 430px;
    padding: 42px;
    overflow: hidden;
    border-radius: 26px;
}

.principle-number {
    position: absolute;
    top: 20px;
    right: 28px;
    color: rgba(255, 255, 255, 0.045);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
}

.principle-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(69, 169, 235, 0.24);
    border-radius: 18px;
    background: linear-gradient( 145deg, rgba(38, 133, 198, 0.18), rgba(8, 27, 42, 0.48) );
    color: #50b8ff;
    font-size: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.principle-icon-red {
    color: var(--lam-red);
    border-color: rgba(239, 37, 45, 0.28);
    background: linear-gradient( 145deg, rgba(239, 37, 45, 0.16), rgba(8, 27, 42, 0.48) );
}

.principle-label {
    display: block;
    margin-top: 36px;
    color: var(--lam-red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.principle-card h3 {
    margin: 14px 0 18px;
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1.2;
}

.principle-card p {
    color: #9fb1bf;
    line-height: 1.8;
}


/* =========================================================
   VALORES
========================================================= */

.values-wrapper {
    margin-top: 110px;
}

.values-heading {
    max-width: 760px;
}

    .values-heading h3 {
        margin: 0;
        color: #ffffff;
        font-size: clamp(2.4rem, 4vw, 4.6rem);
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: -0.035em;
    }

        .values-heading h3 strong {
            color: var(--lam-red);
        }

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 52px;
}

.value-card {
    min-height: 250px;
    padding: 28px 24px;
    border-radius: 20px;
}

.value-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(57, 155, 220, 0.12);
    color: #4cb4fb;
    font-size: 1.1rem;
}

.value-card h4 {
    margin: 24px 0 10px;
    color: #ffffff;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.value-card p {
    color: #91a4b2;
    font-size: 0.9rem;
    line-height: 1.6;
}


/* =========================================================
   POLÍTICA DE CALIDAD
========================================================= */

.quality-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    background: linear-gradient( 135deg, #03101a, #071a2a 50%, #030b12 );
}

.quality-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 80px;
}

.quality-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.quality-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.035);
    color: #c4d1da;
    font-size: 0.85rem;
}

    .quality-point i {
        color: var(--lam-red);
    }

.quality-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    border-radius: 30px;
}

.quality-card-ring {
    width: 160px;
    height: 160px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(74, 178, 245, 0.26);
    border-radius: 50%;
    box-shadow: 0 0 45px rgba(48, 158, 230, 0.1);
    animation: qualityRingPulse 3.6s ease-in-out infinite;
}

.quality-card-core {
    width: 105px;
    height: 105px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient( circle at 34% 28%, rgba(255, 255, 255, 0.22), rgba(239, 37, 45, 0.18) 32%, rgba(22, 83, 128, 0.22) 70% );
    color: #ffffff;
    font-size: 2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.quality-card > span {
    margin-top: 30px;
    color: var(--lam-red);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    font-weight: 800;
}

.quality-card > strong {
    margin-top: 10px;
    color: #ffffff;
    font-size: 2.8rem;
    text-transform: uppercase;
}

.quality-card > p {
    max-width: 280px;
    margin-top: 12px;
    color: #9eb0bc;
    line-height: 1.6;
}

@keyframes qualityRingPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 35px rgba(48, 158, 230, 0.08);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 0 60px rgba(239, 37, 45, 0.13);
    }
}


/* =========================================================
   CAPITAL HUMANO
========================================================= */

.human-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    background: radial-gradient( circle at 25% 50%, rgba(239, 37, 45, 0.08), transparent 30% ), linear-gradient( 180deg, #040b12, #071522 );
}

.human-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 80px;
}

.human-visual {
    position: relative;
}

.human-image-main {
    height: 560px;
    overflow: hidden;
    border-radius: 28px;
}

    .human-image-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.83) contrast(1.06);
        transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
    }

    .human-image-main:hover img {
        transform: scale(1.05);
    }

.human-floating-card {
    position: absolute;
    right: -30px;
    bottom: 36px;
    width: min(340px, 74%);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border-radius: 18px;
}

    .human-floating-card > i {
        width: 52px;
        height: 52px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        border-radius: 14px;
        background: rgba(239, 37, 45, 0.13);
        color: var(--lam-red);
    }

    .human-floating-card span {
        display: block;
        color: #859aa9;
        font-size: 0.66rem;
        font-weight: 800;
        letter-spacing: 0.16em;
    }

    .human-floating-card strong {
        display: block;
        margin-top: 4px;
        color: #ffffff;
        font-size: 1rem;
    }

.human-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 36px;
}

    .human-features > div {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.025);
        color: #c3d0d8;
    }

    .human-features i {
        color: #4db8ff;
    }


/* =========================================================
   RESPONSIVE - NOSOTROS
========================================================= */

@media (max-width: 1100px) {
    .values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .quality-grid {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .about-grid,
    .human-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 420px;
    }

        .about-image img {
            min-height: 420px;
        }

    .quality-card {
        min-height: 360px;
    }

    .human-floating-card {
        right: 20px;
    }
}

@media (max-width: 700px) {
    .page-hero {
        min-height: 66vh;
        padding: calc(var(--header-height) + 50px) 0 70px;
    }

    .page-title {
        font-size: clamp(2.8rem, 13vw, 4.8rem);
    }

    .about-company,
    .about-principles,
    .quality-section,
    .human-section {
        padding: 86px 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .principle-card {
        min-height: auto;
        padding: 30px;
    }

    .human-image-main {
        height: 430px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .human-features {
        grid-template-columns: 1fr;
    }

    .human-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quality-card-ring {
        animation: none;
    }
}

@section Scripts {
    <script src="~/js/nosotros.js" asp-append-version="true"></script>
}



/* =========================================================
   NOSOTROS
   TEMA AZUL HIELO
   DEJAR AL FINAL DE nosotros.css
========================================================= */


/* =========================================================
   1. FONDOS GENERALES
========================================================= */

.about-company.lam-light-section,
.about-principles.lam-light-section,
.quality-section.lam-light-section,
.human-section.lam-light-section {
    background: radial-gradient( circle at 50% 18%, rgba(255, 255, 255, 0.76), transparent 42% ), radial-gradient( circle at 90% 28%, rgba(64, 161, 220, 0.14), transparent 34% ), radial-gradient( circle at 8% 78%, rgba(239, 37, 45, 0.045), transparent 30% ), linear-gradient( 135deg, #d9eef9 0%, #c5e4f4 48%, #add8ed 100% ) !important;
    color: #102432 !important;
}


/* =========================================================
   2. TÍTULOS
========================================================= */

.about-company h1,
.about-company h2,
.about-company h3,
.about-principles h1,
.about-principles h2,
.about-principles h3,
.about-principles h4,
.quality-section h1,
.quality-section h2,
.quality-section h3,
.human-section h1,
.human-section h2,
.human-section h3 {
    color: #102432 !important;
}


/* =========================================================
   3. PÁRRAFOS
========================================================= */

.about-company p,
.about-principles p,
.quality-section p,
.human-section p {
    color: #405f72 !important;
}


/* =========================================================
   4. PALABRAS DESTACADAS
========================================================= */

.about-principles h2 strong,
.about-principles h3 strong,
.quality-section h2 strong,
.human-section h2 strong {
    color: var(--lam-red) !important;
}


/* =========================================================
   5. IMAGEN QUIÉNES SOMOS
========================================================= */

.about-image {
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    background: rgba(255, 255, 255, 0.28) !important;
    box-shadow: 0 26px 65px rgba(31, 77, 107, 0.15) !important;
}


/* =========================================================
   6. MISIÓN Y VISIÓN
========================================================= */

.principle-card {
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.62), rgba(220, 240, 250, 0.38) ) !important;
    border: 1px solid rgba(255, 255, 255, 0.74) !important;
    box-shadow: 0 26px 65px rgba(31, 77, 107, 0.14) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

    .principle-card h3 {
        color: #102432 !important;
    }

    .principle-card p {
        color: #405f72 !important;
    }

.principle-label {
    color: #286785 !important;
}

.principle-number {
    color: rgba(16, 36, 50, 0.08) !important;
}


/* =========================================================
   7. VALORES
========================================================= */

.value-card {
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.58), rgba(219, 239, 249, 0.35) ) !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    box-shadow: 0 22px 55px rgba(31, 77, 107, 0.12) !important;
}

    .value-card h4 {
        color: #102432 !important;
    }

    .value-card p {
        color: #405f72 !important;
    }


/* =========================================================
   8. POLÍTICA DE CALIDAD
========================================================= */

.quality-section {
    position: relative;
}

.quality-card {
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.64), rgba(220, 240, 250, 0.40) ) !important;
    border: 1px solid rgba(255, 255, 255, 0.76) !important;
    box-shadow: 0 28px 70px rgba(31, 77, 107, 0.15) !important;
}

    .quality-card > span {
        color: #286785 !important;
    }

    .quality-card > strong {
        color: #102432 !important;
    }

    .quality-card p {
        color: #405f72 !important;
    }


/* ORBES MÁS SUAVES SOBRE FONDO CLARO */

.quality-orb {
    opacity: 0.14 !important;
}

.quality-orb-one {
    background: rgba(60, 160, 222, 0.20) !important;
}

.quality-orb-two {
    background: rgba(239, 37, 45, 0.10) !important;
}


/* =========================================================
   9. PUNTOS DE CALIDAD
========================================================= */

.quality-point {
    background: rgba(255, 255, 255, 0.34) !important;
    border: 1px solid rgba(255, 255, 255, 0.62) !important;
    color: #244e64 !important;
}

    .quality-point span {
        color: #244e64 !important;
    }


/* =========================================================
   10. CAPITAL HUMANO
========================================================= */

.human-image-main {
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    box-shadow: 0 28px 70px rgba(31, 77, 107, 0.15) !important;
}


/* TARJETA FLOTANTE */

.human-floating-card {
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.72), rgba(216, 238, 249, 0.48) ) !important;
    border: 1px solid rgba(255, 255, 255, 0.80) !important;
    box-shadow: 0 22px 55px rgba(31, 77, 107, 0.16) !important;
}

    .human-floating-card span {
        color: #286785 !important;
    }

    .human-floating-card strong {
        color: #102432 !important;
    }


/* =========================================================
   11. CARACTERÍSTICAS DEL EQUIPO
========================================================= */

.human-features > div {
    background: rgba(255, 255, 255, 0.34) !important;
    border: 1px solid rgba(255, 255, 255, 0.62) !important;
    color: #244e64 !important;
}

.human-features span {
    color: #244e64 !important;
}


/* =========================================================
   12. ICONOS
========================================================= */

.principle-icon,
.value-icon,
.quality-card-core {
    background: rgba(255, 255, 255, 0.42) !important;
    border-color: rgba(38, 114, 163, 0.16) !important;
    color: #176d9e !important;
}

.principle-icon-red {
    color: var(--lam-red) !important;
    background: rgba(239, 37, 45, 0.08) !important;
    border-color: rgba(239, 37, 45, 0.18) !important;
}


/* =========================================================
   NOSOTROS - ACLARAR HERO
========================================================= */

/* =========================================================
   NOSOTROS - HERO MÁS CLARO
========================================================= */

/* Imagen */
.page-hero::before {
    filter: brightness(1.22) saturate(1.05) !important;
}

/* Overlay general casi transparente */
.page-hero-overlay {
    background: rgba(3, 16, 27, 0.03) !important;
    opacity: 1 !important;
}

/* Quitar sombreado lateral extra */
.page-hero::after {
    background: none !important;
    opacity: 0 !important;
}
