/* CSS Reset Base */

/* 1. Remove default margin & padding, set box-sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Ensure full height on html/body */
html,
body {
  font-family: 'Poppins', sans-serif;
  height: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.header {
  background-color: #a00c0c;
  color: white;
  padding: 15px 0;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 300px;
  margin-bottom: 0;
  border-bottom: none;
  /* Se houver borda */
  overflow: hidden;
  /* Contém margens internas */
}

@media (max-width: 767px) {
  .header {
    gap: 20px;
    /* Reduz muito o espaçamento entre itens */
    padding: 10px 0;
    /* Padding menor para telas pequenas */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha se necessário */
    justify-content: center;
    /* Centraliza os itens */
    text-align: center;
    /* Centraliza o texto */
  }
}

/* 3. Remove list styles */
ul,
ol {
  list-style: none;
}

/* 4. Strip default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* 5. Make images and videos fluid */
img,
picture,
video,
canvas,
svg {

  max-width: 100%;
}

/* 6. Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Remove default table borders */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 8. Prevent overflow on body */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* 9. Set default body font & background (adjust as needed) */
body {
  font-family: 'Poppins', sans-serif;
  background: #0B1C2D;
  color: #fff;
}



.hero {
  background: #0B1C2D;
  text-align: center;
  margin-bottom: 0;
  /* <- novo */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.video-hero {
  width: 50%;
}

@media(max-width: 767px) {
  .hero {
    padding-top: 80px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 0px;
    /* reduz aqui */
    margin-bottom: 0;
  }

  .video-hero {
    width: 100%;
  }
}

.hero-header h1 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);

}

.btn-order {
  display: none;
  /* escondido inicialmente */
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ff6600;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  z-index: 100;
}

.btn-order:hover {
  background-color: #e65c00;
  transform: scale(1.05);
}

.video-container {
  max-width: 800px;
  margin-top: 40px;
  margin-bottom: 0;
  /* <- corrigido */
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.video-player {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 */
  background: #000;
}

.thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbnail::after {
  content: '';
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e00;
}

.play-button {
  width: 64px;
  height: 64px;
  background: #4a8232;
  border: none;
  border-radius: 50%;
  position: relative;
}

.play-button::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

#viewer-counter {
  margin-top: 5px;
  font-size: clamp(12px, 3vw, 16px);
  /* Tamanho responsivo */
  text-align: center;
  /* Centraliza o conteúdo */
  padding: 8px 12px;
  background-color: rgba(0, 0, 0, 0.05);
  /* Fundo sutil opcional */
  border-radius: 20px;
  /* Bordas arredondadas */
  display: inline-block;
  /* Ajusta ao conteúdo */
  width: auto;
  /* Largura conforme conteúdo */
  max-width: 100%;
  /* Não ultrapassa a largura do container pai */
  box-sizing: border-box;
  /* Previne overflow */
}

#viewer-counter strong {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* Permite quebra de linha em telas pequenas */
  gap: 5px;
  /* Espaço entre elementos */
}

#viewer-counter .fas.fa-eye {
  margin-right: 5px;
  font-size: 1.1em;
  /* Tamanho relativo */
}

#count {
  color: #ff1900 !important;
  /* Mantém a cor vermelha */
  font-weight: bold;
  margin: 0 3px;
}

/* Media Queries para ajustes específicos */
@media (max-width: 600px) {
  #viewer-counter {
    padding: 6px 10px;
    font-size: 14px;
  }

  #viewer-counter strong {
    flex-direction: row;
    /* Mantém os itens em linha */
  }
}

@media (max-width: 400px) {
  #viewer-counter {
    width: 100%;
    border-radius: 0;
  }

  #viewer-counter strong {
    justify-content: center;
  }
}



/* Container principal do alerta */
.prostate-alert {
  margin-top: 5px;
  width: 100%;
  box-sizing: border-box;
}

