/* Variante 2 — Video-first: hero dividido texto/video vertical + bandas full-width */

.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 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero__kicker { color: var(--color-primary); font-weight: 600; letter-spacing: 0.2em; font-size: 0.85rem; margin-bottom: 1rem; }
.hero h1 { color: var(--color-heading); font-size: clamp(2rem, 4.2vw, 2.8rem); font-weight: 800; line-height: 1.25; margin-bottom: 1.25rem; }
.hero__lead { color: var(--color-body-light); font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 34ch; }

.hero__video { display: flex; justify-content: center; }
.phone-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.phone-frame video { width: 100%; height: 100%; object-fit: cover; }

.band {
  width: 100%;
  height: 46vh;
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.section { max-width: var(--max-width); margin: 0 auto; padding: 4.5rem 1.5rem; }
.section--narrow { max-width: 46rem; }
.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--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) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .site-header__kicker { display: none; }
}
