/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=ADLaM+Display&family=Bebas+Neue&family=Pacifico&family=Luckiest+Guy&family=Quicksand&display=swap');

/* Reset global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fdf7f2;
  font-family: 'Quicksand', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Container padrão */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Tipografia */
h1, h2, h3 {
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1a1a1a;
}

/* Títulos principais */
.title-main {
  font-family: 'Bebas Neue', sans-serif; /* substitui Lovelo */
  font-size: 2.8rem;
  color: #3a2c1d;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.title-section {
  font-family: 'Pacifico', cursive;
  font-size: 2.4rem;
  color: #3a2c1d;
  text-align: center;
  margin-bottom: 2rem;
}

.title-sub {
  font-family: 'ADLaM Display', cursive;
  font-size: 1.8rem;
  color: #3a2c1d;
  margin-bottom: 1rem;
  text-align: center;
}

/* Texto em destaque */
.text-highlight {
  font-size: 1.4rem;
  color: #3a2c1d;
  text-align: center;
  margin: 2rem auto;
  max-width: 700px;
  line-height: 1.6;
}

/* Botão principal */
.btn-primary {
  display: inline-block;
  font-weight: bold;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #e8ded2, #d6c7bc);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(214, 199, 188, 0.4);
}

/* Seção: Vídeo */
.section-video {
  background: linear-gradient(to right, #000, #232323);
  padding: 3rem 1rem;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Seção: Introdução */
.section-intro {
  background: #fffaf5;
  padding: 4rem 1rem;
  text-align: center;
}

.image-cover {
  max-width: 100%;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.intro-features {
  margin-top: 3rem;
}

.feature-box {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Lista com emojis */
.custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.custom-list li {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

/* Seção: Público-Alvo e FAQ */
.section-target,
.section-faq {
  background: none;
  padding: 4rem 1rem;
  text-align: center;
}

.section-target .list,
.section-faq .list {
  background: none;
}

.section-target li,
.section-faq li {
  margin-bottom: 1rem;
  background: #f9f9f9;
  padding: 1rem;
  border-left: 5px solid #d6c7bc;
  border-radius: 8px;
  font-size: 1.2rem;
  text-align: left;
}

/* Seção: Benefícios */
.section-benefits {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

.benefit-card {
  background: linear-gradient(135deg, #f4ece4, #e8ded2);
  color: #3a2c1d;
  font-family: 'Quicksand', sans-serif;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  max-width: 350px;
  width: 100%;
  text-align: center;
  flex: 1 1 300px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Seção: Antes e Depois */
.section-comparison {
  padding: 4rem 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.section-comparison .container {
  width: 100%;
  max-width: 1200px;
}

.comparison-gallery {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 0 auto;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
}

.comparison-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Seção: Chamada para Ação */
.section-cta {
  padding: 6rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #e8ded2, #f4f0ea);
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* Seção: Sobre a Autora */
.section-author {
  padding: 4rem 1rem;
  background: #fffaf5;
}

.author-wrapper {
  text-align: center;
}

.author-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.author-photo img {
  width: 280px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.author-info {
  max-width: 500px;
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.8;
}

/* Rodapé */
.footer {
  text-align: center;
  background: #101010;
  color: #fff;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .title-main {
    font-size: 2rem;
  }

  .title-section {
    font-size: 2rem;
  }

  .text-highlight {
    font-size: 1.2rem;
  }

  .benefit-grid {
    flex-direction: column;
  }

  .author-grid {
    flex-direction: column;
    text-align: center;
  }

  .author-info {
    text-align: center;
  }
}
.centered-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.centered-list li {
  text-align: justify;
  max-width: 600px;
}

.footer p{

  color: #fff;

}

.price-box {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.old-price {
  font-size: 1.4rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.new-price {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(90deg, #d69b6c, #b46934);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  transition: filter 0.3s ease;
}

/* Banner de urgência */
.urgency-banner {
  background-color: #ffdee4; /* rosa claro */
  color: #9b1c2f;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
  font-size: 1.2rem;
}

/* Galeria de depoimentos com imagens */
.section-testimonials {
  padding: 4rem 1rem;
  text-align: center;
  background: #fffaf5;
}

.testimonial-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.testimonial-gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Botão verde */
.btn-green {
  background: linear-gradient(90deg, #a8e063, #56ab2f);
  color: white;
}

.btn-green:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(86, 171, 47, 0.4);
}

/* Banner com contador regressivo */
.urgency-timer {
  background-color: #ffdee4;
  color: #9b1c2f;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
  font-size: 1.3rem;
}

#countdown {
  font-weight: bold;
  font-size: 1.4rem;
  background: #fff;
  color: #b30021;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  margin-left: 0.5rem;
}

/* Caixa de oferta abaixo do contador */
.offer-box {
  background: #fff0f0;
  padding: 2rem 1rem;
  text-align: center;
}

.offer-message {
  font-size: 1.4rem;
  font-weight: bold;
  color: #a80028;
  margin-bottom: 1rem;
}

.offer-price {
  font-size: 2rem;
  color: #56ab2f;
  background: #e8fce5;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
}

.scroll-btn {
  margin-top: 1rem;
  display: inline-block;
  background: linear-gradient(90deg, #56ab2f, #a8e063);
  color: white;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(86, 171, 47, 0.4);
}

/* Bloco de promoção visual */
.promo-offer-box {
  background: linear-gradient(90deg, #fff6f6, #fbeaea);
  padding: 2rem 1rem;
  text-align: center;
  border-top: 2px solid #d6c7bc;
  border-bottom: 2px solid #d6c7bc;
}

.promo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #9b1c2f;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.old-price-inline {
  text-decoration: line-through;
  color: #777;
  font-size: 1.3rem;
  margin: 0 0.5rem;
}

.new-price-inline {
  font-size: 2.2rem;
  background: linear-gradient(90deg, #d69b6c, #b46934);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: 'Bebas Neue', sans-serif;
}

/* Botão de rolagem */
.scroll-btn {
  margin-top: 0.5rem;
  display: inline-block;
  background: linear-gradient(90deg, #56ab2f, #a8e063);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(86, 171, 47, 0.4);
}

/* Mini CTA no topo */
.mini-cta-top {
  margin-top: 0;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #fff6f1, #fbeee5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 0;
}

.mini-cta-top .title-section {
  font-family: 'ADLaM Display', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Botão verde (reusável) */
.btn-green {
  background: linear-gradient(90deg, #56ab2f, #a8e063);
  color: white;
}

.btn-green:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(86, 171, 47, 0.4);
}

