/* ============================================================
   HERO — Layout Duas Colunas · Produto à Direita
   ============================================================ */

.hero {
  position: relative;
  background-color: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', 'Calibri', sans-serif;
  overflow: hidden;
}

/* Gradiente tênue para profundidade */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% -5%,
    rgba(0, 180, 166, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* ── GRID: conteúdo (esquerda) | produto (direita) ── */
.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-16);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--navbar-height) + var(--space-12)) var(--space-6) var(--space-8);
}

/* ── BLOCO DE CONTEÚDO (esquerda) ── */
.content-block {
  flex: 1;
  min-width: 0;
  animation: fadeInUp 0.85s ease-out both;
}

/* Três frases de impacto — tamanho harmônico com o resto do site */
.slide-title {
  display: flex;
  flex-direction: column;
  gap: 0.06em;
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 28px;
}

.slide-line         { display: block; color: var(--color-text); }
.slide-line--accent { color: var(--color-teal); }

.slide-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.68;
  margin: 0 0 36px;
  max-width: 430px;
}

.slide-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.slide-buy-btn {
  display: inline-block;
  padding: 15px 34px;
  background-color: var(--color-teal);
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0, 180, 166, 0.32);
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.slide-buy-btn:hover {
  background-color: var(--color-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 180, 166, 0.42);
}

.slide-buy-btn:active { transform: translateY(0); }

.slide-price-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.slide-price-value {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.slide-price-detail {
  font-size: 12px;
  color: var(--color-text-light);
}

/* ── FOTO DE ESTILO DE VIDA (direita) ── */
.hero-photo {
  flex-shrink: 0;
  width: 48%;
  max-width: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.13),
    0 6px 20px rgba(0, 0, 0, 0.07);
  animation: scaleIn 1.1s ease-out both;
  animation-delay: 0.12s;
}

.hero-photo__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── INDICADOR DE SCROLL ── */
.hero__scroll-indicator {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollBob 2.8s ease-in-out infinite;
  pointer-events: none;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--color-teal), transparent);
}

.hero__scroll-label {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

@keyframes scrollBob {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.65; transform: translateX(-50%) translateY(7px); }
}

/* ── BARRA DE CONFIANÇA ── */
.hero__trust {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  padding: 14px 0;
}

.hero__trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ── ANIMAÇÕES ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding-top: calc(var(--navbar-height) + var(--space-8));
    gap: var(--space-10);
  }

  .hero-photo {
    width: 85%;
    max-width: 340px;
    order: -1;
    animation-delay: 0s;
  }

  .content-block { text-align: center; }

  .slide-title {
    font-size: clamp(2.25rem, 10vw, 3rem);
    align-items: center;
  }

  .slide-subtitle { max-width: 100%; }

  .slide-cta-row {
    flex-direction: column;
    align-items: center;
  }

  .hero__trust-inner { gap: 16px; }
  .hero__scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .slide-title { font-size: clamp(2rem, 12vw, 2.5rem); }
  .hero-photo  { width: 90%; }
}
