/* =============================================================
   SECCIÓN 01 — HERO
   Capricho del Mar by Z
============================================================= */
#hero {
  position: relative;
  height: 100svh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}

/* Overlay uniforme — sin zonas azules vacías */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 32, 53, 0.10) 0%,
    rgba(13, 32, 53, 0.55) 70%,
    rgba(13, 32, 53, 0.80) 100%
  );
}

/* Monograma "by Z" — esquina superior derecha */
.hero-monogram {
  position: absolute; top: 1.75rem; right: var(--sp-side);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.55);
  opacity: 0;
  transition: opacity 0.5s;
}

/* Contenido principal — anclado al fondo del hero */
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--sp-side) clamp(2.5rem, 5vh, 4rem);
  width: 100%; max-width: 1400px; margin: 0 auto;
}

/* Título principal — 40% más grande */
.hero-title {
  font-family: var(--font-display);
  font-size: var(--sz-hero);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 1.75rem;
  opacity: 0;
  max-width: 14ch;
}
.hero-title .accent {
  font-weight: 300;
  color: rgba(245,240,232,0.75);
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.65);
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(16px);
}

/* CTA row */
.hero-actions {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
}
/* Dos botones clave — más grandes y notorios */
.hero-actions .btn {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  padding: 1.15rem 3rem;
}

/* Scroll indicator */
.hero-scroll {
  display: none;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: rgba(245,240,232,0.18);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--c-gold);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero-scroll-label {
  font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 640px) {
  /* El mínimo de --sz-hero (5rem) desborda "Capricho" en móvil */
  .hero-title  { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 1rem; }
  .hero-actions .btn { justify-content: center; }
  .hero-scroll { display: none; }
}
