.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  background: linear-gradient(135deg, var(--azul-escuro) 0%, #0D2154 60%, #0A1A42 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255,54,19,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Container do hero ocupa largura total — garante alinhamento com o nav */
.hero > .container {
  flex: 1;
  min-width: 0;
}

.hero-conteudo {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 4rem 0;
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--branco);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-headline em {
  color: var(--laranja);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--texto-claro);
  margin-bottom: 1rem;
  max-width: 680px;
}

.hero-sub strong {
  color: var(--branco);
}

.hero-sub-2 {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
}

.hero-sub-2 strong {
  color: var(--laranja);
}

/* ── BADGE "SEM MENSALIDADE" ── */
.hero-hospedagem-wrap {
  margin-top: -1rem;    /* aproxima do parágrafo acima */
  margin-bottom: 2.5rem;
}

.hero-hospedagem-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45em;
  background: rgba(255, 54, 19, 0.10);
  border: 1px solid rgba(255, 54, 19, 0.30);
  border-radius: 100px;
  padding: 0.5rem 1.2rem 0.5rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--laranja);
  white-space: normal;
  /* glow de atenção pulsante */
  box-shadow:
    0 0 0 0 rgba(255, 54, 19, 0),
    0 2px 12px rgba(255, 54, 19, 0.15);
  animation: hospedagem-badge-pulse 3s ease-in-out infinite;
}

@keyframes hospedagem-badge-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0   rgba(255, 54, 19, 0),
      0 2px 12px rgba(255, 54, 19, 0.15);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(255, 54, 19, 0.07),
      0 2px 18px rgba(255, 54, 19, 0.30);
  }
}

/* "E ainda:" — prefixo */
.hospedagem-ainda {
  font-size: 0.88em;
  font-weight: 800;
  opacity: 0.88;
  letter-spacing: 0.14em;
  flex-shrink: 0;
}

/* ── FRASE-CHAVE: decoração especial ── */
.hospedagem-destaque {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.22em;
  letter-spacing: 0.06em;
  color: #FF6B35;
  position: relative;
  padding-bottom: 6px;
}

/*
 * LINHA INFERIOR + BRILHO DO DIAMANTE — ciclo sincronizado de 12s
 *
 * Fases (em segundos):
 *   0.0 – 1.8s  → linha nasce do centro (lento, sofisticado)
 *   1.8 – 4.8s  → linha sustentada (3s visível)
 *   4.8 – 6.0s  → linha faz fade out suave
 *   6.0 – 9.0s  → brilho intenso + rotação rápida do diamante
 *   9.0 – 12.0s → brilho normal, pausa, próximo ciclo
 */

/* Linha inferior 1px — nasce do centro, sustenta, faz fade out */
.hospedagem-destaque::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,140,90,0.7)  18%,
    #FF6B35               50%,
    rgba(255,140,90,0.7)  82%,
    transparent           100%
  );
  box-shadow: 0 0 4px rgba(255, 107, 53, 0.80), 0 0 9px rgba(255, 54, 19, 0.40);
  transform: scaleX(0);
  transform-origin: center;
  animation: hospedagem-line-cycle 12s linear 1s infinite;
}

/* 12s total. Percentagens: 1.8/12=15%, 4.8/12=40%, 6/12=50%, 50.1%=reset */
@keyframes hospedagem-line-cycle {
  0%    { transform: scaleX(0);   opacity: 0;   }
  1%    { transform: scaleX(0);   opacity: 0.9; }   /* fade-in rápido */
  15%   { transform: scaleX(1);   opacity: 1;   }   /* totalmente formada ~1.8s */
  40%   { transform: scaleX(1);   opacity: 1;   }   /* sustentada até ~4.8s */
  50%   { transform: scaleX(1);   opacity: 0;   }   /* fade-out suave até ~6s */
  50.1% { transform: scaleX(0);   opacity: 0;   }   /* reset invisível instantâneo */
  100%  { transform: scaleX(0);   opacity: 0;   }   /* aguarda próximo ciclo */
}

/* ── ÍCONE DIAMANTE ── */
.hospedagem-icone-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  margin-right: 0.24em;
  top: -0.08em;
  flex-shrink: 0;
}

.hospedagem-icone-svg {
  width: 100%;
  height: 100%;
  color: #FF8C5A;
}


/* "— para sempre!!!" */
.hospedagem-sempre {
  font-size: 0.92em;
  font-weight: 800;
  opacity: 0.90;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  column-gap: 1rem;
  row-gap: 0.35rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

/* Equaliza altura — "Quero acender" usa btn-grande mas deve ter a mesma altura que "Como funciona" */
.hero-ctas .btn-grande {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.hero-prova {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  flex-basis: 100%;
}

.hero-prova-item {
  display: flex;
  flex-direction: column;
}

.hero-prova-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--laranja);
  line-height: 1;
}