/* Linha do alerta */
.alert-message {
  text-align: center;
  font-weight: 900;
  /* Negrito mais forte */
  padding: 10px 15px;
  color: #000;
  /* Texto preto */
  display: inline-block;
  width: auto;
  font-size: min(4vw, 18px);
  /* Diminui proporcionalmente */
  max-width: 95%;
  margin: 0 auto;
}

/* Texto em caixa alta */
.alert-text {
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 5px;
  font-weight: 900;
  /* Negrito extra */
  font-size: 0.95em;
}

/* Emojis */
.alert-emoji {
  font-size: 1.2em;
  vertical-align: middle;
}

/* Media Queries para ajustes específicos */
@media (max-width: 480px) {
  .prostate-alert {
    padding: 0 5px;
    width: 100%;
  }

  .alert-message {
    font-size: 3.5vw;
    padding: 5px 8px;
    white-space: normal;
    /* Permite quebra em telas minúsculas */
  }

  .alert-text {
    white-space: nowrap;
    /* Mantém texto sem quebra */
    margin: 0 3px;
  }
}

@media (max-width: 320px) {
  .alert-message {
    font-size: 11px;
  }
}


.about-creator {
  background-color: #f2faf8;
  padding: 60px 20px;
}

.about-creator__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #222;
}

.about-creator__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a254f;
  margin-bottom: 24px;
}

.about-creator__text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-creator__signature {
  margin-top: 32px;
}

.about-creator__author {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 12px;
}

.about-creator__sig-image {
  width: 160px;
  height: auto;
}





.compare {
  padding: 60px 20px;
  background: linear-gradient(90deg, #0d0d7c, #01032b);
  font-family: Arial, sans-serif;
}

.compare__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  color: #fff;
}

/* Media area */
.compare__media {
  position: relative;
  flex: 1 1 300px;
  min-height: 300px;
}

.compare__media img {
  width: 100%;
  max-width: 510px;
  /* ajuste conforme o tamanho ideal */
  aspect-ratio: 1 / 1;
  /* mantém a proporção quadrada */
  object-fit: cover;
  /* mantém o enquadramento bonito */
  border-radius: 50%;
  /* cria o círculo */
  overflow: hidden;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  /* opcional: sombra leve */
  border: 3px solid #fff;
}



