:root {
  --bg-dark: #0a0118;
  /* Roxo mais escuro */
  --bg-card: #16082e;
  --primary-green: #00ff66;
  /* Verde Neon */
  --primary-green-hover: #00ff88;
  --accent-purple: #a855f7;
  --text-white: #ffffff;
  --text-gray: #94a3b8;
  --danger: #ef4444;
  --yellow-promo: #ffff00;
  --red-promo: #ff0000;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

.container {
  max-width: 1100px;
  /* Um pouco mais largo para acomodar o layout 3D */
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Promo Banner --- */
.promo-banner {
  background-color: var(--yellow-promo);
  color: var(--red-promo);
  text-align: center;
  padding: 12px 20px;
  font-weight: 900;
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-transform: uppercase;
  width: 100%;
  position: relative;
  z-index: 101;
  letter-spacing: 1px;
  animation: pulse-pop 2s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-pop {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
}

/* --- Floating Header --- */
nav {
  padding: 20px 0;
  display: flex;
  justify-content: flex-end;
  /* Alinha o botão à direita já que o logo saiu */
  align-items: center;
  position: absolute;
  width: 100%;
  top: 50px;
  /* Abaixo do banner */
  z-index: 100;
}

.nav-btn {
  background-color: var(--primary-green);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* --- Hero Section --- */
header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(
      circle at 100% 50%,
      rgba(0, 255, 102, 0.15) 0%,
      rgba(10, 1, 24, 0) 50%
    ),
    radial-gradient(
      circle at 0% 50%,
      rgba(168, 85, 247, 0.1) 0%,
      rgba(10, 1, 24, 0) 50%
    );
  overflow: hidden;
  padding: 100px 0;
  /* Padding reduzido pois agora o 100vh faz o trabalho */
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1.4;
  min-width: 320px;
}

header h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 35px;
  color: var(--text-white);
}

header h1 span {
  color: var(--primary-green);
  font-style: italic;
}

.hero-image {
  flex: 1;
  min-width: 350px;
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.hero-image-box {
  background: linear-gradient(135deg, #2d1b4d 0%, #160d2b 100%);
  width: 320px;
  height: 420px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotateY(-15deg) rotateX(10deg);
  box-shadow:
    -20px 20px 50px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.2);
  transition: transform 0.5s ease;
}

.hero-image-box:hover {
  transform: rotateY(-5deg) rotateX(5deg);
}

.hero-image-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 255, 102, 0.3),
    transparent
  );
  border-radius: 22px;
  z-index: -1;
}

/* --- CTA Buttons --- */
.cta-btn {
  background-color: var(--primary-green);
  color: #000;
  padding: 20px 45px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 255, 102, 0.3);
}

.cta-btn .icon-circle {
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 10px;
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.02);
  background-color: var(--primary-green-hover);
  box-shadow: 0 15px 40px rgba(0, 255, 102, 0.4);
}

.cta-btn:hover {
  transform: scale(1.05);
  background-color: var(--primary-green-hover);
}

/* --- Results Section --- */
.results-section {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 60px;
}

.section-sub {
  color: var(--text-gray);
  margin-bottom: 60px;
  font-size: 1rem;
}

.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.whatsapp-card {
  background-color: var(--bg-card);
  border-radius: 20px; /* Borda um pouco mais arredondada */
  overflow: hidden;
  border: 2px solid rgba(0, 255, 102, 0.1); /* Borda com leve tom de verde neon */
  aspect-ratio: 3/4; /* Ajustado para o padrão 360x480 */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover; /* Agora que o ratio bate, usamos cover para preencher tudo */
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-card:hover {
  transform: translateY(-10px); /* Sobe um pouco no hover */
  border-color: var(--primary-green); /* Borda brilha no hover */
  box-shadow: 0 15px 40px rgba(0, 255, 102, 0.2);
}

/* --- Pain Section --- */
.pain-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.01);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.pain-card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  text-align: left;
}

.pain-icon {
  font-size: 1.2rem;
  color: var(--danger);
  flex-shrink: 0;
}

.pain-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.4;
}

/* --- Products Grid --- */
.products-section {
  padding: 100px 0;
}

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

.product-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 25px; /* Reduzi um pouco o padding para dar mais destaque ao banner */
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 102, 0.2);
}

.product-banner {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 25px;
  background: #000;
}

.product-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-banner img {
  transform: scale(1.05);
}

.product-number {
  font-size: 1.1rem;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-white);
}

.product-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 25px;
  min-height: 2.5em;
}

.product-card hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 25px;
}

.checklist {
  list-style: none;
}

.checklist li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.checklist li span {
  color: var(--primary-green);
}

/* --- Bonus Box --- */
.bonus-section {
  padding: 40px 0;
}