.hero-prova-item span {
  font-size: 0.8rem;
  color: var(--texto-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-prova-sep {
  color: var(--laranja);
  font-size: 1.5rem;
  font-weight: 900;
}

/* FireSpeak — topo direito, alinhado com o início do bloco de conteúdo */
.hero-firespeak-wrap {
  position: absolute;
  right: 12%;
  top: 100px;
  pointer-events: none;
  z-index: 1;
}

/* FireSpeak como elemento de background — visível mas em segundo plano */
.hero-firespeak {
  display: block;
  will-change: transform;
  opacity: 0.28;
}

/* ── TESTEMUNHOS HERO ── */
.hero-testimonial-wrap {
  position: absolute;
  right: calc(12% - 119px);
  top: 420px;
  width: 560px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.htest-card {
  display: none;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(145deg, rgba(5,11,36,0.96) 0%, rgba(10,22,66,0.92) 100%);
  border: 1px solid rgba(255,107,53,0.18);
  border-left: 3px solid var(--laranja);
  border-radius: 20px;
  padding: 1.75rem 2rem 1.6rem;
  box-shadow:
    0 0 0 1px rgba(255,107,53,0.06),
    0 32px 80px rgba(0,0,0,0.60),
    0 8px 24px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.htest-card.active { display: flex; }

/* Glow sutil no canto superior esquerdo */
.htest-card::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Aspas decorativas em marca d'água */
.htest-card::after {
  content: '\201C';
  position: absolute;
  top: 0.6rem;
  right: 1.6rem;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255,107,53,0.06);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

/* Header: brand + stars */
.htest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.htest-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,107,53,0.70);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.htest-brand-icon {
  color: var(--laranja);
  font-size: 0.65rem;
}

.htest-stars {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #FFB347;
  text-shadow: 0 0 8px rgba(255,179,71,0.40);
}

/* Citação principal */
.htest-quote {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.90);
  line-height: 1.68;
  margin: 0 0 1.3rem;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* Separador */
.htest-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,107,53,0.55) 0%,
    rgba(255,107,53,0.15) 50%,
    transparent 100%
  );
  margin-bottom: 1.2rem;
}

/* Linha do autor */
.htest-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

/* Foto circular — crops da cabeça do personagem */
.htest-photo-wrap {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,107,53,0.35);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.10), 0 4px 12px rgba(0,0,0,0.40);
}

.htest-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.htest-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.htest-name {
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.htest-role {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.02em;
}

.htest-verificado {
  font-family: 'Barlow', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(80,220,130,0.85);
  background: rgba(80,220,130,0.10);
  border: 1px solid rgba(80,220,130,0.22);
  border-radius: 100px;
  padding: 0.18rem 0.55rem;
  flex-shrink: 0;
}

/* Badge de resultado */
.htest-resultado {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.22);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
}

.htest-resultado strong {
  color: var(--laranja);
  font-weight: 800;
}

.htest-res-icon {
  font-size: 1rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255,107,53,0.60));
}

/* Oculta na mesma breakpoint do grupo de imagens */
@media (max-width: 1024px) {
  .hero-testimonial-wrap { display: none; }
}

/* ── PREVIEW MONTAGEM — cena estática ── */
.hero-preview-wrap {
  position: absolute;
  right: calc(12% - 138px);
  top: 390px;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  transition: opacity 1s ease;
}

/* Linha de transmissão */
.hp-transmissao {
  position: absolute;
  bottom: 160px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,107,53,0.85) 0%,
    rgba(255,107,53,0.18) 25%,
    rgba(255,107,53,0.18) 75%,
    rgba(255,107,53,0.85) 100%
  );
  z-index: 0;
}
.hp-transmissao::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 9px;
  background: radial-gradient(circle, rgba(255,107,53,0.40) 35%, transparent 70%);
  background-size: 22px 9px;
  background-repeat: repeat-x;
}

/* Colunas dos personagens */
.hp-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  flex: 0 0 auto;
}

/* Personagens */
.hp-char-agente {
  height: 573px;
  width: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.60));
}
.hp-char-prof {
  height: 487px;
  width: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.60));
}

/* Browser — absolutamente centrado entre os personagens */
.hp-browser-center {
  position: absolute;
  bottom: 185px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 195px;
}
.hp-browser {
  width: 100%;
  background: rgba(6,14,42,0.92);
  border: 1px solid rgba(255,107,53,0.30);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 7px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.60));
}
.hp-browser-chrome {
  background: rgba(255,107,53,0.07);
  border-bottom: 1px solid rgba(255,107,53,0.18);
  padding: 5px 7px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.hp-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,107,53,0.45);
  flex-shrink: 0;
}
.hp-url {
  font-family: 'Barlow', sans-serif;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.42);
  flex: 1;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}
.hp-browser-body { padding: 8px 9px 9px; }
.hp-bline {
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin-bottom: 5px;
}
.hp-bcta {
  width: 52%;
  height: 9px;
  background: rgba(255,107,53,0.35);
  border-radius: 3px;
  margin-top: 5px;
}
.hp-browser-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--laranja);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.hero-topo {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-topo .label-secao {
  margin-bottom: 0;
}

.hero-pre-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}

.hero-pre-icone {
  color: var(--laranja);
  font-size: 0.85em;
  text-shadow: 0 0 12px rgba(255, 54, 19, 0.7);
  flex-shrink: 0;
}

.hero-pre-destaque {
  color: var(--laranja);
  font-size: 1.35em;
  font-weight: 900;
  text-decoration: underline double;
  text-decoration-color: var(--laranja);
  text-underline-offset: 4px;
}

/* Apenas cor — sem decoração */
.destaque-cor {
  color: var(--laranja);
}

/* Palavra-chave reutilizável — mesma decoração do "24 Horas" */
.destaque-chave {
  color: var(--laranja);
  font-weight: 900;
  text-decoration: underline double;
  text-decoration-color: var(--laranja);
  text-underline-offset: 4px;
}

.geo-saudacao {
  font-size: 0.9rem;
  color: var(--laranja);
  font-weight: 600;
  margin-bottom: 1rem;
  min-height: 1.5em;
}
