/* ===================================================
   HERO
   =================================================== */
.hero-wrapper {
  background: var(--cream2);
}

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

.hero-bg-img {
  position: absolute;
  width: 120%;
  height: 132%;
  left: -10%;
  top: 15%;
  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;
  max-width: 1320px;
}

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

.hero-signature img {
  height: 117px;
  width: 303px;
}

/* --- badge --- */
.hero-badge {
  color: rgba(255,255,255,.85);
  font-size: 20px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.4;
}

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

/* --- headline --- */
.hero-headline {
  font-family: 'Cormorant Infant', serif;
  font-size: clamp(1.6rem, 3vw, 40px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  max-width: 1320px;
  margin: 0 auto 0px;
  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,.85);
  font-size: clamp(0.65rem, 1vw, 16px);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 16px;
}

.hero-notice {
  color: rgba(255,255,255,.85);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  max-width: 1172px;
  margin: 48px auto 0;
  letter-spacing: 1.2px;
}

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

/* --- responsive --- */
@media (max-width: 720px) {
  /* Altura da section = proporção da mobile-hero.png (390×1162) */
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 500 / 1500;
  }

  .hero-bg-img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center 85%;
  }

  /* A arte mobile já traz o degradê; evita escurecer em cima do PNG */
  .hero::before {
    display: none;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .hero-headline { font-size: 1.6rem; }
  .hero-headline br { display: none; }
  .hero-signature img { height: 60px; }
  .hero-signature { margin-bottom: 50px; }
  .hero-content { padding-top: 0; }
  .btn-lg { padding: 14px 32px; font-size: .9rem; }
}

@media (max-width: 480px) {
  .hero-headline {font-style: normal;
    font-size: 22px;
font-weight: 500;
line-height: 140%; /* 33.6px */
letter-spacing: 2.4px;}
  .hero-signature img { height: 117px; }
  .hero-badge { font-size: 16px; }
  .hero-notice { font-size: 16px; }
}

