/* ══════════════════════════════════════════════════════════════
   NOSOTROS — estilo ExpoCasa3D
   ══════════════════════════════════════════════════════════════ */

.nosotros-page {
    background: var(--bg);
    padding: 0 !important;
    overflow-x: hidden;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.nosotros-page * { box-sizing: border-box; }

/* ── Section heads ── */
.ns-section-eyebrow {
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
    display: block;
}

.ns-section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text);
    margin: 0 0 14px;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.ns-section-head {
    text-align: center;
    padding: 36px 24px 18px;
}
.ns-section-head .ns-section-title { margin-bottom: 0; }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.ns-hero {
    position: relative;
    height: 380px;
    margin: 18px 24px 0;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg);
}

.ns-hero__bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) saturate(0.85);
    animation: nsHeroZoom 14s ease forwards;
}
@keyframes nsHeroZoom {
    from { transform: scale(1.10); }
    to   { transform: scale(1); }
}

.ns-hero__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(90deg,
        rgba(8,8,8,0.85) 0%,
        rgba(8,8,8,0.55) 45%,
        rgba(8,8,8,0.20) 100%);
}

.ns-hero__content {
    position: relative;
    height: 100%;
    padding: 56px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 660px;
}

.ns-hero__eyebrow {
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}

.ns-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.05;
    color: var(--text);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.ns-hero__lead {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    margin: 0;
    line-height: 1.5;
}

/* ════════════════════════════════════════
   STATS BAND
   ════════════════════════════════════════ */
.ns-stats {
    margin: 16px 24px 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 28px;
}

.ns-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ns-stat {
    text-align: center;
    border-right: 1px solid var(--line);
    padding: 4px 8px;
}
.ns-stat:last-child { border-right: none; }

.ns-stat__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.ns-stat__label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-2);
}

/* ════════════════════════════════════════
   MISIÓN + VISIÓN
   ════════════════════════════════════════ */
.ns-mv {
    padding: 48px 24px 24px;
}

.ns-mv__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ns-mv__card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px 32px 30px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.ns-mv__card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.ns-mv__icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(200, 169, 110, 0.12);
    border: 1px solid rgba(200, 169, 110, 0.25);
    display: grid;
    place-items: center;
    color: var(--gold);
    margin-bottom: 18px;
}
.ns-mv__icon .mud-icon-root { font-size: 24px !important; }

.ns-mv__chip {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}

.ns-mv__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.ns-mv__text {
    font-family: var(--font-body);
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════════════════
   VALORES
   ════════════════════════════════════════ */
.ns-values {
    padding: 24px 24px;
}

.ns-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ns-value {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px 22px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.ns-value:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.ns-value__icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(200, 169, 110, 0.10);
    display: grid;
    place-items: center;
    color: var(--gold);
    margin-bottom: 14px;
}
.ns-value__icon .mud-icon-root { font-size: 22px !important; }

.ns-value__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    margin: 0 0 8px;
}

.ns-value__desc {
    font-family: var(--font-body);
    color: var(--text-2);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ════════════════════════════════════════
   CÓMO LO HACEMOS
   ════════════════════════════════════════ */
.ns-how {
    padding: 36px 24px;
}

.ns-how__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.ns-how__media {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
}

.ns-how__img {
    width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
    transition: filter 0.4s ease, transform 0.6s ease;
}
.ns-how__media:hover .ns-how__img {
    filter: brightness(1);
    transform: scale(1.04);
}

.ns-how__copy {
    padding: 0 8px;
}

.ns-how__text {
    font-family: var(--font-body);
    color: var(--text-2);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 18px;
}

.ns-how__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ns-how__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    color: var(--text);
    font-size: 0.92rem;
}

.ns-how__list .mud-icon-root {
    color: var(--gold);
    font-size: 18px !important;
    flex-shrink: 0;
}

/* ════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════ */
.ns-cta {
    padding: 36px 24px 60px;
}

.ns-cta__inner {
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.08) 0%, rgba(200, 169, 110, 0.02) 100%);
    border: 1px solid rgba(200, 169, 110, 0.18);
    border-radius: 16px;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ns-cta__inner::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ns-cta__title {
    position: relative;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: -0.015em;
}

.ns-cta__text {
    position: relative;
    font-family: var(--font-body);
    color: var(--text-2);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 auto 24px;
    max-width: 540px;
}

.ns-cta__actions {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botones */
.ns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.18s ease;
    background: transparent;
    color: var(--text);
    white-space: nowrap;
}

.ns-btn--gold {
    background: var(--gold);
    color: #0a0a0a;
    border-color: var(--gold);
}
.ns-btn--gold:hover {
    background: var(--gold-light, #d8b97e);
    border-color: var(--gold-light, #d8b97e);
}

.ns-btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.10);
    color: var(--text);
}
.ns-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
    .ns-stats__grid    { grid-template-columns: 1fr 1fr; gap: 18px; }
    .ns-stat:nth-child(2n) { border-right: none; }
    .ns-mv__grid       { grid-template-columns: 1fr; }
    .ns-values__grid   { grid-template-columns: 1fr 1fr; }
    .ns-how__grid      { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 700px) {
    .ns-hero            { height: auto; min-height: 280px; margin: 14px 12px 0; }
    .ns-hero__content   { padding: 36px 24px; }
    .ns-hero__title     { font-size: 1.7rem; }
    .ns-stats           { margin: 14px 12px 0; padding: 18px; }
    .ns-stats__grid     { grid-template-columns: 1fr 1fr; gap: 14px; }
    .ns-stat__value     { font-size: 1.5rem; }
    .ns-mv              { padding: 32px 12px 12px; }
    .ns-mv__card        { padding: 24px 22px; }
    .ns-mv__title       { font-size: 1.3rem; }
    .ns-values          { padding: 18px 12px; }
    .ns-values__grid    { grid-template-columns: 1fr; }
    .ns-section-head    { padding: 24px 12px 12px; }
    .ns-how             { padding: 24px 12px; }
    .ns-cta             { padding: 24px 12px 40px; }
    .ns-cta__inner      { padding: 32px 22px; }
    .ns-cta__title      { font-size: 1.4rem; }
    .ns-section-title   { font-size: 1.4rem; }
}
