:root {
  --primary-color: #a4e600;
  --secondary-color: #3b3c40;
  --light-gray: #f4f4f4;
  --white: #ffffff;
  --black: #1a1a1a;
  --text-color: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  background: var(--white);
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { height: 60px; }

#nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 20px;
}

#nav-links a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: bold;
  transition: color 0.3s;
}

#nav-links a:hover { color: var(--primary-color); }

.nav-cta {
  background: var(--primary-color);
  color: var(--secondary-color) !important;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: bold !important;
}

.nav-cta:hover { background: #8dc200; color: var(--secondary-color) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  color: var(--white);
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.03);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-slide.active {
  opacity: 1;
}

#hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 18px;
  color: var(--white);
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.85);
}

.hero-content p strong { color: var(--primary-color); font-size: 1.25rem; }

/* ===== PROVA SOCIAL ===== */
#social-proof {
  background: var(--white);
  padding: 22px 0;
  border-bottom: 3px solid var(--primary-color);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.sp-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.sp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 32px;
}

.sp-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
}

.sp-plus {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-color);
  display: inline;
  margin-left: 2px;
  vertical-align: super;
}

.sp-label {
  font-size: 0.78rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.sp-divider {
  width: 1px;
  height: 40px;
  background: #e0e0e0;
}

/* ===== COUNTDOWN ===== */
#countdown-bar {
  background: linear-gradient(135deg, #0f1218, #1a1e2a);
  padding: 16px 0;
  border-bottom: 3px solid var(--primary-color);
}

.cd-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cd-texto {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.cd-texto i { color: #ffcc00; }

.cd-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cd-bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(164,230,0,0.2);
  border-radius: 8px;
  padding: 6px 12px;
  min-width: 52px;
}

.cd-bloco span {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.15s;
}

.cd-bloco small {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.cd-sep {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.cd-cta {
  padding: 11px 22px;
  font-size: 0.88rem;
  white-space: nowrap;
  animation: btnGlow 2s ease-in-out infinite;
}

/* ===== BOTÕES ===== */
.btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
  animation: btnGlow 2.8s ease-in-out infinite;
}

/* brilho deslizante */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btnShine 2.8s ease-in-out infinite;
}

@keyframes btnShine {
  0%, 60%, 100% { left: -75%; opacity: 0; }
  20%           { left: 125%;  opacity: 1; }
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(164,230,0,0); }
  40%      { box-shadow: 0 0 18px 4px rgba(164,230,0,0.55); }
}

.btn-primary:hover {
  transform: scale(1.06) translateY(-2px);
  background: #8dc200;
  box-shadow: 0 8px 24px rgba(164,230,0,0.5);
}

.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btnShine 3.2s ease-in-out infinite;
  animation-delay: 0.8s;
}

.btn-secondary:hover {
  background: var(--black);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 20px rgba(59,60,64,0.45);
}

.btn-secondary:active { transform: scale(0.98); }

/* ===== SEÇÕES ===== */
section { padding: 80px 0; }

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.section-desc {
  text-align: center;
  font-size: 1.1rem;
  max-width: 780px;
  margin: -20px auto 0;
  color: #555;
  line-height: 1.7;
}

/* ===== SOBRE / FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  text-align: center;
  padding: 30px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: transform 0.3s;
}

.feature:hover { transform: translateY(-10px); }

.feature i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature h3 { margin-bottom: 10px; color: var(--secondary-color); }

/* ===== BENEFÍCIOS / COMO FUNCIONA ===== */
#beneficios {
  background: var(--white);
  border-top: 3px solid var(--primary-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-item {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s;
}

.step-item:hover { transform: translateY(-8px); }

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 16px;
}

