/* ─────────────────────────────────────────
   TASA V2 — HERO
   Full-height escuro · Cormorant + DM Sans
   ───────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(150deg, #080705 0%, #0F0E0B 45%, #1a1914 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Textura grain */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

/* Glow dourado */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 88% 15%, rgba(201,164,76,0.07) 0%, transparent 52%);
  pointer-events: none;
  z-index: 0;
}

/* Topbar */
.hero__topbar {
  position: relative;
  z-index: 2;
  padding: 78px clamp(1.25rem, 5vw, 2.5rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}
.hero__topbar-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.09em;
  font-style: italic;
}
.hero__topbar-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Corpo */
.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 52%;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 5vw, 2.5rem);
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}

.hero__text { display: flex; flex-direction: column; justify-content: center; }

.hero__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  opacity: 0.60;
  flex-shrink: 0;
  border-radius: 2px;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 20px;
}
.hero__heading span { display: block; }
.hero__heading .italic { font-style: italic; color: var(--gold-light); }
.hero__heading .accent { color: white; }

.hero__rule {
  width: 52px;
  height: 1px;
  background: var(--gold-line);
  margin-bottom: 20px;
  border-radius: 2px;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}
.hero__proof-stars { color: var(--gold); font-size: 11px; letter-spacing: 2px; }
.hero__proof-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.14); }

/* Visual */
.hero__visual { position: relative; overflow: hidden; align-self: stretch; }
.hero__visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 36%;
  background: linear-gradient(to right, #080705 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__visual::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28%;
  background: linear-gradient(to top, #080705 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%);
}

.hero__photo-badge {
  position: absolute;
  bottom: 56px;
  left: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 7, 5, 0.82);
  border: 1px solid rgba(201,164,76,0.30);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.40);
}
.hero__photo-badge-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; flex-shrink: 0; }
.hero__photo-badge-info { display: flex; flex-direction: column; gap: 2px; }
.hero__photo-badge-rating {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: white;
  line-height: 1;
}
.hero__photo-badge-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.20));
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) { .hero__scroll-line { animation: none; } }

@media (max-width: 1200px) { .hero__body { grid-template-columns: 1fr 48%; } }
@media (max-width: 1023px) { .hero__body { grid-template-columns: 1fr 44%; } }
@media (max-width: 767px) {
  .hero__topbar { display: none; }
  .hero__body {
    grid-template-columns: 1fr;
    padding-top: 96px;
    padding-bottom: 3rem;
    overflow: hidden;
  }
  .hero__visual { display: none; }
  .hero__text { min-width: 0; }
  .hero__label { white-space: normal; flex-wrap: wrap; }
  .hero__heading { font-size: clamp(2.4rem, 11vw, 3.5rem); margin-bottom: 16px; word-break: break-word; overflow-wrap: break-word; }
  .hero__sub { font-size: 14px; max-width: 100%; }
  .hero__proof { flex-wrap: wrap; gap: 12px; }
  .hero__proof-item { min-width: 0; flex-shrink: 1; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
}