.bonus-box {
  background: linear-gradient(135deg, #1a0b35 0%, #0d061a 100%);
  border: 2px dashed var(--primary-green);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
}

.bonus-tag {
  background: var(--primary-green);
  color: #000;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.7rem;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.bonus-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.bonus-box p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Benefits Section --- */
.benefits-section {
  padding: 60px 0;
  text-align: center;
}

.benefits-grid {
  display: flex;
  flex-direction: column; /* Alterado para coluna */
  align-items: center;
  gap: 15px; /* Espaçamento entre os itens */
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-white);
  font-size: 1.1rem;
  width: fit-content;
}

.benefit-item span {
  color: var(--accent-purple);
}

/* --- Pricing Section --- */
.pricing-section {
  padding: 100px 0;
  text-align: center;
}

.pricing-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 50px 40px;
  position: relative;
}

.pricing-card::before {
  content: "🔥 COMBO DIA DAS MÃES";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: #000;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
}

.price-old {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 1.2rem;
  color: var(--text-gray);
  display: block;
  margin-bottom: 5px;
}

.price-value {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 10px;
}

.price-info {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 35px;
  display: block;
}

.urgency-text {
  color: var(--danger);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 20px;
  display: block;
}

.payment-methods {
  margin-top: 30px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0.8; /* Leve transparência para não brigar com o CTA */
}

.payment-methods img {
  max-width: 300px; /* Tamanho controlado para não ficar gigante */
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(
    0 5px 15px rgba(0, 0, 0, 0.3)
  ); /* Sombra suave que respeita o PNG transparente */
}

/* --- Modal Popup --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Um pouco mais escuro para foco total */
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 10px; /* Padding reduzido para ganhar espaço no mobile */
  overflow-y: auto; /* Permite rolagem se o modal for maior que a tela */
}

.modal-content {
  background: var(--bg-card);
  width: 100%;
  max-width: 450px;
  max-height: 95vh; /* Não deixa o modal encostar no topo/fundo */
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 255, 102, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  animation: modal-fade-in 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden; /* Garante que o banner respeite o border-radius */
}

/* Container de rolagem interna para garantir que nada fique inacessível */
.modal-scroll-area {
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch; /* Rolagem suave no iOS */
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--danger);
  transform: rotate(90deg);
}

.modal-banner {
  width: 100%;
  flex-shrink: 0; /* Impede o banner de encolher */
  background: #000;
}

.modal-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.modal-body {
  padding: 25px 30px 30px;
  text-align: center;
}

.modal-body h3 {
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  margin-bottom: 8px;
  color: var(--text-white);
}

.modal-body p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.4;
}

.form-group {
  text-align: left;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-white);
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 1rem; /* Evita zoom automático no iOS */
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-green);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.1);
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin: 20px 0 25px;
  padding: 0 5px;
}

.form-group-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary-green); /* Cor personalizada do checkbox */
}

.form-group-checkbox label {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.modal-submit {
  width: 100%;
  justify-content: center;
  padding: 18px !important;
}

/* Ajustes para telas muito pequenas ou modo paisagem */
@media (max-height: 600px) {
  .modal-banner {
    display: none; /* Esconde o banner se a tela for muito baixa (ex: celular deitado) */
  }
  .modal-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    max-height: 100vh;
    border-radius: 20px;
  }
  .modal-body {
    padding: 20px 20px 25px;
  }
  .form-group-checkbox label {
    font-size: 0.75rem;
  }
}

/* --- FAQ --- */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 150px;
  margin-top: 15px;
}

footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  header {
    min-height: auto; /* Permite que a seção cresça se necessário no mobile */
    padding: 60px 0 60px;
    text-align: center;
  }

  .hero-flex {
    flex-direction: column;
    gap: 40px;
  }

  .hero-content {
    width: 100%;
    min-width: auto;
    order: 1; /* Texto primeiro */
  }

  header h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 25px;
  }

  .hero-image {
    width: 100%;
    min-width: auto;
    order: 2; /* Imagem depois */
  }

  .hero-image-box {
    width: 260px; /* Reduzido para mobile */
    height: 340px;
    transform: rotateY(-10deg) rotateX(5deg); /* Suavizado no mobile */
  }

  nav {
    justify-content: center; /* Centraliza o botão no mobile */
    top: 60px;
  }

  .cta-btn {
    width: 100%; /* Botão ocupa largura total no mobile */
    justify-content: center;
    padding: 18px 30px;
    font-size: 1rem;
  }

  .whatsapp-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-card {
    /* Altura removida para respeitar o aspect-ratio 3/4 */
  }

  .price-value {
    font-size: 3.5rem;
  }
}