.step-item h3 { color: var(--secondary-color); margin-bottom: 10px; font-size: 1.1rem; }
.step-item p { color: #666; font-size: 0.95rem; }

/* ===== BARRA DE VAGAS ===== */
#vagas-bar {
  background: linear-gradient(135deg, #0f1218 0%, #1a1e2a 100%);
  padding: 18px 0;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

#vagas-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(164,230,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.vagas-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* AO VIVO badge */
.vagas-ao-vivo {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,59,59,0.15);
  border: 1px solid rgba(255,59,59,0.4);
  border-radius: 50px;
  padding: 5px 14px;
  color: #ff5f5f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.vagas-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: vagasPulse 1.2s ease-in-out infinite;
}

@keyframes vagasPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,68,68,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(255,68,68,0); }
}

/* Faixa de parabéns */
.vagas-parabens {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.vagas-confete {
  font-size: 1.5rem;
  flex-shrink: 0;
  animation: vagasConfetePop 0.5s ease;
}

@keyframes vagasConfetePop {
  0%   { transform: scale(0.5) rotate(-20deg); opacity: 0; }
  60%  { transform: scale(1.3) rotate(10deg);  opacity: 1; }
  100% { transform: scale(1)   rotate(0deg);   opacity: 1; }
}

.vagas-msg {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.3;
  transition: opacity 0.3s, transform 0.3s;
  text-align: center;
}

.vagas-msg strong { color: var(--primary-color); }

.vagas-parabens.troca-out .vagas-msg,
.vagas-parabens.troca-out .vagas-confete {
  opacity: 0;
  transform: translateY(-8px);
}

.vagas-parabens.troca-in .vagas-msg,
.vagas-parabens.troca-in .vagas-confete {
  animation: vagasEntrada 0.4s ease forwards;
}

@keyframes vagasEntrada {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== NOTIFICAÇÃO SOCIAL ===== */
.social-notif {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 9990;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
  padding: 12px 16px 12px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 290px;
  min-width: 240px;
  transform: translateX(-140%);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}

.social-notif.show {
  transform: translateX(0);
  pointer-events: auto;
}

.sn-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #0f1218;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sn-texto {
  font-size: 0.8rem;
  color: #333;
  line-height: 1.4;
  flex: 1;
}

.sn-texto strong { color: #111; }

.sn-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: #999;
  padding: 0 0 0 4px;
  line-height: 1;
  align-self: flex-start;
}

.sn-close:hover { color: #333; }

/* ===== PARA QUEM É ===== */
#para-quem {
  background: var(--white);
  border-top: 3px solid var(--primary-color);
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.persona-card {
  background: var(--light-gray);
  border-radius: 14px;
  padding: 28px 24px;
  border-bottom: 4px solid transparent;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}

.persona-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(164,230,0,0.15);
}

.persona-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(164,230,0,0.12);
  border: 1.5px solid rgba(164,230,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s, border-color 0.3s;
}

.persona-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 6px rgba(164,230,0,0.35));
}

.persona-card:hover .persona-icon {
  background: rgba(164,230,0,0.2);
  border-color: var(--primary-color);
}

.persona-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.persona-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ===== PROBLEMAS ===== */
#problemas {
  background: #f0f8d8;
  color: var(--secondary-color);
  border-top: 3px solid var(--primary-color);
}

#problemas h2 { color: var(--secondary-color); }

.problems-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.problems-list li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid #ddeea0;
  border-left: 4px solid var(--primary-color);
  border-radius: 10px;
  padding: 16px 18px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  color: var(--secondary-color);
}

.problems-list li:hover {
  background: #e8f7b0;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(164,230,0,0.15);
}

.problems-list i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.solucao {
  text-align: center;
  margin-top: 40px;
  font-size: 1.25rem;
  color: var(--secondary-color);
}

