/* ==========================================================
   nosotros.css — Estilos exclusivos de nosotros.php
   ========================================================== */

/* =========================================================
   HERO — FOTO + OVERLAY + KEN BURNS
   ========================================================= */
#hero-nosotros {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #1A1929;
}
#hero-nosotros .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/recursos/nosotros/hero.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}
#hero-nosotros .hero-bg.loaded { transform: scale(1); }
#hero-nosotros .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,25,41,0.62);
    z-index: 2;
}
#hero-nosotros .hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 6vw 5vh;
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.2rem;
    display: block;
}
.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4.5rem, 12vw, 11rem);
    text-transform: uppercase;
    color: #ffffff;
    line-height: 0.92;
    margin: 0 0 2rem;
}
.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.hero-scroll-hint::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

/* =========================================================
   DESCRIPCIÓN GENERAL
   ========================================================= */
#descripcion {
    background: #EAE8E3;
    padding: 7rem 6vw;
}
#descripcion .inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
#descripcion .desc-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(26,25,41,0.4);
    display: block;
    margin-bottom: 1.2rem;
}
#descripcion h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 6vw, 7rem);
    text-transform: uppercase;
    color: #1A1929;
    line-height: 0.95;
    margin: 0 0 4rem;
    white-space: nowrap;
}
#descripcion .desc-text {
    max-width: 760px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(26,25,41,0.7);
    text-align: justify;
}

/* =========================================================
   MISIÓN Y VISIÓN
   ========================================================= */
#mision-vision {
    background: #1A1929;
    padding: 7rem 6vw;
}
#mision-vision .inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mv-block {
    padding: 4rem 4rem 4rem 0;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.mv-block:last-child {
    border-right: none;
    padding-left: 4rem;
    padding-right: 0;
}
.mv-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: 2rem;
}
.mv-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    text-transform: uppercase;
    color: #ffffff;
    line-height: 0.95;
    margin: 0 0 2rem;
}
.mv-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    text-align: justify;
}

/* =========================================================
   VALORES
   ========================================================= */
#valores {
    background: #EAE8E3;
    padding: 7rem 6vw;
}
#valores .inner {
    max-width: 1280px;
    margin: 0 auto;
}
#valores .val-header { margin-bottom: 4rem; }
#valores .val-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(26,25,41,0.4);
    display: block;
    margin-bottom: 1.2rem;
}
#valores h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 6vw, 7rem);
    text-transform: uppercase;
    color: #1A1929;
    line-height: 0.95;
    margin: 0;
    white-space: nowrap;
}
.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(26,25,41,0.1);
    border-left: 1px solid rgba(26,25,41,0.1);
}
.val-card {
    padding: 2.5rem;
    border-right: 1px solid rgba(26,25,41,0.1);
    border-bottom: 1px solid rgba(26,25,41,0.1);
}
.val-icon {
    width: 40px; height: 40px;
    stroke: rgba(26,25,41,0.3);
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    margin-bottom: 1.5rem;
}
.val-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: rgba(26,25,41,0.25);
    display: block;
    margin-bottom: 1.5rem;
}
.val-name {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #1A1929;
    line-height: 1;
    margin: 0 0 1rem;
    display: block;
}
.val-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(26,25,41,0.55);
}

/* =========================================================
   POLÍTICA EMPRESARIAL
   ========================================================= */
#politica {
    background: #1A1929;
    padding: 7rem 6vw;
}
#politica .inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 4rem;
}
#politica .pol-left h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    text-transform: uppercase;
    color: #ffffff;
    line-height: 0.95;
    margin: 0 0 1.5rem;
}
#politica .pol-left .pol-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: 1.2rem;
}
#politica .pol-right p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,0.55);
    text-align: justify;
    margin: 0;
}

/* =========================================================
   CV — DESCARGA
   ========================================================= */
#cv-section {
    background: #EAE8E3;
    padding: 7rem 6vw;
    border-top: 1px solid rgba(26,25,41,0.1);
}
#cv-section .inner {
    max-width: 1280px;
    margin: 0 auto;
}
#cv-section .cv-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(26,25,41,0.4);
    display: block;
    margin-bottom: 1.2rem;
}
#cv-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    text-transform: uppercase;
    color: #1A1929;
    line-height: 0.95;
    margin: 0 0 3rem;
}
.cv-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #EAE8E3;
    background: #1A1929;
    padding: 1rem 2.2rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.cv-btn:hover { opacity: 0.8; }
.cv-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cv-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1A1929;
    background: transparent;
    border: 1.5px solid #1A1929;
    padding: 1rem 2.2rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.cv-btn-outline:hover { opacity: 0.6; }
.cv-btn-outline svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================
   CTA CONTACTO (oscuro propio — NO usa footer CTA)
   ========================================================= */
#cta-contacto {
    background: #1A1929;
    padding: 7rem 6vw;
}
#cta-contacto .inner {
    max-width: 1280px;
    margin: 0 auto;
}
#cta-contacto .cta-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 2rem;
}
#cta-contacto h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0 0 3rem;
    color: #ffffff;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1A1929;
    background: #EAE8E3;
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.cta-btn:hover { opacity: 0.85; }

/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */
@media (max-width: 768px) {
    #hero-nosotros { height: 100dvh; }
    #hero-nosotros .hero-content { padding: 0 6vw 6vh; }
    .hero-title { font-size: clamp(3.5rem, 14vw, 6rem); }

    #descripcion { padding: 4rem 1.5rem; }
    #descripcion h2 { white-space: normal; font-size: clamp(2.8rem, 12vw, 5rem); }
    #descripcion .desc-text { font-size: 1rem; }

    #mision-vision { padding: 4rem 1.5rem; }
    #mision-vision .inner { grid-template-columns: 1fr; }
    .mv-block { border-right: none; padding-left: 0 !important; padding-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .mv-block:last-child { border-bottom: none; }

    #valores { padding: 4rem 1.5rem; }
    #valores h2 { white-space: normal; font-size: clamp(2.8rem, 12vw, 5rem); }
    .valores-grid { grid-template-columns: 1fr; }
    .val-card { padding: 2rem 1.5rem; }

    #politica { padding: 4rem 1.5rem; }
    #politica .inner { grid-template-columns: 1fr; gap: 2.5rem; }

    #cv-section { padding: 4rem 1.5rem; }

    #cta-contacto { padding: 5rem 1.5rem; }
}
