/* Variante 1 — Aerial Hero: foto aérea real a pantalla completa + secciones alternadas clásicas */

.site-header {
  border-bottom: 1px solid #eee;
  padding: 1.25rem 1.5rem;
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo { height: 48px; width: auto; }
.site-header__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-primary);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 33, 39, 0.5), rgba(29, 33, 39, 0.75));
}
.hero__content { position: relative; z-index: 2; padding: 2rem 1.5rem; max-width: 46rem; }
.hero__kicker { color: var(--color-secondary); font-weight: 600; letter-spacing: 0.2em; font-size: 0.85rem; margin-bottom: 1rem; }
.hero h1 { color: var(--color-white); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.25; margin-bottom: 1.75rem; }

.section { max-width: var(--max-width); margin: 0 auto; padding: 5rem 1.5rem; }
.section h2 { color: var(--color-heading); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: 1.25rem; }
.section p { margin-bottom: 1rem; }
.section p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 0.4rem;
}

.section--split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.section--split.section--reverse .section__media { order: -1; }
.section--alt { background: var(--color-cream); max-width: 100%; }
.section--alt.section--split { max-width: var(--max-width); margin: 0 auto; }
.section__media { width: 100%; height: 100%; min-height: 340px; object-fit: cover; border-radius: 4px; }

.section--stacked { max-width: 100%; padding: 0; }
.section__media--wide {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.section--stacked .section__text { max-width: 46rem; margin: 0 auto; padding: 4rem 1.5rem; }
.section__text--centered { text-align: center; }
.section__text--centered .eyebrow { display: inline-block; }

.section--video {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  background: var(--color-cream);
  max-width: 100%;
}
.section--video > * { max-width: var(--max-width); }
.video-card video { width: 100%; border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); max-height: 480px; }
.section--video__text h2 { margin-bottom: 1rem; }

.section--cta { max-width: 100%; text-align: center; padding: 5rem 1.5rem; background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); }
.section--cta h2 { color: var(--color-white); }
.section--cta p { color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }

.footer { background: var(--color-dark); color: rgba(255, 255, 255, 0.6); text-align: center; padding: 3rem 1.5rem; font-size: 0.85rem; }
.footer__logo { height: 40px; margin: 0 auto 1rem; filter: brightness(0) invert(1); opacity: 0.9; }

@media (max-width: 800px) {
  .section--split { grid-template-columns: 1fr; gap: 2rem; }
  .section--split.section--reverse .section__media { order: 0; }
  .section--video { grid-template-columns: 1fr; }
  .site-header__kicker { display: none; }
}
