/* ============================================================
   nosotros.css — Estilos específicos de la página Nosotros
   ============================================================ */

/* ---------- HERO ---------- */
.nos-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 70px) 40px 70px;
  overflow: hidden;
}

.nos-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(176,28,28,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(201,168,76,0.07) 0%, transparent 50%),
    var(--black);
  z-index: 0;
}

.nos-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.nos-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin: 16px 0 14px;
}

.nos-hero__title em { color: var(--gold); font-style: italic; }

.nos-hero__sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ---------- ORNAMENT ---------- */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 8px;
}
.ornament__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4));
}
.ornament__line--right {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.4));
}
.ornament__icon { font-size: 1.4rem; }

/* ---------- HISTORIA ---------- */
.nos-historia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nos-historia__img-frame {
  position: relative;
  aspect-ratio: 4/5;
}

.nos-historia__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content { text-align: center; color: var(--gray); }
.placeholder-content span { font-size: 3rem; display: block; margin-bottom: 10px; }
.placeholder-content p { font-size: 0.9rem; color: var(--gray-light); }
.placeholder-content small { font-size: 0.72rem; color: var(--gray); margin-top: 6px; display: block; }

.nos-historia__badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 96px; height: 96px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(176,28,28,0.4);
}

.nos-historia__badge-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.nos-historia__p {
  color: var(--gray-light);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

/* ---------- VALORES ---------- */
.nos-valores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.nos-valor {
  padding: 32px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 8px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.nos-valor:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.nos-valor__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.nos-valor__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.nos-valor__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ---------- STATS PARALAX ---------- */
.nos-stats-section {
  padding: 80px 40px;
}

.nos-stats-bg {
  background:
    radial-gradient(ellipse at center, rgba(176,28,28,0.15) 0%, transparent 70%),
    var(--dark2);
}

.nos-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.nos-stat {
  padding: 30px 20px;
  border-right: 1px solid rgba(201,168,76,0.1);
}
.nos-stat:last-child { border-right: none; }

.nos-stat__num {
  display: block;
  font-family: var(--font-impact);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.nos-stat__label {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- UBICACIÓN ---------- */
.nos-ubicacion {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

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

.nos-ubicacion__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nos-ubicacion__icon { font-size: 1.3rem; flex-shrink: 0; }

.nos-ubicacion__item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.nos-ubicacion__item p, .nos-ubicacion__item a {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.5;
}
.nos-ubicacion__item a:hover { color: var(--gold); }

.nos-ubicacion__mapa {
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nos-valores { grid-template-columns: repeat(2, 1fr); }
  .nos-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nos-historia { grid-template-columns: 1fr; gap: 40px; }
  .nos-ubicacion { grid-template-columns: 1fr; }
  .nos-ubicacion__mapa { height: 320px; }
}

@media (max-width: 600px) {
  .nos-hero { padding: calc(var(--nav-h) + 20px) 20px 50px; }
  .nos-stats-section { padding: 50px 20px; }
  .nos-historia { padding-bottom: 30px; }
  .nos-historia__badge { width: 80px; height: 80px; right: -8px; bottom: -8px; }
  .nos-valores { grid-template-columns: 1fr; }
  .nos-stats { grid-template-columns: 1fr 1fr; }
  .nos-stat { border-right: none; }
}
