/* ============================================================
   2 Amigos + Hijos Aberturas — Nosotros
   ============================================================ */

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.nos-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nos-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.nos-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1;
}

.nos-hero__inner {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 720px;
}

.nos-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.nos-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.nos-hero__breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.nos-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

.nos-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.nos-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   HISTORIA
   ══════════════════════════════════════════════════════════════ */
.nos-historia {
  background: var(--color-white);
  padding-block: var(--space-7);
}

.nos-historia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

/* ── Left: text ─────────────────────────────────────────── */
.nos-historia__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.nos-historia__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
}

.nos-historia__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-gray-800);
  line-height: 1.15;
}

.nos-historia__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nos-historia__body p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gray-600);
  line-height: 1.75;
  max-width: 60ch;
}

/* ── Right: stats ───────────────────────────────────────── */
.nos-historia__stats {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nos-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4) var(--space-3);
}

.nos-stat + .nos-stat {
  border-top: 1px solid var(--color-gray-200);
}

.nos-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-blue-primary);
  line-height: 1;
}

.nos-stat__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-top: 4px;
}

.nos-stat__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-gray-600);
  margin-top: 6px;
  max-width: none;
}

/* ══════════════════════════════════════════════════════════════
   VALORES
   ══════════════════════════════════════════════════════════════ */
.nos-valores {
  background: var(--color-black);
  padding-block: var(--space-7);
}

.nos-valores__header {
  margin-bottom: var(--space-5);
}

.nos-valores__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: 12px;
}

.nos-valores__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.nos-valores__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

/* ── Valor card (same pattern as consejo-card) ──────────── */
.nos-valor-card {
  position: relative;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid var(--color-blue-primary);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  overflow: hidden;
}

.nos-valor-card__num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  user-select: none;
  pointer-events: none;
}

.nos-valor-card__icon {
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.nos-valor-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.nos-valor-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
}

.nos-valor-card__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: none;
}

/* ══════════════════════════════════════════════════════════════
   UBICACIÓN
   ══════════════════════════════════════════════════════════════ */
.nos-ubicacion {
  background: var(--color-gray-100);
  padding-block: var(--space-7);
}

.nos-ubicacion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

/* ── Left: info ─────────────────────────────────────────── */
.nos-ubicacion__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.nos-ubicacion__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
}

.nos-ubicacion__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-gray-800);
  line-height: 1.2;
}

.nos-ubicacion__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nos-ubicacion__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.nos-ubicacion__item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-blue-primary);
  margin-top: 2px;
}

.nos-ubicacion__item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nos-ubicacion__item-body strong {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-800);
}

.nos-ubicacion__item-body span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-gray-600);
  max-width: none;
}

.nos-ubicacion__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-blue-primary);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  align-self: flex-start;
  transition:
    background  var(--duration-fast) var(--ease-out),
    transform   var(--duration-fast) var(--ease-out);
}

.nos-ubicacion__wa-btn:hover {
  background: var(--color-blue-hover);
  transform: translateY(-1px);
}

/* ── Right: map ─────────────────────────────────────────── */
.nos-ubicacion__map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--radius-md);
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════════════════════ */
.nos-cta {
  background: var(--color-blue-primary);
  padding-block: var(--space-7);
  text-align: center;
}

.nos-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  max-width: 640px;
  margin-inline: auto;
}

.nos-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.nos-cta__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 48ch;
}

.nos-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-blue-primary);
  background: var(--color-white);
  padding: 16px 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  margin-top: 8px;
  transition:
    background  var(--duration-fast) var(--ease-out),
    transform   var(--duration-fast) var(--ease-out);
}

.nos-cta__btn:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.nos-cta__hours {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.02em;
  max-width: none;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nos-valores__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nos-historia__grid,
  .nos-ubicacion__grid {
    grid-template-columns: 1fr;
  }

  .nos-historia__stats {
    flex-direction: row;
    padding: var(--space-3);
    gap: 0;
  }

  .nos-stat {
    flex: 1;
    padding: var(--space-3) var(--space-2);
  }

  .nos-stat + .nos-stat {
    border-top: none;
    border-left: 1px solid var(--color-gray-200);
  }

  .nos-stat__num {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .nos-valores__grid {
    grid-template-columns: 1fr;
  }

  .nos-ubicacion__map iframe {
    height: 260px;
  }

  .nos-hero {
    height: 60vh;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .nos-historia__stats {
    flex-direction: column;
  }

  .nos-stat + .nos-stat {
    border-left: none;
    border-top: 1px solid var(--color-gray-200);
  }
}
