html, body {
  margin: 0;
  padding: 0 0px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff5f8;
}

.final-offer, .option input, .head-arrow,
.on-off-2, .on-off-3, .on-off-4, .on-off-5,
.on-off-6, .on-off-7, .on-off-8, .on-off-9,
.on-off-10, .on-off-11, .on-off-12, .loading-screen {
  display: none;
}

/* ===== CORES PRINCIPAIS ===== */
.color-rose { color: #e11d7a; }
.bg-rose { background-color: #e11d7a; color: white; }
.color-pink { color: #db2777; }

/* ===== BOTÃO PRINCIPAL ===== */
.btn-shine {
  background: linear-gradient(135deg, #e11d7a 0%, #be185d 100%);
  border: none;
  box-shadow: 0 7px 15px rgba(225, 29, 122, 0.5);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: white;
}
.btn-shine:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(225, 29, 122, 0.6);
  background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
  color: white;
}
.btn-shine:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(157, 23, 77, 0.4);
}

/* ===== BARRA DE PROGRESSO ===== */
.progress-bar {
  background: linear-gradient(90deg, #e11d7a, #be185d);
}

/* ===== ALERTAS / BENEFÍCIOS ===== */
.alert-rose {
  background-color: rgba(225, 29, 122, 0.1);
  border: 2px solid #e11d7a;
  color: #be185d;
}

/* ===== ANIMAÇÕES ===== */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: slideInUp 0.6s ease-out forwards; }
.animate-in:nth-child(1) { animation-delay: 0.2s; }
.animate-in:nth-child(2) { animation-delay: 0.4s; }
.animate-in:nth-child(3) { animation-delay: 0.6s; }
.animate-in:nth-child(4) { animation-delay: 0.8s; }
.animate-in:nth-child(5) { animation-delay: 1.0s; }

/* ===== OPÇÕES DO QUIZ ===== */
.option-btn {
  border: 2px solid #e11d7a;
  border-radius: 14px;
  padding: 14px 16px;
  background-color: #fff0f6;
  transition: all 0.25s ease;
  min-height: 58px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.option-btn:hover {
  background-color: #fce7f3;
  border-color: #be185d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 29, 122, 0.2);
}
input[type="checkbox"]:checked + .option-btn {
  background-color: #e11d7a;
  color: white;
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(225, 29, 122, 0.4);
}

/* ===== CORAÇÃO PULSANTE ===== */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}
.heart-pulse {
  display: inline-block;
  animation: heartbeat 1.2s ease-in-out infinite;
}

/* ===================================================
   CARROSSEL DE DEPOIMENTOS — CORRIGIDO PARA MOBILE
   Usa CSS scroll-snap nativo: suave, sem conflito
   com toque, sem auto-scroll agressivo
=================================================== */
.carousel-wrapper {
  width: 100%;
  position: relative;
  margin: 16px 0 8px;
}

.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;   /* snap obrigatório */
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 12px;
  /* Esconde scrollbar em todos os navegadores */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Cada card ocupa ~88% da largura e faz snap */
.depo-card {
  flex: 0 0 88%;
  scroll-snap-align: center;
  scroll-snap-stop: always;   /* garante parar nesse card */
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 16px rgba(225, 29, 122, 0.12);
  border: 1px solid #fce7f3;
  /* Evita que o card encolha */
  min-width: 0;
}

.depo-card .stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 8px;
}

.depo-card .user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.depo-card .user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e11d7a;
  flex-shrink: 0;
}
.depo-card .user strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}
.depo-card .user span {
  font-size: 12px;
  color: #9ca3af;
}
.depo-card p {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: #374151;
  line-height: 1.55;
}

/* ===== DOTS DE PAGINAÇÃO ===== */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
  padding-bottom: 4px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fce7f3;
  border: 1.5px solid #e11d7a;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  flex-shrink: 0;
}
.carousel-dot.active {
  background: #e11d7a;
  transform: scale(1.25);
}

/* ===== TREMER (validação) ===== */
@keyframes shake {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-5px); }
  50%  { transform: translateX(5px); }
  75%  { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}
.shake { animation: shake 0.3s; }

/* ===== TELA DE CARREGAMENTO ===== */
.loading-screen {
  min-height: 80vh;
  align-items: center;
  justify-content: center;
}

/* ===== TRANSIÇÃO EMOCIONAL ===== */
.transition-card {
  background: linear-gradient(135deg, #fff0f6 0%, #fce7f3 100%);
  border: 2px solid #e11d7a;
  border-radius: 20px;
  padding: 24px;
}

/* ===== RESULTADO ===== */
.result-card {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border: 2px solid #e11d7a;
  border-radius: 20px;
  padding: 20px;
}
.result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #fce7f3;
}
.result-item:last-child { border-bottom: none; }

/* ===== GARANTIA ===== */
.garantia-box {
  background: #f0fdf4;
  border: 2px solid #16a34a;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

/* ===== OFERTA ===== */
.oferta-box {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border: 2px solid #e11d7a;
  border-radius: 20px;
  padding: 20px;
}

/* ===== BTN VERDE COMPRA ===== */
.btn-compra {
  background: #16a34a;
  color: white;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}
.btn-compra:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.5);
  color: white;
}

/* ===== CONTADOR URGÊNCIA ===== */
.urgency-box {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

/* ===== BÔNUS / ÁUDIOS ===== */
.bonus-card {
  background: white;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  border-left: 4px solid #e11d7a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ===================================================
   SEÇÃO SOBRE A TERAPEUTA
=================================================== */
.sobre-box {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(225, 29, 122, 0.1);
  border: 1px solid #fce7f3;
}
.sobre-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.sobre-foto {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid #e11d7a;
  flex-shrink: 0;
}
.sobre-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.badge-custom {
  background: #fff0f6;
  border: 1px solid #e11d7a;
  color: #be185d;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
}

/* ===================================================
   RODAPÉ LGPD
=================================================== */
.site-footer {
  background: #1f1f2e;
  color: #cbd5e1;
  padding: 28px 16px 20px;
  margin-top: 40px;
  width: 100%;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  color: #e11d7a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.footer-desc {
  font-size: 12.5px;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-links a {
  color: #fce7f3;
  font-size: 12.5px;
  text-decoration: none;
  border-bottom: 1px solid #e11d7a44;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #e11d7a; }
.footer-legal {
  font-size: 11.5px;
  color: #64748b;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-disclaimer {
  font-size: 11px;
  color: #475569;
  text-align: center;
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.5;
}
