/* ============================================
   HERO SECTION — Chá de Casa Nova
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--navbar-height) + var(--space-xl));
  padding-bottom: var(--space-3xl);
  overflow: hidden;
  background-color: var(--color-dark-1);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 11, 11, 0.95) 0%,
    rgba(13, 11, 11, 0.85) 40%,
    rgba(13, 11, 11, 0.3) 70%,
    rgba(13, 11, 11, 0.6) 100%
  );
  z-index: 1;
}

/* Glow dourado suave */
.hero__glow {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(216, 177, 137, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}

.hero__glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(159, 111, 79, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}

/* Partículas e Linhas Orgânicas Douradas */
.hero__particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(216, 177, 137, 0.2) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.hero__logo-wrap svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.hero__logo-text {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.hero__title {
  font-size: var(--fs-hero);
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.hero__title strong {
  font-weight: 500;
  color: var(--color-gold-light);
  font-style: italic;
  font-family: var(--font-display);
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

/* Destaques (3 cards) */
.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  width: 100%;
  max-width: 600px;
}

.hero__highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--transition-base);
}

.hero__highlight-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(216, 177, 137, 0.25);
  transform: translateY(-4px);
}

.hero__highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(216, 177, 137, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: var(--color-gold-light);
}

.hero__highlight-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.hero__highlight-text {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Área da assinatura do casal no Hero */
.hero__signature-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: flex-end;
  height: 100%;
  padding-bottom: var(--space-3xl);
  color: var(--color-gold);
}

.hero__signature-text {
  font-family: var(--font-signature);
  font-size: var(--fs-4xl);
  transform: rotate(-5deg);
  line-height: 1;
}

.hero__signature-date {
  font-family: var(--font-signature);
  font-size: var(--fs-2xl);
  color: var(--color-gold-light);
  transform: rotate(-5deg);
  line-height: 1.2;
  margin-top: var(--space-xs);
  text-align: right;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 2;
  cursor: pointer;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollLineAnimation 2s infinite ease-in-out;
}

@keyframes scrollLineAnimation {
  0% {
    height: 0;
    opacity: 0;
  }
  50% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 40px;
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .hero__signature-area {
    align-self: center;
    align-items: center;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--navbar-height) + var(--space-xl));
    padding-bottom: var(--space-3xl);
  }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(13, 11, 11, 0.9) 0%,
      rgba(13, 11, 11, 0.8) 60%,
      rgba(13, 11, 11, 0.95) 100%
    );
  }
  .hero__title {
    font-size: var(--fs-3xl);
  }
  .hero__highlights {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    max-width: 320px;
    width: 100%;
  }
  .hero__highlight-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
  }
  .hero__highlight-icon {
    margin: 0;
  }
}
