/* ========================================
   Nosotros Page Styles — nosotros.html
   ======================================== */

/* ========================================
   Page Header
   ======================================== */
.page-header {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.page-header__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-white-muted);
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.page-header__back:hover {
  color: var(--color-white);
}

.page-header__back svg {
  width: 18px;
  height: 18px;
}

.page-header__title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--color-red);
}

/* ========================================
   Hero Image
   ======================================== */
.hero-image {
  padding: 0 1.5rem 3rem;
}

.hero-image__container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.hero-image__img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
}


/* ========================================
   Content Sections
   ======================================== */
.section {
  padding: 4rem 1.5rem;
}

@media (min-width: 1200px) {
  .section {
    padding: 5rem 3rem;
  }
}

.section--alt {
  background: var(--color-gray-dark);
  border-top: 1px solid rgba(252, 246, 230, 0.06);
  border-bottom: 1px solid rgba(252, 246, 230, 0.06);
}

.section__container {
  max-width: 1000px;
  margin: 0 auto;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-red);
}

.section__text {
  font-size: 1.1rem;
  color: var(--color-white-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section__text:last-child {
  margin-bottom: 0;
}

/* ========================================
   Highlights
   ======================================== */
.highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(252, 246, 230, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 1200px) {
  .highlight {
    padding: 2rem;
  }
}

.highlight__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(221, 14, 14, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-red);
}

.highlight__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.highlight__text {
  font-size: 0.9rem;
  color: var(--color-white-subtle);
}