.compare__bottle {
  position: relative;
  z-index: 3;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.compare__person {
  position: absolute;
  top: 20%;
  width: 120px;
  opacity: 0.8;
}

.compare__person--left {
  left: 0;
}

.compare__person--right {
  right: 0;
}

/* Table area */
.compare__table-wrapper {
  flex: 1 1 400px;
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  color: #333;
}

.compare__title {
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: #1b216e;
  text-align: center;
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
}

.compare__table th,
.compare__table td {
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.compare__table th {
  background: #f0f4ff;
  color: #1b216e;
}

.compare__table td:first-child {
  text-align: left;
  color: #555;
}

.check {
  color: #2ca84f;
  font-size: 1.2rem;
}

.cross {
  color: #d92e2e;
  font-size: 1.2rem;
}

/* Striping */
.compare__table tbody tr:nth-child(even) {
  background: #fafbfd;
}

@media (max-width: 768px) {
  .compare {
    padding: 40px 15px;
  }

  .compare__inner {
    flex-direction: column;
    gap: 20px;
  }

  .compare__media {
    order: 1;
    min-height: auto;
  }

  .compare__bottle {
    max-width: 70%;
  }

  .compare__person {
    width: 80px;
    opacity: 0.9;
  }

  .compare__person--left {
    left: -10px;
  }

  .compare__person--right {
    right: -10px;
  }

  .compare__table-wrapper {
    order: 2;
    width: 100%;
    padding: 16px;
  }

  .compare__title {
    font-size: 1.25rem;
  }

  .compare__table th,
  .compare__table td {
    font-size: 0.9rem;
    padding: 10px 6px;
  }
}

@media (max-width: 480px) {
  .compare__bottle {
    max-width: 90%;
  }

  .compare__person {
    width: 65px;
    top: 25%;
  }

  .compare__title {
    font-size: 1.1rem;
  }

  .compare__table th,
  .compare__table td {
    font-size: 0.8rem;
    padding: 8px 5px;
  }
}

.pricing__reviews {
  display: flex;
  /* em vez de inline-flex */
  justify-content: center;
  /* centra horizontalmente */
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #333;
  width: 100%;
  /* garante área para centralizar */
  margin: 0 auto;
  /* segurança extra */
  margin-bottom: 12px;
}

.pricing__reviews img {
  width: 100px;
  height: auto;
  display: block;
  /* evita alinhamento de linha */
}

/* 📱 Responsivo */
@media (max-width: 768px) {
  .pricing__reviews {
    flex-direction: column;
    /* empilha imagem e texto */
    gap: 4px;
    font-size: 0.85rem;
  }

  .pricing__reviews img {
    width: 80px;
    /* reduz a imagem */
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .pricing__reviews {
    font-size: 0.8rem;
    gap: 3px;
  }

  .pricing__reviews img {
    width: 70px;
  }
}


.bonuses {
  background: linear-gradient(135deg, #09245e, #0d02a5);
  padding: 40px 15px;
  text-align: center;
}

.bonuses-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 80px;
  line-height: 1.2;
}

.bonuses-title strong {
  text-decoration: underline;
}

/* Bonus Cards */
.bonus-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.bonus-card {
  background: #fff;
  border: 5px solid white;
  outline: 4px solid #000000;
  border-radius: 10px;
  width: 320px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-image img {
  width: 100%;
  border-radius: 0;
  display: block;
}

/* Cabeçalho do card */
.card-header {
  background-color: #ffffff;
  color: white;
  padding: 16px;
  font-size: 1.20rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid #ffffff;
}

.bonus-number {
  color: #ffde59;
}


/* Responsivo */
@media (max-width: 900px) {
  .bonus-cards {
    flex-direction: column;
    align-items: center;
  }

  .bonus-card {
    width: 95%;
    max-width: 400px;
  }
}






.faq-section {
  background-color: #020c2d;
  padding: 60px 20px;
  color: white;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title img {
  width: 40px;
  margin-bottom: 10px;
}

.faq-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: white;
  color: #111;
  padding: 18px 20px 18px 45px;
  /* Aumenta o padding-left para dar espaço ao "+" */
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}

.faq-question::before {
  content: "+";
  font-size: 1.2rem;
  position: absolute;
  left: 20px;
  top: 18px;
  color: #111;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #1b1b1b;

  background: white;
  font-size: 0.95rem;
  line-height: 1.5;
}










/* Results & Countdown Section Styles */

.results {
  background: #fff;
  padding: 5px 10px 15px;
  text-align: center;
}

.results-title {
  font-size: 2rem;
  color: #fff;
  background-color: #222;
  margin-bottom: 40px;
  padding: 12px 20px;
  width: 60vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .results-title {
    width: 90% !important;
    font-size: 1.3rem !important;
    padding: 10px 16px !important;
    border-radius: 20px !important;
  }
}

.results-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.result-item {
  width: 300px;
  height: 300px;
  border: 4px solid #222;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.arrow img {
  width: 40px;
  height: auto;
  display: block;
}


.label {
  position: absolute;
  top: 0;
  width: 100%;
  background: #222;
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
  text-transform: uppercase;
}

.arrow {
  font-size: 2rem;
  color: #5ebf4a;
  margin: 0 10px;
  width: 50px;
  height: 50px;
  /* se quiser forçar um quadrado */
}

@media (max-width: 768px) {
  .results-grid {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    transform: scale(0.85);
    transform-origin: top center;
  }

  .result-item {
    width: 100px;
    height: 100px;
    border: 2px solid #222;
    border-radius: 0;
    /* Remove arredondamento */
  }

  .image-wrapper {
    width: 100%;
    height: 100%;
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .arrow {
    width: 30px;
    /* Aumenta a seta */
    height: auto;
  }

  .arrow img {
    width: 100%;
    height: auto;
  }

  .results-title {
    font-size: 1.1rem;
    padding: 8px 12px;
    width: auto;
    border-radius: 0;
    /* Garante título sem cantos arredondados também */
  }

  .results-note {
    font-size: 0.85rem;
    padding: 10px;
    text-align: center;
  }
}


.results-note {
  font-size: 1.2rem;
  color: #333;
  margin-top: 30px;
  text-align: center;
  /* centraliza o texto */
  line-height: 1.5;
  /* melhora a leitura com espaçamento entre linhas */
  white-space: normal;
  /* garante quebra de linha automática */
  max-width: 600px;
  /* largura máxima para evitar linhas muito longas */
  margin-left: auto;
  /* centraliza horizontalmente */
  margin-right: auto;
  margin: 10px auto 0 auto !important;
}

/* Deal & Timer Section */

.deal-timer {
  background: #100744;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-weight: bold;
  position: relative;
  /* necessário para posicionar a flecha */
}

.deal-timer::after {
  content: "";
  position: absolute;
  bottom: -20px;
  /* distancia a flecha da borda inferior */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #100744;
  /* mesma cor do fundo da .deal-timer */
}

.deal-title {
  font-size: 2.2rem;
  line-height: 1.2;
  max-width: 1200px;
  margin: 0 auto 15px auto;
}

.countdown {
  font-size: 3rem;
  font-weight: bold;
  color: #ffe600;
}


body {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}































/* Container principal de preços */
.pricing {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Cartões */
.card-plan {
  background: #fff;
  border: 2px solid #BFC3C9;
  border-radius: 12px;
  width: 320px;
  padding: 60px 20px 20px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  /* espaço para o rótulo */
}

/* Cartão destacado */
.card-plan.best {
  background: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 3px solid #ffa600;
}

/* Cabeçalho BEST VALUE fixado no topo do cartão */
.card-plan.best::before {
  content: "BEST VALUE!";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffa600;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 12px 0;
  font-size: 1rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  z-index: 1;
}

/* Seta do cartão BEST VALUE */
.card-plan.best::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #ffa600;
  z-index: 1;
}

/* Cabeçalho para os outros cards */
.card-header {
  background: #A5CDEB;
  color: white;
  font-weight: bold;
  font-size: 1.0rem;
  text-align: center;
  padding: 12px 0;
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: absolute;
  top: 0;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  /* ou 600/800 conforme desejar */
  font-size: 1.2rem;
  /* ajuste conforme o visual desejado */
  text-transform: none;
  /* ou uppercase se quiser tudo em MAIÚSCULO */
}

/* Informações do plano */
.plan-info h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 20px 0 8px;
  color: #3175B5;
}

.plan-info2 h3 {
  font-size: 2.0rem;
  font-weight: 800;
  margin: 20px 0 8px;
  color: #093c63;

}

.plan-info .supply {
  font-size: 1.0rem;
  color: #3175B5;
  margin-bottom: 15px;
}

.plan-info2 .supply {
  font-size: 1.3rem;
  color: #093c63;
  margin-bottom: 15px;
}

/* Imagem */
.plan-image img {
  max-height: 260px;
  width: auto;
  display: block;
  margin: 0 auto 10px;
}

/* Preço */
.plan-price {
  margin-top: 20px;
  /* Espaço acima da imagem */
  margin-bottom: 25px;
  /* Espaço abaixo da imagem */
  display: flex;
  justify-content: center;
}

/* Lista de benefícios */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.plan-features li img {
  max-width: 260px;
  margin: 6px auto;
  display: block;
}

/* Botão de compra */
.buy-button {
  background: #FFD700;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 3px 0 #cfa700;
  display: inline-block;

  margin-top: auto;
  /* ✅ força alinhamento inferior */
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Total */
.plan-total {
  font-size: 1.0rem;
  margin-top: 20px;
  color: #4b4b4b;
}

.plan-total strong {
  font-size: 1.9rem;
  color: #000;
  font-weight: 800;
}

/* Ícones de pagamento */
.payment-icons {
  max-width: 230px;
  margin: 12px auto;
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* Texto de frete */
.plan-shipping {
  font-size: 1.1rem;
  color: #444;
  margin-top: 8px;
}

.free-shipping {
  font-size: 1.1rem;
  color: #ffffff;
  margin-top: 8px;
  background-color: #0d134d;
}



.card-plan:hover {
  transform: scale(1.06) translateY(-5px);
  transition: transform 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Layout para mobile - BEST VALUE CARD */
/* Versão refinada para mobile - BEST VALUE CARD */
/* Layout Responsivo para Todos os Cards */
/* LAYOUT MOBILE UNIFICADO - BASEADO NA REFERÊNCIA VISUAL */
/* LAYOUT MOBILE PREMIUM - VERSÃO REFINADA */
@media (max-width: 768px) {

  html,
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 16px;
    display: flex;
  }

  .card-plan {
    width: 100%;
    max-width: 400px;
    padding: 60px 24px 16px;
    box-sizing: border-box;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card-header {
    font-size: 1.4rem;
    padding: 10px;
  }

  .plan-info h3,
  .plan-info2 h3 {
    font-size: 1.6rem;
    margin: 10px 0 6px;
    text-align: center;
  }

  .plan-info .supply,
  .plan-info2 .supply {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .plan-image img {
    max-width: 280px;
    height: auto;
    margin: 10px auto;
  }

  .plan-price {
    margin: 10px 0;
  }

  .plan-price img {
    max-width: 260px;
    height: auto;
  }

  .plan-features {
    margin: 10px 0;
    padding: 0;
  }

  .plan-features li img {
    max-width: 180px;
  }

  .card-content {
    margin-top: 10px;
  }

  .buy-now-img {
    max-width: 180px;
  }

  .plan-total {
    font-size: 1.2rem;
    margin-top: 12px;
  }

  .plan-total strong {
    font-size: 1.6rem;
  }

  .payment-icons {
    max-width: 200px;
    margin: 10px auto;
  }

  .plan-shipping {
    font-size: 1.1rem;
    margin-top: 6px;
  }
}


















































/* Reviews */
.review-summary {
  text-align: center;
  margin-top: 10px;
}

.review-heading {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.stars-img {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.review-count {
  font-size: 1.1rem;
  color: #000;
}

.review-count strong {
  font-weight: bold;
  font-size: 1.2rem;
}


.card-plan-best .ribbon {
  background: #3175B5;
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding: 12px 0;
  width: 100%;
  position: relative;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card-plan.best::after {
  content: "";
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #ffa600;
  z-index: 1;
}

.buy-now-img {
  max-width: 230px;
  margin: 12px auto;
  display: block;
}

/* Satisfaction Guarantee Section */

.guarantee {
  background: #2B74AA;
  padding: 40px 20px;
}

.guarantee-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.guarantee-icon img {
  width: 248px;
  height: auto;
  display: flex;
}

.guarantee-text h2 {
  font-size: 1.8rem;
  color: #111;
  line-height: 1.2;
  margin-bottom: 10px;
}

.guarantee-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .guarantee-inner {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-icon {
    margin-bottom: 15px;
  }
}


/* Badges */
.badges {
  background: #222;
  padding: 20px 0;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  /* permite quebrar linha no mobile */
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* gap mais suave em telas pequenas */
  padding: 0 10px;
}

.badge-list img {
  height: 64px;
  /* levemente reduzido para caber melhor em telas menores */
  width: auto;
  display: block;
  max-width: 100%;
  /* evita que ultrapasse o limite do container */
}








/* Bonus Cards */
.bonus-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.bonus-card {
  background: #fff;
  border: 5px solid white;
  outline: 4px solid #057aff;
  border-radius: 10px;
  width: 320px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-image img {
  width: 100%;
  border-radius: 0;
  display: block;
}

/* Cabeçalho do card */
.card-header {
  background-color: #ffffff;
  color: white;
  padding: 16px;
  font-size: 1.20rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid #ffffff;
}

.bonus-number {
  color: #ffde59;
}



/* Preço */
.card-pricing {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  font-size: 1.2rem;
  font-weight: bold;
}

.card-pricing .retail del {
  color: #ff9900;
}

.card-pricing .today {
  color: #000;
}

/* Descrição */
.card-desc {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  padding: 0 18px 24px 18px;
  text-align: left;
}

/* Cabeçalho do card - faixa preta com texto */
.card-header {
  background: #093c63;
  color: #ffffff;
  font-size: 1.20rem;
  font-weight: 600;
  padding: 18px 14px;
  line-height: 1.5;
  text-align: center;
}

.card-header .bonus-number {
  color: #ffe600;
  font-weight: 700;
}

/* Responsivo */
@media (max-width: 900px) {
  .bonus-cards {
    flex-direction: column;
    align-items: center;
  }

  .bonus-card {
    width: 95%;
    max-width: 400px;
  }
}











/* Testimonials Section */

.testimonial {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.testimonials-title {
  font-size: 2rem;
  color: #111;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
  margin-top: 25px;
}

/* Photo Polaroids */
.testimonials-photos {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.testimonials-photos .photo:nth-child(2) {
  transform: rotate(2deg);
}

.testimonials-photos .photo:nth-child(3) {
  transform: rotate(-1deg);
}

.testimonials-photos .photo:nth-child(4) {
  transform: rotate(3deg);
}

.testimonials-photos img {
  display: flex;
  width: 600px;
}

/* Individual Testimonials */
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}



.testimonial {
  display: flex;
  gap: 20px;
}

.avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.avatar img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #525050;
}


.content h3 {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 8px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.stars {
  color: #f5b301;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.verified {
  font-size: 0.85rem;
  color: #555;
  font-weight: bold;
}

@media (max-width: 768px) {

  .stars,
  .verified {
    text-align: center;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }


}

.quote {
  font-size: 0.95rem;
  color: #333;
  font-style: italic;
  margin-bottom: 8px;
}

.author {
  font-size: 0.85rem;
  color: #555;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonials-photos {
    flex-wrap: wrap;
  }

  .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial .avatar {
    width: auto;
    height: auto;
    margin-bottom: 10px;
  }

  .testimonial .avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #525050;
  }

  .testimonial .content {
    max-width: 100%;
  }
}












/* Scientific References Section */
.references {
  background: #fff;
  padding: 60px;
  text-align: center;
}

.references-title {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 30px;
}

.refs-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.refs-logos img {
  max-height: 280px;
  width: auto;
  display: block;
  max-width: 100%;
  height: auto;
}

/* Container da lista de referências */
.refs-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.refs-list ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  /* row-gap e column-gap */
  padding-left: 0;
  list-style-position: inside;
}

.refs-list li {
  width: 100%;
  text-align: center;
}

/* Tablet e abaixo */
@media (max-width: 992px) {
  .references-title {
    font-size: 1.3rem;
  }

  .refs-list {
    padding: 0 16px;
  }

  .refs-list li {
    font-size: 0.95rem;
  }

  .refs-list ol {
    column-count: 1;
    column-gap: 0;
  }

  .refs-logos {
    gap: 20px;
  }

  .refs-logos img {
    max-height: 280px;
  }
}

/* Celulares menores */
@media (max-width: 768px) {
  .references {
    padding: 0;
  }

  .references-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .refs-list {
    padding: 0 10px;
  }

  .refs-list li {
    font-size: 0.95rem;
  }

  .refs-logos img {
    max-height: 120px;
  }
}

@media (max-width: 768px) {

  /* até tablets/celulares */
  .refs-list img {
    width: 100%;
    /* ocupa toda a largura do container */
    height: auto;
    /* mantém proporção */
    max-height: 280px;
  }
}


.disclaimer-bottom {
  display: flex;
  flex-wrap: wrap;
  /* Adicionado para responsividade */
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #222;
}

.vendor-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 300px;
  /* Permite flexibilidade de largura */
  min-width: 250px;
}

.vendor-info img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

.vendor-info p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.4;
  margin: 0;
}

.site-credit {
  text-align: center;
  flex: 1 1 300px;
  /* Permite ajuste mais flexível */
  min-width: 250px;
  font-size: 0.9rem;
  color: #555;
  align-self: center;
  /* Melhor alinhamento vertical */
  background-color: #222;
}


/* Responsivo para telas menores */
@media (max-width: 768px) {
  .disclaimer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vendor-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vendor-info img {
    margin-bottom: 10px;
  }

  .site-credit {
    text-align: center;
  }
}









.notification {
  position: fixed;
  bottom: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
  width: 320px;
  padding: 12px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  animation: slideIn 0.5s forwards;
  box-sizing: border-box;
  z-index: 1000;
  border-left: 4px solid #4CAF50;
}

@media (max-width: 400px) {
  .notification {
    width: 95%;
    font-size: 14px;
    padding: 10px;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-content {
  display: flex;
  gap: 10px;
}

.map-container {
  width: 80px;
  height: 60px;
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.us-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.state-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.text-content {
  flex: 1;
}

.customer-info {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.purchase-info {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.verified {
  font-size: 12px;
  color: #4CAF50;
  display: flex;
  align-items: center;
}

.verified:before {
  content: "✓";
  margin-right: 5px;
}

.state-name {
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: #333;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2px;
}

@media (max-width: 480px) {
  .notification {
    width: 90%;
    font-size: 11.5px;
    padding: 7px;
    left: 10px;
    transform: none;
    /* mantém fixo na esquerda */
  }

  .map-container {
    width: 48px;
    height: 35px;
  }

  .customer-info {
    font-size: 11.5px;
  }

  .purchase-info {
    font-size: 10.5px;
  }

  .verified {
    font-size: 9.5px;
  }

  .state-name {
    font-size: 7.8px;
  }
}

















@media (max-width: 480px) {
  .hero {
    padding: 40px 15px;
  }

  .hero-header h1 {
    font-size: 1.5rem;
  }

  .hero-header .btn-order {
    top: 10px;
    right: 10px;
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .video-hero {
    width: 100% !important;
  }

  .results-title {
    font-size: 1.3rem;
    width: 90vw;
    padding: 10px 14px;
  }

  .result-item {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .deal-title {
    font-size: 1.3rem;
  }

  .countdown {
    font-size: 2.2rem;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
    display: block;
  }

  .card-plan {
    width: 94%;
    padding: 40px 15px 20px;
    display: flex;
  }

  .plan-info h3,
  .plan-info2 h3 {
    font-size: 1.6rem;
  }

  .plan-price {
    font-size: 2rem;
  }

  .plan-price span,
  .plan-total,
  .plan-shipping {
    font-size: 0.9rem;
  }

  .buy-button {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .bonus-cards {
    flex-direction: column;
    align-items: center;
  }

  .bonus-card {
    width: 94%;
  }

  .guarantee-inner {
    flex-direction: column;
    padding: 20px;
  }

  .guarantee-icon img {
    width: 160px;
  }

  .testimonials-photos img {
    width: 100%;
  }

  .testimonial {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .refs-list ol {
    column-count: 1 !important;
  }

  .disclaimer-content,
  .disclaimer-bottom {
    padding: 0 10px;
    text-align: center;
  }

  .notification {
    width: 94%;
    font-size: 13px;
    padding: 10px;
  }

  .card-header {
    font-size: 0.8rem !important;
  }

  .site-credit {
    text-align: center !important;
  }
}









@media (max-width: 550px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .three-plus-three {
    order: 1;
  }

  .two-plus-one {
    order: 2;
  }

  .one-bottle {
    order: 3;
  }
}

.card-header,
.plan-info h3,
.plan-info2 h3,
.plan-info .supply,
.plan-info2 .supply {
  font-family: 'Poppins', sans-serif !important;
}

/* New Pricing Section Styles */
.new-pricing-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.new-pricing-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* Align bottom to handle different heights */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 320px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

/* Header Styles */
.pricing-header {
  padding: 20px;
  color: white;
  text-transform: capitalize;
}

.bg-red {
  background-color: #ff8c94;
}

/* Lighter red/pink for side cards */
.bg-red-dark {
  background-color: #ff0000;
}

/* Strong red for center card */

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 1.2;
}

.pricing-header p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
}

/* Image Area */
.pricing-image {
  padding: 20px;
  background: #fff;
}

.pricing-image img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

/* Price Area */
.price-display {
  margin: 10px 0;
  color: #000;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.per-bottle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  text-align: left;
  line-height: 1.2;
  margin-left: 5px;
}

/* Savings Badge */
.savings-badge {
  color: #3b82f6;
  /* Blue text */
  font-weight: 700;
  font-size: 1.1rem;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.savings-badge.gold {
  color: #fbbf24;
  /* Gold for middle card */
}

/* Guarantee */
.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 15px;
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
  padding: 10px 0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Totals */
.pricing-total {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 5px;
}

.pricing-total .strike {
  text-decoration: line-through;
  margin-right: 5px;
}

.pricing-total strong {
  color: #000;
  font-weight: 800;
  font-size: 1.2rem;
}

.shipping-info {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.shipping-info .free {
  color: #ef4444;
  /* Red for FREE */
}

/* Button */
.buy-btn {
  display: block;
  width: 90%;
  margin: 0 auto 20px;
  padding: 15px;
  background: #ccc;
  /* Default grey */
  color: #000;
  font-weight: 800;
  text-decoration: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 1.2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: none;
}

.buy-btn:hover {
  opacity: 0.9;
}

/* Middle Card Specifics */
.pricing-card.featured {
  transform: scale(1.05);
  /* Slightly larger */
  z-index: 2;
  border: 4px solid #ff0000;
  /* Red border */
}

.pricing-card.featured .middle-section {
  background-color: #1e3a8a;
  /* Dark Blue background for middle section */
  color: white;
  padding: 20px 0;
  margin-top: -20px;
  /* Overlap slightly */
}

.pricing-card.featured .price-display,
.pricing-card.featured .total-price strong,
.pricing-card.featured .shipping-info {
  color: white;
}

.pricing-card.featured .savings-badge {
  color: #fbbf24;
  /* Gold */
}

.pricing-card.featured .guarantee-badge {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card.featured .buy-btn {
  background: #fbbf24;
  /* Gold button */
  color: #000;
  box-shadow: 0 4px 0 #b45309;
  /* Darker gold shadow */
  margin-bottom: 0;
  border-radius: 0;
  width: 100%;
}

.middle-blue-box {
  background-color: #2e4a85;
  /* Blue background */
  color: white;
  padding-bottom: 20px;
}

.middle-blue-box .price-display {
  color: white;
}

.middle-blue-box .pricing-total {
  color: #cbd5e1;
}

.middle-blue-box .pricing-total strong {
  color: white;
}

.middle-blue-box .shipping-info {
  color: #fbbf24;
  /* Yellow for free shipping text */
}

/* Responsive */
@media (max-width: 768px) {
  .new-pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 360px;
  }

  .pricing-card.featured {
    transform: scale(1);
    order: -1;
    /* Show best value first on mobile */
    margin-bottom: 20px;
  }
}

/* FORCE DARK BACKGROUND */
body,
html,
.video,
.video-section,
.video-wrapper,
.hero,
vturb-smartplayer {
  background-color: #0B1C2D !important;
  background: #0B1C2D !important;
}