.solucao strong { color: #5a7a00; }

/* ===== EXIT INTENT POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: scale(0.85);
  transition: transform 0.35s ease;
}

.popup-overlay.show .popup-box { transform: scale(1); }

.popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.popup-close:hover { color: var(--secondary-color); }

.popup-emoji { font-size: 2.8rem; display: block; margin-bottom: 12px; }

.popup-topo h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.popup-topo p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.popup-oferta {
  background: var(--light-gray);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 24px;
  border: 2px solid var(--primary-color);
}

.popup-oferta-titulo {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 8px;
}

.popup-preco {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 12px;
}

.popup-preco span { font-size: 1.6rem; }
.popup-preco small { font-size: 1rem; font-weight: 400; color: #888; }

.popup-itens {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.popup-itens li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #444;
}

.popup-itens .fa-check { color: #27ae60; flex-shrink: 0; }

.popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 1rem;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.popup-recusar {
  background: none;
  border: none;
  color: #bbb;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}

.popup-recusar:hover { color: #888; }

/* ===== PLANOS ===== */
#planos { border-top: 3px solid var(--primary-color); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
}

.plan-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  border: 1px solid #eee;
  position: relative;
  transition: transform 0.3s;
}

.plan-card:hover { transform: translateY(-6px); }

.plan-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.plan-card.featured:hover { transform: scale(1.05) translateY(-6px); }

.badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.price span { font-size: 1rem; font-weight: normal; }

.plan-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.plan-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.plan-card ul li::before {
  content: '✓';
  color: var(--primary-color);
  margin-right: 10px;
  font-weight: bold;
}

.plan-card .btn-primary,
.plan-card .btn-secondary {
  width: 100%;
  text-align: center;
  display: block;
}

/* GARANTIA */
.garantia-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px 36px;
  margin-top: 50px;
  border-left: 5px solid var(--primary-color);
}

.garantia-box i { font-size: 2.5rem; color: var(--primary-color); flex-shrink: 0; }
.garantia-box strong { display: block; font-size: 1.1rem; color: var(--secondary-color); margin-bottom: 4px; }
.garantia-box p { color: #555; font-size: 0.95rem; }

/* ===== TIME / CARROSSEL ===== */
#time { border-top: 3px solid var(--primary-color); }
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-track-outer {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
}

.member {
  text-align: center;
  flex: 0 0 calc(25% - 23px);
  min-width: 180px;
}

.member img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 5px solid var(--primary-color);
  transition: transform 0.3s, box-shadow 0.3s;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.member:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(164,230,0,0.4);
}

.img-zoom-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  overflow: hidden;
  margin: 0 auto 16px;
  transition: box-shadow 0.3s;
}

.img-zoom-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transform: scale(1.9);
  transform-origin: center 18%;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.member:hover .img-zoom-wrap {
  box-shadow: 0 8px 25px rgba(164,230,0,0.4);
}

.member h3 { color: var(--secondary-color); margin-bottom: 8px; font-size: 1rem; }
.member p { font-size: 0.88rem; color: #666; line-height: 1.5; }

.carousel-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: var(--white);
  color: var(--secondary-color);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .member { flex: 0 0 calc(33.33% - 20px); }
}

/* MOBILE: scroll horizontal fluido */
@media (max-width: 600px) {
  .carousel-wrapper {
    display: block;
    position: relative;
  }

  .carousel-track-outer {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .carousel-track-outer::-webkit-scrollbar { display: none; }

  .carousel-track {
    display: flex;
    gap: 16px;
    transform: none !important;
    transition: none;
    padding: 8px 4px 12px;
    width: max-content;
  }

  .member {
    flex: 0 0 140px;
    width: 140px;
    min-width: 0;
    scroll-snap-align: start;
    background: var(--light-gray);
    border-radius: 14px;
    padding: 20px 12px 16px;
    text-align: center;
  }

  .member img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 10px;
    display: block;
    border-width: 3px;
  }

  .member h3 { font-size: 0.82rem; line-height: 1.3; margin-bottom: 6px; }
  .member p  { font-size: 0.75rem; line-height: 1.4; color: #777; }

  .carousel-btn { display: none; }

  .carousel-dots { display: flex; margin-top: 12px; }

  .cta-time { padding-top: 24px; margin-top: 24px; }
}

/* ===== DEPOIMENTOS ===== */
#depoimentos {
  background: var(--white);
  border-top: 3px solid var(--primary-color);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.depo-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 32px;
  box-shadow: none;
  transition: transform 0.3s;
}

