/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #000000 0%, #212221 100%);
  color: #fff;
}


/* Menu */
.menu-button {
  position: fixed;
  top: 8%;
  left: 2%;
  height: 60px;
  width: 100px;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.2s;
}
.menu-button:hover {
  transform: scale(1.1);
}

.menu-options {
  display: none;
  position: fixed;
  top: 10%;
  left: 5%;
  width: 50vw;
  max-height: 80vh;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 8px;
  padding: 15px;
  z-index: 10000;
  flex-direction: column;
}
.menu-options.visible {
  display: flex;
}
.menu-options a {
  display: block;
  padding: 10px;
  font-size: 1.2em;
  color: #00ffb3;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.menu-options a:hover {
  color: #fff;
  background: #00ffb311;
}

/* Logo */
#logo {
  
  top: 11%;
  display: block;
  margin: 100px auto 10px auto;
  max-width: 150px;
  animation: pulse 5s infinite ease-in-out;
  cursor: pointer;
}

/* Conteúdo */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.item {
  background: #111;
  border-radius: 20px;
  padding: 25px;
  margin: 20px auto;
  width: 100%;
  max-width: 750px;
  box-shadow: 0 0 10px #00ffb377;
  transition: transform 0.3s ease;
}
.item:hover {
  transform: scale(1.02);
}

.description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #e1e1e1;
  text-align: center;
  padding: 10px 0;
}

/* Destaques */
.destaque1 { color: #00ffb3; font-weight: bold; }
.destaque2 { color: #ffc107; }
.destaque3 { color: #f0f0f0; font-weight: bold; }
.destaque4 { color: #66ff66; font-size: 1.3em; }
.destaque5 { font-size: 2em; font-weight: bold; text-align: center; color: #00c3ff; }
.destaque6 { font-size: 1em; color: #fff; text-align: left; }

/* Botões */
.action-button {
  display: inline-block;
  background: linear-gradient(to right, #00c853, #64dd17);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 1.2em;
  margin: 20px auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.action-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00e676;
}

/* Vídeos e imagens */
.video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  margin-top: 15px;
  border: 2px solid #00ffb366;
  background: #000;
  object-fit: cover;
}
.foto {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: 15px;
}
.foto2 {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  margin-top: 15px;
}

/* Título principal */
#titulo {
  font-size: 2.2em;
  text-align: center;
  background: #222;
  padding: 20px;
  border-radius: 15px;
  color: #00ffb3;
  margin: 60px auto 30px auto; /* aumenta o espaço acima */
  max-width: 90%;
  display: block;
}


/* WhatsApp, Instagram, Youtube */
#whatsapp, #instagram, #youtube {
  position: fixed;
  width: 50px;
  height: auto;
  cursor: pointer;
  z-index: 1001;
  animation: pulse 2s infinite;
}
#whatsapp { bottom: 10%; right: 2%; }
#instagram { bottom: 20%; right: 2%; }
#youtube { bottom: 15%; left: 2%; }

/* ===========================
   POPUP — CSS ÚNICO E CORRIGIDO
   =========================== */

/* Overlay de tela cheia (acima de banner e menu) */
#popup {
  display: none;                   /* jQuery .fadeIn() vai mudar para display:block */
  position: fixed;
  inset: 0;                        /* top/right/bottom/left: 0 */
  z-index: 11000;                  /* acima do banner e do menu */
  background: rgba(0, 0, 0, 0.55); /* leve escurecido no fundo */
}

/* Card central do popup */
#popupcontent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;

  background: #1a1a1a;
  color: #000000;
  border: 2px solid #00ffb3;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(0, 255, 179, 0.45);
  z-index: 11005;                  /* acima do overlay */
}
/* ===== Botão de fechar — base (mobile) ===== */
#btnpopupfechar {
  position: fixed !important;   /* FIXO na viewport */
  z-index: 12000 !important;
  top: 45px;
  right: 10px;
  background: #e53935;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform .15s ease, background .2s ease;
}
#btnpopupfechar:hover {
  transform: scale(1.07);
  background: #f44336;
}

/* ===== Tablets e acima (≥ 769px) ===== */
@media (min-width: 769px) and (max-width: 1366px) {
  #btnpopupfechar {
    top: 20px !important;
    right: 200px !important;   /* notebook HD */
  }
}

