/* ============================================================
   NOSOTROS
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.nos-hero {
    height: var(--hero-h);
    background-image: url('../assets/banners/Valle_traslasierra_2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.nos-hero-overlay {
    width: 100%;
    padding: 4rem var(--hero-pad-x);
    background: linear-gradient(to top, rgba(40,15,10,0.75) 0%, transparent 100%);
    color: #fff;
}

.nos-hero-label {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 700;
    margin: 0 0 0.7rem;
    color: var(--salmon);
}

.nos-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 400;
    margin: 0;
    line-height: 1.12;
    color: #fff;
    text-shadow: 0 3px 24px rgba(0,0,0,0.35);
}

/* ── SECCIONES ───────────────────────────────────────────── */
.nos-section { padding: var(--section-y) 0; }

.nos-container {
    width: var(--content-w);
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--bordo);
    margin-bottom: 0.9rem;
}
.section-tag--light { color: var(--salmon); }

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 400;
    color: var(--bordo);
    margin: 0 0 2rem;
    line-height: 1.18;
}
.section-title--light { color: #fff; }

/* ── TEXTO ────────────────────────────────────────────────── */
.nos-text p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--muted);
    margin: 0 0 1.25rem;
    max-width: 70ch;
}

.nos-text--cols { columns: 2; gap: 3rem; }
.nos-text--cols p { max-width: none; break-inside: avoid; }

/* ── SECCIÓN OSCURA (ANFITRIONES) ────────────────────────── */
.nos-dark-section { background: var(--bordo); }

.nos-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.nos-split-image { position: relative; }
.nos-split-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
    box-shadow: var(--shadow);
}
.nos-split-image::before {
    content: '';
    position: absolute;
    inset: -16px 16px 16px -16px;
    border: 2px solid rgba(251, 213, 178, 0.5);
    border-radius: var(--radius);
    z-index: 0;
}

.nos-split-text p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--salmon);
    margin: 0 0 1.25rem;
    opacity: 0.92;
}

/* ── FILOSOFÍA ───────────────────────────────────────────── */
.nos-lead {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--muted);
    max-width: 65ch;
    margin: 0 0 3rem;
}

.nos-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
}

.nos-value h3 {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--bordo);
    margin: 0 0 0.7rem;
    line-height: 1.25;
}

.nos-value p {
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--muted);
    margin: 0;
}

/* ── QUOTE ────────────────────────────────────────────────── */
.nos-quote-section {
    padding: var(--section-y) 0;
    background: var(--salmon-soft);
}

.nos-quote {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--bordo);
    text-align: center;
    margin: 0;
    line-height: 1.3;
    font-style: italic;
}

/* ── CTA ──────────────────────────────────────────────────── */
.nos-cta-section {
    padding: var(--section-y) 0;
    text-align: center;
}

.nos-cta-section p {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--bordo);
    margin: 0 0 2rem;
}

.nos-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nos-cta-btn {
    display: inline-block;
    background: var(--bordo);
    color: var(--salmon);
    text-decoration: none;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(119, 26, 28, 0.22);
    transition: background 0.25s ease, transform 0.25s ease;
}
.nos-cta-btn:hover { background: var(--bordo-dark); transform: translateY(-3px); color: var(--salmon); }

.nos-cta-btn--outline {
    background: transparent;
    border: 2px solid var(--bordo);
    color: var(--bordo);
    box-shadow: none;
}
.nos-cta-btn--outline:hover { background: var(--bordo); color: var(--salmon); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .nos-hero-overlay { padding: 3rem var(--hero-pad-x); }
    .nos-text--cols { columns: 1; }
    .nos-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .nos-split-image img { height: 300px; }
    .nos-split-image::before { inset: -10px 10px 10px -10px; }
    .nos-values { grid-template-columns: 1fr; gap: 2rem; }
}