.depo-card:hover { transform: translateY(-6px); }

.depo-card.depo-destaque {
  background: var(--secondary-color);
  color: var(--white);
}

.estrelas { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }

.depo-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  color: #444;
}

.depo-card.depo-destaque p { color: rgba(255,255,255,0.88); }

.depo-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.depo-autor strong { color: var(--secondary-color); font-size: 0.95rem; }
.depo-card.depo-destaque .depo-autor strong { color: var(--white); }
.depo-autor span { font-size: 0.8rem; color: #888; }
.depo-card.depo-destaque .depo-autor span { color: rgba(255,255,255,0.6); }

/* ===== FAQ ===== */
#faq { border-top: 3px solid var(--primary-color); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-weight: bold;
  font-size: 0.97rem;
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
  font-family: inherit;
}

.faq-pergunta:hover { color: #5c7a00; }
.faq-pergunta i { transition: transform 0.3s; flex-shrink: 0; font-size: 0.85rem; }
.faq-item.aberto .faq-pergunta i { transform: rotate(180deg); }

.faq-resposta { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.aberto .faq-resposta { max-height: 200px; }

.faq-resposta p {
  padding: 0 24px 20px;
  font-size: 0.94rem;
  color: #555;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}

.footer-logo {
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

footer p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulsar 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37,211,102,0.7);
  animation: none;
}

@keyframes pulsar {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.85); }
}

/* ===== ANIMAÇÕES ===== */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

.anim-left  { opacity: 0; }
.anim-right { opacity: 0; }
.anim-up    { opacity: 0; }
.anim-pop   { opacity: 0; }

.anim-left.run  { animation: slideInLeft  0.6s ease forwards; }
.anim-right.run { animation: slideInRight 0.6s ease forwards; }
.anim-up.run    { animation: fadeInUp     0.5s ease forwards; }
.anim-pop.run   { animation: popIn        0.5s ease forwards; }

/* ===== BTN WHATSAPP ===== */
.btn-wpp { display: inline-flex; align-items: center; gap: 8px; }
.btn-wpp i { font-size: 1.1rem; }

/* ===== CTA FAIXA ===== */
.cta-faixa {
  background: var(--primary-color);
  padding: 28px 0;
}

.cta-faixa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-faixa-inner p {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.cta-faixa .btn-primary {
  background: var(--secondary-color);
  color: var(--white);
  white-space: nowrap;
}

.cta-faixa .btn-primary:hover { background: var(--black); }

/* ===== CTA PÓS TIME ===== */
.cta-time {
  text-align: center;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--light-gray);
}