/* ===== Full HD e acima (≥ 1600px) ===== */
@media (min-width: 1367px) {
  #btnpopupfechar {
    top: 50px !important;
    right: 430px !important;   /* Full HD ou maior */
  }
}

/* (Opcional) evitar regras antigas da classe .popup afetando o botão */
.popup .close-btn { position: fixed !important; }



/* FAQ */
.faq-item { margin-top: 10px; padding: 10px; border-top: 1px solid #444; }
.faq-question { font-weight: bold; font-size: 1.1em; display: flex; justify-content: space-between; cursor: pointer; }
.faq-answer {
  font-size: 1em;
  margin-top: 5px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: none;
}
.faq-answer.active { display: block; }
.combos-titulo {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.combos-titulo .linha1 {
  font-size: 2em;
  font-weight: bold;
  color: red;
  margin-bottom: 10px;
}

.combos-titulo .linha2 {
  font-size: 2.2em;
  font-weight: bold;
  color: green;
  margin-bottom: 10px;
}

.combos-titulo .linha3 {
  font-size: 2.2em;
  font-weight: bold;
  color: #ffeb3b;
}
.pricecelular {
  text-align: center;
  margin-top: 20px;
}

.dedo-animado {
  font-size: 2.2em;
  animation: pulse-dedo 1.2s infinite;
  display: inline-block;
  margin-bottom: 10px;
}


@keyframes pulse-dedo {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

.preco {
  font-size: 1.5em;
  line-height: 1.4;
}

.separador-combo {
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00ffb3, transparent);
  margin: 40px auto;
  border-radius: 2px;
  box-shadow: 0 0 8px #00ffb366;
}

@media (max-width: 768px) {
  .separador-combo {
    width: 90%;
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .combos-titulo .linha1,
  .combos-titulo .linha2,
  .combos-titulo .linha3 {
    font-size: 1.6em;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  #titulo { font-size: 1.6em; padding: 15px; }
  .menu-options a { font-size: 1em; }
  .description { font-size: 1em; }
  .destaque5 { font-size: 1.4em; }
  .action-button { font-size: 1em; padding: 12px 25px; }
  .video { aspect-ratio: 16/9; height: auto; }
  .item { padding: 15px; }
  .menu-button{
    position: fixed;
    top: 10px;
    left: 10px;
    width: 80px;
    height: 50px;
  }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.cta-flutuante {
  display: block;
  position: fixed;
  bottom: 10px;
  left: 30%;
  width: 40%;
  
  
  font-weight: bold;
 
  text-align: center;
 
  animation: pulsar 2s infinite;
  
  text-decoration: none;
    transform: translateX(-50%);
  background: #00ffb3;
  color: #000;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 2em;
  box-shadow: 0 0 12px #00ffb3;
  z-index: 1001;
}
@media (max-width: 768px) {
  .cta-flutuante {
      font-size: 18px;
      padding: 10px;
       left: 5%;
  width: 90%;
  }
}

@keyframes pulsar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== Pagamento: Tabela Comparativa ===== */
.pricing-compare {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr; /* feature + 3 planos */
  gap: 10px;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid #00ffb366;
  box-shadow: 0 0 15px #00ffb322;
  background: #0d0d0d;
}

.pc-row {
  display: contents; /* Cada linha usa o grid do container */
}

.pc-head .pc-col-plan {
  background: rgba(255,255,255,0.03);
}

.pc-cell {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.98em;
  color: #eaeaea;
}

.pc-col-feature {
  text-align: left;
  font-weight: 600;
  color: #fff;
}

.pc-col-plan {
  border-left: 1px solid rgba(255,255,255,0.08);
}

.pc-head .pc-cell {
  border-bottom: 1px solid rgba(0,255,179,0.25);
}

.pc-head .plan-title {
  font-weight: 800;
  font-size: 1.15em;
  color: #00ffb3;
  margin-bottom: 4px;
}

.pc-head .plan-sub {
  font-size: 0.9em;
  color: #c9c9c9;
  margin-bottom: 10px;
}

.pc-head .plan-price .price {
  font-size: 1.6em;
  font-weight: 800;
  color: #ffeb3b;
}

.pc-head .price-note {
  display: block;
  font-size: 0.85em;
  color: #c9c9c9;
  margin-top: 2px;
}

.pc-strong {
  font-weight: 800;
  color: #66ff66;
}

.pc-row .pc-cell:nth-child(n+2) {
  font-weight: 600;
}

.pc-row .pc-cell:nth-child(n+2)::selection {
  background: #00ffb344;
}

.pc-divider {
  grid-column: 1 / -1;
  height: 2px;
  background: linear-gradient(to right, transparent, #00ffb3, transparent);
  border-bottom: none;
}

/* Coluna destaque (Plano Completo) */
.pc-col-best {
  position: relative;
  background: rgba(0,255,179,0.04);
  box-shadow: 0 0 20px #00ffb333 inset, 0 0 20px #00ffb31f;
  border-left: 1px solid rgba(0,255,179,0.2);
}
.pc-col-best .plan-title {
  color: #00ffb3;
}
.pc-col-best .plan-price .price {
  color: #ffeb3b;
}

.action-button-strong {
  background: linear-gradient(to right, #00c853, #64dd17);
  box-shadow: 0 0 18px #00e676aa;
}



/* Texto de economia abaixo do CTA do completo */
.economize {
  margin-top: 8px;
  font-size: 0.9em;
  color: #66ff66;
  opacity: 0.95;
}

/* Acessibilidade visual dos check/cross */
.pc-row .pc-cell:contains("✔") {
  color: #66ff66;
  font-weight: 800;
}
.pc-row .pc-cell:contains("—"),
.pc-row .pc-cell:contains("✖"),
.pc-row .pc-cell:contains("❌") {
  color: #ff6b6b;
  font-weight: 700;
}

/* ===== Responsividade ===== */
@media (max-width: 980px) {
  .pricing-compare {
    grid-template-columns: 1fr; /* empilha */
  }
  .pc-head {
    display: none; /* esconde cabeçalho em desktop-style */
  }
  /* Cards individuais por plano */
  .pc-row {
    display: block;
  }
  .pc-col-feature {
    display: block;
    padding: 10px 0 4px 0;
    font-size: 0.95em;
    opacity: 0.9;
  }
  /* Transformar cada plano em card com lista de recursos */
  .pricing-compare .plan-card {
    display: block;
  }
}

/* Cards mobile: reuso da grid com pseudo-cards por plano */
@media (max-width: 980px) {
  /* Re-render das linhas em blocos por plano */
  .pricing-compare {
    border: none;
    box-shadow: none;
    background: transparent;
  }
  /* Vamos mostrar 3 cards: Essencial, Intermediário e Completo */
  .pc-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Ajustes de harmonização com o tema existente */
#pagamento .container-item {
  position: relative;
  background: #1a1a1a;
  border: 2px solid #00ffb366;
  border-radius: 20px;
  box-shadow: 0 0 15px #00ffb322;
}

/* Espaçamento final + CTA centralizado (reutiliza .pricecelular existente) */
#pagamento .pricecelular .preco {
  color: #fff;
  font-weight: 600;
}
/* Cards comparativos de pagamento */
.pricing-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.plan-card {
  background: #111;
  border: 2px solid #00ffb366;
  border-radius: 20px;
  box-shadow: 0 0 15px #00ffb322;
  flex: 1 1 300px;
  max-width: 320px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: scale(1.03);
}

.best-plan {
  border-color: #00ffb3;
  box-shadow: 0 0 20px #00ffb366;
  position: relative;
}

.best-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ffb3;
  color: #000;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7em;
  box-shadow: 0 0 12px #00ffb3;
}

.plan-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 5px;
  color: #00ffb3;
}

.plan-sub {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 15px;
}

.plan-price {
  margin-bottom: 15px;
}

.price-avista {
  display: block;
  font-size: 1.3em;
  font-weight: bold;
  color: #ffeb3b;
}

.price-parcelado {
  display: block;
  font-size: 0.9em;
  color: #aaa;
  margin-top: 3px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  text-align: left;
}

.plan-features li {
  margin-bottom: 6px;
  font-size: 0.9em;
}

.plan-features li::before {
  content: "• ";
  color: #00ffb3;
}

.action-button {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  font-size: 1em;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(to right, #00c853, #64dd17);
  color: #000;
  box-shadow: 0 0 10px #00e676aa;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00e676;
}

.action-button-strong {
  background: linear-gradient(to right, #ffeb3b, #ffc107);
  color: #000;
  box-shadow: 0 0 15px #ffeb3b88;
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .plan-card {
    max-width: 90%;
  }
  .best-plan {
    order: -1;
  }
}
/* =========================
   Bloco "Pessoas interessadas"
   ========================= */

.interessados {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;

  padding: 10px 14px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(0, 255, 179, 0.08),
    rgba(255, 235, 3, 0.06),
    rgba(0, 255, 179, 0.08)
  );
  border: 1px solid rgba(0, 255, 179, 0.35);
  box-shadow:
    0 0 10px rgba(0, 255, 179, 0.25),
    inset 0 0 12px rgba(255, 255, 255, 0.03);

  font-size: 0.98em;
  letter-spacing: 0.2px;
  text-align: center;

  position: relative;
  overflow: hidden;
}

/* brilho passando no fundo (bem sutil e chique) */
.interessados::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 60%
  );
  transform: translateX(-60%);
  animation: interessados-shine 4.5s linear infinite;
  pointer-events: none;
}

@keyframes interessados-shine {
  0%   { transform: translateX(-60%); opacity: 0.0; }
  20%  { opacity: 0.6; }
  50%  { opacity: 0.15; }
  100% { transform: translateX(60%); opacity: 0.0; }
}

/* Número em destaque (vale pros 3 combos) */
.interessados .tremida,
#interessadoscombo1,
#interessadoscombo2,
#interessadoscombo3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 54px;
  height: 42px;
  padding: 0 12px;

  font-weight: 900;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1;

  color: #ffeb3b !important;
  text-shadow: 0 0 8px rgba(255, 235, 3, 0.9);

  background: radial-gradient(circle at top, #2a2a2a, #000 70%);
  border-radius: 999px;
  border: 2px solid rgba(255, 235, 3, 0.75);

  box-shadow:
    0 0 10px rgba(255, 235, 3, 0.7),
    0 0 22px rgba(255, 235, 3, 0.35),
    inset 0 0 10px rgba(255, 255, 255, 0.06);

  animation:
    interessados-pop 1.2s ease-in-out infinite,
    interessados-glow 2.2s ease-in-out infinite,
    interessados-wiggle 3.8s ease-in-out infinite;
}

@keyframes interessados-pop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.18); }
  70%  { transform: scale(0.98); }
  100% { transform: scale(1); }
}

