/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100svh - var(--trust-bar-h));
  min-height: 560px;
  overflow: hidden;
  background: #0F2E24;
  display: grid;
  grid-template-columns: 3fr 2fr; /* 60 / 40 */
}

/* ── Coluna esquerda — conteúdo ── */
.hero__col-texto {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(48px, 8vh, 96px) 45px clamp(48px, 8vh, 96px) 24px;
  background: #0F2E24;
}
.hero__inner {
  width: 100%;
  max-width: 760px;
}

/* ── Coluna direita — imagem ── */
.hero__col-imagem {
  position: relative;
  overflow: hidden;
}
.hero__col-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* ── Linha dourada ── */
.hero__linha-dourada {
  width: clamp(120px, 24vw, 320px);
  height: 2px;
  background: linear-gradient(90deg, #C9A84C 0%, rgba(201,168,76,0.08) 100%);
  border-radius: 2px;
  margin: 28px 0 32px;
}

/* ── Título ── */
.hero__titulo {
  font-family: 'MyriadPro-Display', sans-serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: normal;
  line-height: 1.05;
  color: #FEFCF9;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  max-width: 900px;
}
.hero__titulo em {
  font-style: italic;
  color: #B8DFC8;
}

/* ── Chevron duplo animado — fluxo contínuo descendente ── */
.hero__chevron {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  position: relative;
  top: -2px;
  animation: hero-chevron-pulse 1.8s linear infinite both;
}
.hero__chevron svg {
  width: clamp(22px, 3vw, 32px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.45));
}
@keyframes hero-chevron-pulse {
  0%   { opacity: 0; transform: translateY(-4px); }
  13%  { opacity: 1; transform: translateY(1px);  }
  78%  { opacity: 1; transform: translateY(11px); }
  91%  { opacity: 0; transform: translateY(16px); }
  92%  { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 0; transform: translateY(-4px); }
}

/* ── Lead ── */
.hero__lead {
  font-family: 'MyriadPro-Display', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: normal;
  color: rgba(254,252,249,0.86);
  line-height: 1.28;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  max-width: 760px;
  text-wrap: balance;
}

/* ── CTA dourado semi-3D ── */
@keyframes hero-cta-pulse {
  0%, 100% {
    box-shadow:
      inset 0 2px 0 rgba(255,255,255,0.52),
      inset 0 -3px 8px rgba(100,55,0,0.28),
      0 5px 0 rgba(90,50,0,0.52),
      0 8px 24px rgba(0,0,0,0.30),
      0 12px 56px rgba(201,168,76,0.38),
      0 0 0 0 rgba(201,168,76,0.50);
  }
  52% {
    box-shadow:
      inset 0 2px 0 rgba(255,255,255,0.52),
      inset 0 -3px 8px rgba(100,55,0,0.28),
      0 5px 0 rgba(90,50,0,0.52),
      0 8px 24px rgba(0,0,0,0.30),
      0 18px 72px rgba(201,168,76,0.58),
      0 0 0 24px rgba(201,168,76,0);
  }
}
.hero__cta {
  display: inline-block;
  border-radius: 999px;
  background: linear-gradient(175deg, #F5D06E 0%, #D4A030 42%, #B8841C 100%);
  color: #0F2E24;
  font-family: 'MyriadPro-Display', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.62rem);
  font-weight: normal;
  letter-spacing: 0.06em;
  padding: 26px 72px;
  text-decoration: none;
  border: none;
  text-shadow: 0 1px 2px rgba(80,40,0,0.20);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.52),
    inset 0 -3px 8px rgba(100,55,0,0.28),
    0 5px 0 rgba(90,50,0,0.52),
    0 8px 24px rgba(0,0,0,0.30),
    0 12px 56px rgba(201,168,76,0.38),
    0 0 0 0 rgba(201,168,76,0.50);
  animation: hero-cta-pulse 2.8s ease-out infinite;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.hero__cta:hover {
  transform: translateY(3px);
  background: linear-gradient(175deg, #EDCA62 0%, #C89820 42%, #A87818 100%);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.44),
    inset 0 -2px 5px rgba(100,55,0,0.22),
    0 2px 0 rgba(90,50,0,0.45),
    0 4px 14px rgba(0,0,0,0.24),
    0 6px 32px rgba(201,168,76,0.28);
  animation: none;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: calc(100svh - var(--trust-bar-h));
  }
  .hero__col-imagem { display: none; }
}
@media (max-width: 560px) {
  .hero__col-texto  { padding: 48px 24px 56px; }
  .hero__titulo     { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero__lead       { font-size: 0.95rem; }
  .hero__cta        { width: 100%; text-align: center; padding: 22px 24px; font-size: 1.15rem; }
}