.cta-time p {
  color: #666;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ===== COMPARATIVO ===== */
#comparativo {
  background: linear-gradient(160deg, #0a0e1a 0%, #111827 50%, #0d1520 100%);
  color: var(--white);
  padding: 60px 0;
}

.comp-topo { text-align: center; margin-bottom: 32px; }

.comp-label {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

#comparativo h2 { color: var(--white); margin-bottom: 8px; font-size: 2rem; }
#comparativo .section-desc { color: rgba(255,255,255,0.6); margin-bottom: 0; font-size: 1rem; }

/* ECONOMIA BANNER */
.comp-economia {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(164,230,0,0.08);
  border: 1px solid rgba(164,230,0,0.25);
  border-radius: 12px;
  padding: 18px 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 0;
}

.eco-item {
  text-align: center;
  flex: 1;
  min-width: 110px;
  padding: 6px 16px;
}

.eco-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.eco-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eco-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* CARDS */
.comp-cards {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.comp-card {
  flex: 1;
  border-radius: 14px;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
}

.comp-bad {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.comp-good {
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(1.03);
  position: relative;
  z-index: 1;
}

.comp-card-header { text-align: center; margin-bottom: 20px; }

/* ÍCONE ACADEMIA */
.comp-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.bad-icon {
  background: rgba(255,77,77,0.12);
  border: 1px solid rgba(255,77,77,0.25);
}

.bad-icon i { color: #ff6b6b; font-size: 1.2rem; }

.comp-logo {
  height: 40px;
  margin: 0 auto 10px;
  display: block;
}

.comp-bad h3 { color: rgba(255,255,255,0.45); font-size: 1.1rem; margin-bottom: 10px; }
.comp-good h3 { color: var(--secondary-color); font-size: 1.15rem; margin-bottom: 10px; }

/* MELHOR OPÇÃO BADGE */
.comp-melhor-opcao {
  text-align: center;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  padding: 7px 0;
  margin: -28px -28px 20px;
  border-radius: 12px 12px 0 0;
  text-transform: uppercase;
}

.comp-preco-destaque {
  display: inline-block;
  border-radius: 50px;
  padding: 6px 16px;
  font-weight: 900;
  font-size: 0.9rem;
}

.comp-preco-destaque small { font-weight: 400; font-size: 0.72rem; margin-left: 2px; }

.comp-preco-destaque.bad {
  background: rgba(255,77,77,0.12);
  color: #ff7070;
  border: 1px solid rgba(255,77,77,0.25);
  text-decoration: line-through;
}

.comp-preco-destaque.good { background: var(--primary-color); color: var(--secondary-color); }

/* LISTAS */
.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.comp-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comp-good .comp-list li { border-bottom-color: #f0f0f0; }
.comp-list li:last-child { border-bottom: none; }

.comp-bad .comp-list li {
  color: rgba(255,255,255,0.38);
  text-decoration: line-through;
  text-decoration-color: rgba(255,77,77,0.35);
}

.comp-good .comp-list li { color: var(--text-color); font-weight: 500; }

.comp-list .fa-times-circle { color: #ff4d4d; font-size: 0.95rem; flex-shrink: 0; }
.comp-list .fa-check-circle { color: #27ae60; font-size: 0.95rem; flex-shrink: 0; }

/* FOOTER DO CARD RUIM */
.comp-card-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  text-align: center;
}

.bad-footer { color: rgba(255,77,77,0.6); }
.bad-footer i { margin-right: 6px; }

.comp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: 8px;
}

/* VS */
.comp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.vs-circle {
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  box-shadow: 0 4px 20px rgba(164,230,0,0.45);
  flex-shrink: 0;
}

/* ===== BOTÃO FIXO MOBILE ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}

.mobile-cta-bar .btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 1.05rem;
  border-radius: 8px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  footer { padding-bottom: 90px; }

  /* NAV */
  .hamburger { display: flex; }

  #nav-links {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-top: 2px solid var(--primary-color);
  }

  #nav-links.open { display: flex; }
  #nav-links li { width: 100%; }
  #nav-links a { display: block; padding: 14px 24px; border-bottom: 1px solid #f0f0f0; }
  .nav-cta { margin: 10px 24px 4px; border-radius: 5px; text-align: center; }

  /* HERO */
  .hero-content h1 { font-size: 1.9rem; line-height: 1.2; }
  .hero-content p { font-size: 0.95rem; }
  #hero { height: 90vh; }
  .hero-slide { background-position: 40% center; }

  /* PROVA SOCIAL */
  .sp-item { padding: 8px 16px; }
  .sp-num { font-size: 1.5rem; }
  .sp-divider { height: 30px; }

  /* COUNTDOWN */
  .cd-inner { gap: 12px; }
  .cd-texto { font-size: 0.82rem; }
  .cd-bloco { min-width: 44px; padding: 5px 8px; }
  .cd-bloco span { font-size: 1.2rem; }
  .cd-cta { padding: 10px 16px; font-size: 0.82rem; }

  /* VAGAS */
  .vagas-inner { gap: 10px; flex-wrap: wrap; }
  .vagas-ao-vivo { font-size: 0.7rem; padding: 4px 11px; flex-shrink: 0; }
  .vagas-msg { font-size: 0.8rem; white-space: normal; }
  .vagas-confete { font-size: 1.1rem; }

  /* NOTIFICAÇÃO SOCIAL MOBILE */
  .social-notif { left: 10px; right: 10px; max-width: none; min-width: 0; bottom: 75px; }

  /* PERSONAS */
  .personas-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .persona-card { padding: 20px 16px; }
  .persona-icon { width: 52px; height: 52px; border-radius: 13px; }
  .persona-icon i { font-size: 1.25rem; }
  .persona-card h4 { font-size: 0.92rem; }
  .persona-card p { font-size: 0.82rem; }

  /* POPUP */
  .popup-box { padding: 32px 22px 24px; }
  .popup-topo h3 { font-size: 1.3rem; }
  .popup-preco { font-size: 2.2rem; }

  /* FEATURES */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
  .feature { padding: 20px 14px; }
  .feature i { font-size: 2rem; margin-bottom: 12px; }
  .feature h3 { font-size: 0.92rem; }
  .feature p { font-size: 0.82rem; }

  /* STEPS (Como funciona?) */
  .step-item { padding: 22px 18px; }
  .step-number { font-size: 2.2rem; margin-bottom: 10px; }
  .step-item h3 { font-size: 1rem; }
  .step-item p { font-size: 0.88rem; }

  /* PLANOS — botões sem quebra */
  .plan-card { padding: 28px 20px; }
  .plan-card .btn-primary,
  .plan-card .btn-secondary { font-size: 0.88rem; padding: 13px 16px; }

  /* CTA BAR INFERIOR — espaço para o botão flutuante */
  .mobile-cta-bar { padding: 12px 70px 12px 20px; }
  .mobile-cta-bar .btn-primary { font-size: 0.95rem; padding: 14px; }

  /* PROBLEMAS */
  .problems-list ul { grid-template-columns: 1fr; }

  /* COMPARATIVO — REATIVA primeiro no mobile */
  #comparativo { padding: 48px 0; }
  #comparativo h2 { font-size: 1.6rem; }

  .comp-cards {
    flex-direction: column-reverse; /* REATIVA aparece primeiro */
    gap: 12px;
  }

  .comp-good { transform: scale(1); order: -1; }
  .comp-bad  { order: 1; }

  .comp-vs {
    width: 100%;
    justify-content: center;
    padding: 4px 0;
    order: 0;
  }

  .comp-economia {
    padding: 16px;
    gap: 0;
    flex-wrap: wrap;
  }

  .eco-item { min-width: 90px; padding: 8px 12px; }
  .eco-num { font-size: 1.4rem; }
  .eco-divider { width: 1px; height: 32px; }

  .comp-card { padding: 22px 20px; }
  .comp-melhor-opcao { margin: -22px -20px 16px; }

  /* FAIXA CTA */
  .cta-faixa-inner { flex-direction: column; text-align: center; }

  /* PLANOS */
  .plan-card.featured { transform: scale(1); }
  .plan-card.featured:hover { transform: translateY(-6px); }
  .plans-grid { grid-template-columns: 1fr; }

  /* GARANTIA */
  .garantia-box { flex-direction: column; text-align: center; }

  /* TIME */
  .member { flex: 0 0 calc(50% - 15px); }

  /* DEPOIMENTOS */
  .depo-grid { grid-template-columns: 1fr; }

  /* STEPS */
  .steps-grid { grid-template-columns: 1fr; }

  /* H2 GERAL */
  h2 { font-size: 1.7rem; }

  /* SEÇÕES — padding menor */
  section { padding: 52px 0; }
  #vagas-bar { padding: 14px 0; }

  /* SEÇÃO SOBRE */
  #sobre .section-desc { font-size: 0.92rem; }
}
