/* ============================================================
   CASA DA MONTANHA — Hero Section
   hero.css
   ============================================================ */

/* ── Hero Container ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Video Background ── */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Gradient Overlay ── */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.20) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

/* ── Content ── */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  animation: fadeUp 1.4s ease both;
  animation-delay: 0.3s;
  padding: 0 1.5rem;
}

.hero__eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--green-pale);
}

.hero__subtitle {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, 0.75);
  margin-bottom: 2.5rem;
}

/* ── Hero CTA Button ── */
.hero__btn {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero__btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}

/* ── Scroll Indicator ── */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248, 247, 244, 0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
  }

  .hero__title {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }

  .hero__subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .hero__btn {
    padding: 0.95rem 2.5rem;
    font-size: 0.62rem;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 500px) {
  .hero__title {
    font-size: clamp(2.5rem, 14vw, 4rem);
    line-height: 1.05;
  }

  .hero__eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
  }

  .hero__subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero__btn {
    padding: 1rem 2rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