@keyframes interessados-glow {
  0%, 100% {
    box-shadow:
      0 0 8px rgba(255, 235, 3, 0.6),
      0 0 18px rgba(255, 235, 3, 0.25),
      inset 0 0 10px rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 6px rgba(255, 235, 3, 0.8);
  }
  50% {
    box-shadow:
      0 0 14px rgba(255, 235, 3, 0.95),
      0 0 30px rgba(255, 235, 3, 0.55),
      inset 0 0 12px rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 12px rgba(255, 235, 3, 1);
  }
}

@keyframes interessados-wiggle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  20%      { transform: translateY(-2px) rotate(-2deg); }
  40%      { transform: translateY(0) rotate(2deg); }
  60%      { transform: translateY(-1px) rotate(-1deg); }
  80%      { transform: translateY(0) rotate(1deg); }
}

/* Texto do bloco */
.interessados span:not(.tremida) {
  font-weight: 600;
  opacity: 0.95;
}

/* Mobile: mantém bonito sem esmagar */
@media (max-width: 768px) {
  .interessados {
    padding: 8px 10px;
    border-radius: 14px;
    font-size: 0.92em;
    gap: 4px 6px;
  }

  .interessados .tremida,
  #interessadoscombo1,
  #interessadoscombo2,
  #interessadoscombo3 {
    min-width: 48px;
    height: 38px;
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
}

/* Respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce) {
  .interessados::after,
  .interessados .tremida,
  #interessadoscombo1,
  #interessadoscombo2,
  #interessadoscombo3 {
    animation: none !important;
  }
}
