/* ═══════════════════════════════════════════════
   MAGA KITCHEN — nosotros.css
═══════════════════════════════════════════════ */

/* ── Nav active ── */
.nav-active { position: relative; }
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--red);
}

/* ── Nav right (CTA + lang) ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Oculto en móvil — lo muestra el breakpoint */
.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 10px;
}


/* ══ HERO ══ */
.nos-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.nos-hero-bg {
  position: absolute;
  inset: 0;
}

.nos-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nos-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.3) 0%,
    rgba(0,0,0,.6) 60%,
    rgba(0,0,0,.88) 100%
  );
}

.nos-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 24px;
  max-width: 640px;
}

.nos-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
}

.nos-hero-h1 em { color: var(--red); font-style: italic; }

.nos-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 520px;
}

/* Stats strip */
.nos-stats {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 24px 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.nos-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.nos-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}

.nos-stat-lbl {
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,.45);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.nos-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* ══ QUIÉNES SOMOS ══ */
.quienes-section { background: var(--white); }

.quienes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.quienes-imgs {
  position: relative;
}

.qi-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.qi-secondary {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 48%;
  height: 220px;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

.quienes-body {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.quienes-body strong { color: var(--black); font-weight: 500; }

.quienes-marcas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.quienes-marcas span {
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--red);
  border: 1px solid rgba(128,0,32,.25);
  padding: 4px 12px;
}

/* ══ MISIÓN / VISIÓN / OBJETIVO ══ */
.mvo-section {
  background: var(--black);
  padding: 80px 40px;
}

.mvo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.mvo-card {
  background: #111;
  padding: 44px 36px;
  border: 1px solid #1e1e1e;
  transition: background .2s;
}

.mvo-card:hover { background: #161616; }

.mvo-card-center {
  background: var(--red);
  border-color: var(--red);
}

.mvo-card-center:hover { background: #900025; }

.mvo-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.mvo-card-center .mvo-icon { background: rgba(255,255,255,.15); }

.mvo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 500;
}

.mvo-card p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
}

.mvo-card-center p { color: rgba(255,255,255,.85); }

/* ══ POR QUÉ ══ */
.porq-section { background: var(--cream); }

.porq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.porq-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background .2s;
}

.porq-item:hover { background: #fff8f8; }
.porq-item:nth-child(3n) { border-right: none; }
.porq-item:nth-last-child(-n+3) { border-bottom: none; }

.porq-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
}

.porq-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}

.porq-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ══ SHOWROOM ══ */
.showroom-section {
  background: var(--black);
  padding: 80px 40px;
}

.showroom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.showroom-img {
  overflow: hidden;
}

.showroom-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.showroom-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.showroom-dato {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

.showroom-dato svg { color: var(--red); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET ≤900px
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Lang en mobile */
  .nav-right { display: none; }
  .nav-right-mobile { display: flex; }

  .nos-hero { min-height: 440px; }
  .nos-hero-h1 { font-size: 40px; }
  .nos-hero-content { padding: 0 24px 20px; }
  .nos-stats { padding: 20px 24px; }
  .nos-stat-sep { display: none; }

  .quienes-grid { grid-template-columns: 1fr; gap: 56px; }
  .quienes-imgs { padding-bottom: 40px; }
  .qi-main { height: 360px; }
  .qi-secondary { bottom: -20px; right: -16px; height: 180px; width: 44%; }

  .mvo-section { padding: 56px 24px; }
  .mvo-grid { grid-template-columns: 1fr; gap: 2px; }

  .porq-grid { grid-template-columns: 1fr 1fr; }
  .porq-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .porq-item:nth-child(2n) { border-right: none; }
  .porq-item:nth-last-child(-n+2) { border-bottom: none; }
  .porq-item:nth-last-child(-n+3):not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--border); }

  .showroom-section { padding: 56px 24px; }
  .showroom-inner { grid-template-columns: 1fr; gap: 40px; }
  .showroom-img img { height: 300px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤600px
══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .nos-hero { min-height: 380px; }
  .nos-hero-h1 { font-size: 32px; }
  .nos-hero-content { padding: 0 20px 16px; }
  .nos-stats { padding: 16px 20px; gap: 10px; }
  .nos-stat-num { font-size: 24px; }

  .quienes-grid { gap: 40px; }
  .qi-main { height: 280px; }
  .qi-secondary { display: none; }

  .mvo-section { padding: 48px 20px; }
  .mvo-card { padding: 32px 24px; }

  .porq-grid { grid-template-columns: 1fr; }
  .porq-item { border-right: none !important; }
  .porq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border) !important; }
  .porq-item:last-child { border-bottom: none !important; }

  .showroom-section { padding: 48px 20px; }
  .showroom-img img { height: 240px; }

  .nav { z-index: 401; }
}
