/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  background: #6b0f0f;
  padding-top: 16px;
  overflow: hidden;
  border-radius: 0 0 64px 64px;
  min-height: 580px;
}

.hero-bg-img {
  position: absolute;
  width: 120%;
  height: 133%;
  left: -10%;
  top: 14%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  display: block;
  max-width: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #6b0f0f 41%, rgba(107,15,15,0) 73%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 320px;
}

.hero-signature {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}

.hero-signature img {
  height: 90px;
  width: auto;
}

/* --- badge --- */
.hero-badge {
  color: rgba(255,255,255,.85);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-top: 10px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-badge strong {
  color: #fff;
  font-weight: 700;
}

/* --- headline --- */
.hero-headline {
  font-family: 'Cormorant Infant', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  max-width: 760px;
  margin: 0 auto 8px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.hero-headline .gold {
  color: #ffe1a6;
  font-weight: 700;
  font-family: 'Cormorant Infant', serif;
}

.hero-headline strong {
  color: #ffffff;
  font-weight: 700;
  font-family: 'Cormorant Infant', serif;
}

.hero-cta-sub {
  color: rgba(255,255,255,.55);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* --- aviso --- */
.hero-notice {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 24px auto 0;
}

.hero-notice strong { color: #fff; font-weight: 700; }

/* --- responsive --- */
@media (max-width: 720px) {
  .hero-headline { font-size: 1.6rem; }
  .btn-lg { padding: 14px 32px; font-size: .9rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.35rem; }
}
