
   body {
  background-image: url('./background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  font-family: Arial, sans-serif;
  margin: 0;
  color: #003366; /* vermelho escuro suave */
}

/* Links com transição e vermelhos suaves/vibrantes */
a {
  text-decoration: none;
  color: #FFD700; /* rosa vibrante e legível */
  transition: color 0.3s ease;
}

a:hover {
  color: #FF8C00; /* vermelho intenso no hover */
}




/* Ajustes para textos dentro das divs */
div, div.frosted-dark {
  color: #f0f0f0; /* tom claro para boa leitura */
}

h1, h2, h3, h4, h5, h6 {
  color: #003366; /* Azul-marinho para transmitir confiança e profissionalismo */
  font-weight: 700;
  text-shadow: 
    0 0 4px rgba(255, 215, 0, 0.85),  /* Brilho dourado suave */
    0 0 8px rgba(255, 140, 0, 0.6),    /* Brilho dourado mais suave */
    0 0 12px rgba(125, 206, 130, 0.75); /* Brilho suave em verde claro */
  transition: text-shadow 0.3s ease;
}


      
   

/* Adiciona padding-top no mobile para compensar o header fixo */
@media (max-width: 600px) {
  
}



header img.logo {
  height: auto;
  max-height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}


.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-grow: 1;
}

.header-center .promo-text {
  color: #f8f8f8; /* Cor do texto permanece clara para contraste */
  font-weight: 700;
  font-size: 1rem;
  text-shadow:
    0 0 3px #FFD700,  /* Dourado suave para o brilho */
    0 0 5px #003366;  /* Azul-marinho para o brilho */
  user-select: none;
}


.countdown {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #003366, #003366); /* Azul-marinho para o fundo */
  padding: 8px 18px;
  border-radius: 14px;
  box-shadow:
    0 0 10px #FFD700,    /* Dourado suave para o brilho */
    0 0 20px #FFD700,    /* Dourado suave mais intenso */
    0 0 30px #003366;    /* Azul-marinho para o brilho */
  animation: glow 2s infinite ease-in-out, pulse 2s infinite;
  user-select: none;
  min-width: 110px;
  text-align: center;
}


header .header-right img {
  height: 60px;
  width: auto;
  max-width: 100%;
  margin-right: 30px;
}

@keyframes glow {
  0%, 100% {
    box-shadow:
      0 0 12px #003366,  /* Azul-marinho para um brilho mais profissional */
      0 0 24px #FFD700;  /* Dourado suave para destacar */
  }
  50% {
    box-shadow:
      0 0 20px #003366,  /* Azul-marinho mais intenso */
      0 0 36px #7DCE82;  /* Verde suave para um brilho sutil e harmônico */
  }
}


@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@media (max-width: 600px) {
  

  .header-center {
    order: 2;
    width: 100%;
  }

  .header-right {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  img.logo {
    order: 1;
    height: 50px;
  }

  .countdown {
    min-width: unset;
    padding: 6px 12px;
    font-size: 1rem;
  }

  .header-center .promo-text {
    font-size: 0.9rem;
  }
}





   @keyframes glow {
  0%, 100% {
    box-shadow:
      0 0 10px #003366,   /* Azul-marinho para um brilho mais profissional */
      0 0 20px #FFD700;   /* Dourado suave para destacar */
  }
  50% {
    box-shadow:
      0 0 20px #003366,   /* Azul-marinho mais forte */
      0 0 30px #7DCE82;   /* Verde suave para um brilho sutil */
  }
}


    @keyframes pulse { 0%,100%{opacity:1;}50%{opacity:0.7;} }

    
    

.hero {
  background: rgba(0, 51, 102, 0.35); /* Fundo semi-transparente azul-marinho */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  margin: 30px auto;
  border: 1px solid rgba(0, 51, 102, 0.3); /* Borda suave azul-marinho */
  box-shadow: 0 8px 20px rgba(125, 206, 130, 0.25); /* Sombra suave verde claro */
}


.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #FFD700; /* Dourado suave para o texto */
  text-shadow:
    0 0 6px rgba(0, 51, 102, 0.9),    /* Azul-marinho para o brilho */
    0 0 12px rgba(0, 51, 102, 0.8),    /* Azul-marinho mais forte */
    0 0 20px rgba(125, 206, 130, 0.7), /* Verde suave para o brilho */
    0 0 30px rgba(0, 51, 102, 0.6);    /* Azul-marinho mais intenso */
}

.hero h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: #FFD700; /* Dourado suave para o texto */
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.1),  /* Sombra suave preta para contraste */
    0 0 6px rgba(125, 206, 130, 0.5); /* Brilho verde suave */
}




.price-offer {
  background-color: #003366; /* Azul-marinho suave para o fundo */
  border: 2px solid #FFD700; /* Dourado suave para borda */
  padding: 20px;
  border-radius: 12px;
  margin: 20px auto;
  width: fit-content;
  text-align: center;
  box-shadow: 0 0 15px rgba(125, 206, 130, 0.4); /* Sombra suave verde claro */
  
  animation: glowRed 2.5s infinite ease-in-out, pulseRed 2.5s infinite;
}

/* Animações para o efeito glow e pulse */
@keyframes glowRed {
  0%, 100% { box-shadow: 0 0 10px #FFD700, 0 0 20px #003366; } /* Dourado suave e azul-marinho */
  50% { box-shadow: 0 0 20px #FFD700, 0 0 30px #7DCE82; } /* Dourado suave e verde suave */
}


@keyframes pulseRed {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}


.price-old {
  display: block;
  font-size: 1rem;
  color: #7DCE82; /* Verde suave para um tom mais harmonioso e profissional */
  text-decoration: line-through;
  margin-bottom: 5px;
}


.price-new {
  display: block;
  font-size: 1.5rem;
  color: #FFD700; /* Dourado suave para destaque */
  font-weight: bold;
  text-shadow: 0 0 5px #7DCE82; /* Brilho suave verde claro */
}

/* Animação de glow dourado */
@keyframes glowRed {
  0%, 100% {
    box-shadow: 0 0 10px #003366, 0 0 20px #FFD700; /* Azul-marinho e dourado suave */
  }
  50% {
    box-shadow: 0 0 20px #003366, 0 0 40px #FFD700; /* Azul-marinho e dourado suave */
  }
}





.ebook-img {
  max-width: 80%;
  width: 80%;         /* garante que ela ocupe toda a largura do container */
  height: auto;        /* mantém a proporção */
  margin: 20px auto;   /* centraliza e dá espaço */
  display: block;      /* remove espaços fantasmas de imagens inline */
  border-radius: 16px;
 
}

.cta-bottom {
  text-align: center;
  margin: 20px 0; /* opcional para dar espaço em cima e embaixo */
}
.cta {
  background-color: #FFD700; /* vermelho forte */
  color: #f0f0f0;
  font-weight: 700;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.3rem;
  transition: background-color 0.3s ease;
  display: inline-block;
  user-select: none;

  box-shadow: 0 0 12px #FFD700aa;
  animation: glowRed 2s infinite ease-in-out, pulseRed 2s infinite;
}

.cta:hover {
  background-color: #003366; /* Azul-marinho para hover, mais alinhado ao tema */
  box-shadow: 0 0 25px #FFD700, 0 0 40px #7DCE82; /* Dourado suave e verde suave no hover */
}

/* Animações para o glow e pulse em dourado e azul */
@keyframes glowRed {
  0%, 100% {
    box-shadow: 0 0 12px #FFD700, 0 0 24px #003366; /* Dourado suave e azul-marinho */
  }
  50% {
    box-shadow: 0 0 24px #003366, 0 0 36px #7DCE82; /* Azul-marinho e verde suave */
  }
}

  


@keyframes pulseRed {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}



@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}



   .section { 
  padding: 40px 0; 
}

.section h3, 
.benefits h3, 
.testimonials h3 {
  font-size: 1.8rem; 
  color: #FFD700; /* Dourado suave para o texto, alinhado ao tema de sucesso */
  text-align: center; 
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow:
    0 0 6px rgba(0, 51, 102, 0.9),     /* Azul-marinho para o brilho */
    0 0 12px rgba(0, 51, 102, 0.8),    /* Azul-marinho mais forte */
    0 0 20px rgba(125, 206, 130, 0.7), /* Verde suave para o brilho */
    0 0 30px rgba(0, 51, 102, 0.6);    /* Azul-marinho mais intenso */
}

.benefits {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
}


.benefit-item {
  background: #003366; /* Azul-marinho, mais alinhado ao tema profissional */
  margin-bottom: 20px;
  padding: 18px 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px #7DCE82; /* Sombra suave verde claro */
  color: #fff0f0; /* Texto clarinho para contraste */
  font-size: 1.1rem;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  cursor: default;
}

.benefit-item:hover {
  background-color: #FFD700; /* Dourado suave no hover */
  box-shadow: 0 8px 20px rgba(125, 206, 130, 0.7); /* Brilho suave verde claro */
  transform: scale(1.05);
  color: #003366; /* Texto azul-marinho no hover para contraste */
  cursor: pointer;
}

.testimonials {
  max-width: 600px;
  margin: 40px auto 60px auto;
  padding: 0 20px;
  text-align: center;
}

    .testimonial-carousel {
      position: relative;
      overflow: hidden;
    }
    .testimonial-track {
      display: flex;
      transition: transform 0.5s ease;
    }
    .testimonial-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background: #003366; /* vermelho vibrante */
  border-left: 4px solid #FFD700; /* borda vermelha escura */
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff0f0; /* texto claro para melhor leitura */
}

    .testimonial-photo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .testimonial-text {
      flex-grow: 1;
      text-align: left;
      font-style: italic;
      font-size: 1.1rem;
      position: relative;
    }
    .testimonial-author {
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
  text-align: right;
  color: #FFD700; /* vermelho escuro para destaque */
}

    .stars {
      color: #ffc107;
      font-size: 1.2rem;
      margin-top: 8px;
      text-align: right;
    }
    .testimonial-buttons {
      text-align: center;
      margin-top: 15px;
    }
    .testimonial-buttons button {
  background: #FFD700; /* Substituído por dourado suave */
  border: none;
  color: #f0f0f0;
  padding: 8px 14px;
  margin: 0 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-buttons button:hover {
  background: #003366; /* Substituído por azul-marinho para hover */
  box-shadow: 0 0 12px #003366, 0 0 24px #7DCE82; /* Brilho azul-marinho e verde suave */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}



 /* FAQ */
.faq {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px 20px;
  background: rgba(0, 51, 102, 0.12); /* Fundo translúcido suave azul-marinho */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  border: 1px solid rgba(0, 51, 102, 0.3); /* Borda sutil azul-marinho */
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.2); /* Sombra suave azul-marinho */
}

/* TÍTULO COM EFEITO DE ILUMINAÇÃO */
.faq h3 {
  text-align: center;
  color: #FFD700; /* Dourado suave para o texto, alinhado com o tema de sucesso */
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 800;
  text-shadow:
    0 0 6px rgba(0, 51, 102, 0.9),    /* Azul-marinho para o brilho */
    0 0 12px rgba(0, 51, 102, 0.8),   /* Azul-marinho mais forte */
    0 0 20px rgba(125, 206, 130, 0.7), /* Verde suave para o brilho */
    0 0 30px rgba(0, 51, 102, 0.6);   /* Azul-marinho mais intenso */
}



/* ITEM FAQ */
.faq-item {
  border-bottom: 1.5px solid #003366; /* Substituído por azul-marinho para um contraste mais profissional */
  padding: 15px 0;
}

/* PERGUNTA */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.35rem;
  color: #FFD700; /* Substituído por dourado suave para um alto contraste mais sofisticado */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.75),   /* Sombra escura para destacar */
    0 0 6px rgba(125, 206, 130, 0.6);  /* Brilho suave em verde claro */
  transition: color 0.3s ease, text-shadow 0.3s ease;
}




.faq-question:hover {
  color: #FFD700; /* Dourado suave no hover */
  text-shadow:
    1px 1px 5px rgba(0, 51, 102, 1),   /* Azul-marinho para um brilho mais profissional */
    0 0 10px rgba(125, 206, 130, 0.95); /* Verde suave para um efeito de brilho mais elegante */
}


/* RESPOSTA - cor mais clara para legibilidade */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 10px;
  color: #FFD700; /* Dourado suave, alinhado com o tema de sucesso */
  font-size: 1.05rem;
  line-height: 1.5rem;
  font-weight: 500;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.8),  /* Sombra suave para contraste */
    0 0 2px rgba(0, 0, 0, 0.6);      /* Sombra mais sutil para legibilidade */
}





.faq-question::after {
  content: "💰"; /* Ícone de moedas, relacionado a sucesso financeiro */
  font-size: 1.4rem;
  color: #FFD700; /* Dourado suave, que remete ao sucesso */
  animation: pulseHeart 1.5s infinite ease-in-out;
  transition: transform 0.3s ease;
  margin-left: 8px;
}

/* Quando aberto: troca para ícone de dinheiro mais preenchido */
.faq-question.open::after {
  content: "💸"; /* Ícone de saco de dinheiro, simbolizando sucesso financeiro */
  transform: scale(1.2);
}


/* Animação de pulsar */
@keyframes pulseHeart {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}




 {
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.35), rgba(0, 51, 102, 0.35)); /* Azul escuro translúcido */
  padding: 10px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #f0f0f0;
  box-shadow: 0 0 20px rgba(0, 51, 102, 0.3); /* Sombra azul suave */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-blend-mode: overlay;
  border-top: 1px solid rgba(255, 215, 0, 0.1); /* Bordas douradas suaves */
}


.-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.-left img {
  max-height: 35px;
}

.-center img {
  max-height: 40px;
}

.-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

 {
  display: flex;
  gap: 12px;
  margin-bottom: 4px;
}

 a {
  display: inline-block;
}

 img {
  width: 42px;
  height: 42px;
  transition: opacity 0.3s;
}

 a:hover img {
  opacity: 0.7;
}

.-rights {
  font-size: 12px;
  color: #FFD700; /* Dourado suave para um toque de prestígio */
}




.audio-offer {
  background: rgba(0, 51, 102, 0.15); /* Azul escuro translúcido */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  color: #f0f0f0;
  padding: 30px 20px;
  text-align: center;

  border: 1px solid rgba(0, 51, 102, 0.4); /* Borda sutil azul-marinho */
  border-radius: 15px;

  box-shadow: 0 0 15px rgba(125, 206, 130, 0.15); /* Sombra suave verde claro */
  margin: 40px auto;
  max-width: 600px;
  transition: box-shadow 0.3s ease;

  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* Para melhor legibilidade */
}


.gradient-box {
  background: rgba(0, 51, 102, 0.15); /* Azul escuro translúcido */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #f0f0f0;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(0, 51, 102, 0.4); /* Borda sutil azul-marinho */
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(125, 206, 130, 0.15); /* Sombra suave verde claro */
  margin: 40px auto;
  max-width: 600px;
  transition: box-shadow 0.3s ease;
}

.audio-offer:hover {
  box-shadow: 0 0 30px #003366, 0 0 40px #7DCE82; /* Sombra azul-marinho e verde suave */
  animation: glow 2s infinite ease-in-out, pulse 1.2s infinite;
}


.audio-offer h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.audio-offer p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

@keyframes glow {
  0%, 100% {
    box-shadow:
      0 0 15px rgba(0, 51, 102, 0.8); /* Azul-marinho com transparência */
  }
  50% {
    box-shadow:
      0 0 30px #FFD700,      /* Dourado suave para o brilho */
      0 0 40px #7DCE82;      /* Verde suave para o brilho */
  }
}


.about-author {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;

  background: rgba(0, 51, 102, 0.15); /* Substituído por azul translúcido suave */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 12px;
  border: 1px solid rgba(0, 51, 102, 0.5); /* Substituído por azul-marinho */
}

.author-text {
  flex: 1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #FFD700; /* Substituído por dourado suave */
  font-weight: 700;
  text-shadow:
    2px 2px 6px rgba(0, 51, 102, 0.9), /* Azul-marinho para o brilho */
    0 0 10px rgba(125, 206, 130, 0.8); /* Verde suave para o brilho */
}


.author-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #FFD700; /* Substituído por dourado suave para um tom mais elegante */
  text-shadow:
    3px 3px 8px rgba(0, 51, 102, 0.85),  /* Azul-marinho para o brilho */
    0 0 15px rgba(125, 206, 130, 0.9);  /* Verde suave para o brilho */
}

.author-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #FFD700; /* Substituído por dourado suave */
  text-shadow:
    1px 1px 5px rgba(0, 51, 102, 0.7); /* Azul-marinho para legibilidade */
}







.author-image {
  flex: 1;
  max-width: 300px;
}

.author-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 51, 102, 0.8); /* Substituído por azul-marinho para um brilho suave e profissional */
}




@keyframes star-glow {
  0%, 100% {
    text-shadow:
      0 0 8px #003366,    /* Azul-marinho para um brilho sutil */
      0 0 15px #FFD700;   /* Dourado suave para destacar o brilho */
  }
  50% {
    text-shadow:
      0 0 15px #FFD700,   /* Dourado suave mais intenso */
      0 0 25px #7DCE82;   /* Verde suave para um brilho suave e profissional */
  }
}


.stars {
  color: #e4e70e;
  font-size: 1.5rem;
  animation: star-glow 3s infinite;
  user-select: none;
}

.learning-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}


.learning-section h2 {
  font-size: 2rem;
  color: #FFD700; /* Substituído por dourado suave para um tom mais elegante */
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow:
    0 0 6px #7DCE82,    /* Verde suave para um brilho sutil */
    0 0 12px #7DCE82,   /* Verde suave mais intenso */
    0 0 18px #003366,   /* Azul-marinho para um brilho mais sóbrio */
    0 0 30px #003366;   /* Azul-marinho mais forte para um contraste elegante */
}


.carousel-wrapper {
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.learning-track {
  display: flex;
  transition: transform 1s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item img {
  max-width: 90%;
  max-height: 400px;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 51, 102, 0.1); /* Sombra azul suave para um toque profissional */
  object-fit: contain;
}


.carousel-controls {
  margin-top: 20px;
  text-align: center;
}

.carousel-controls button {
  background-color: #7DCE82;
  border: none;
  color: #f0f0f0;
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-controls button:hover {
  background-color: #7DCE82; /* Substituído por verde suave */
  color: #fff;
  box-shadow: 0 0 8px rgba(125, 206, 130, 0.6); /* Sombra suave verde claro */
}

/* Responsividade */
@media (max-width: 760px) {
  .carousel-item img {
    max-width: 95%;
    max-height: 250px;
  }
}


  .container,
  .hero,
  .price-offer,
  .audio-offer,
  .gradient-box,
  .benefits,
  .testimonials,
  .faq,
  .learning-section {
    padding: 20px 15px;
    margin: 20px 10px;
    width: auto;
  }

  /* aumenta o padding-top para evitar sobreposição com header */
  


/* Ajustes para telas até 480px (celulares pequenos) */


  .header-right img {
    height: 40px;
    margin-right: 0;
  }

  




/* Títulos globais */
h1 {
  font-size: 1.8rem;
  color: #003366; /* Substituído por azul-marinho para transmitir confiança e profissionalismo */
  text-shadow:
    1px 1px 3px rgba(255, 255, 255, 0.6),
    0 0 6px rgba(255, 215, 0, 0.5); /* Substituído por dourado suave para o brilho */
}

h2 {
  font-size: 1.2rem;
  color: #FFD700; /* Substituído por dourado suave */
  text-shadow:
    1px 1px 2px rgba(255, 255, 255, 0.5);
}


/* Hero específico */
.hero h1 {
  font-size: 2rem;
  color: #003366; /* Substituído por azul-marinho para transmitir confiança e profissionalismo */
  text-shadow:
    2px 2px 5px rgba(255, 255, 255, 0.6),
    0 0 8px rgba(255, 215, 0, 0.4); /* Substituído por dourado suave para o brilho */
}

.hero h2 {
  font-size: 1.2rem;
  color: #FFD700; /* Substituído por dourado suave */
  text-shadow:
    1px 1px 2px rgba(255, 255, 255, 0.5);
}


  .cta {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .ebook-img {
  max-width: 100%;
  width: 100%;         /* Garante que ela ocupe toda a largura do container */
  height: auto;        /* Mantém a proporção */
  margin: 20px auto;   /* Centraliza e dá espaço */
  display: block;      /* Remove espaços fantasmas de imagens inline */
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.15); /* Sombra suave azul-marinho */
}


  .benefit-item {
    font-size: 1rem;
    padding: 15px;
  }

  .about-author {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .author-text, .author-image {
    max-width: 100%;
    text-align: center;
  }

  .testimonial-item {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-photo {
    margin: 0 auto;
  }

  .-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .-right {
    align-items: center;
  }


.autora {
  max-width: 600px;
  margin: 60px auto; /* auto horizontal para centralizar */
  padding: 60px 20px;
  border-top: 2px solid #003366; /* Substituído por azul-marinho para borda superior */
  border-bottom: 2px solid #003366; /* Substituído por azul-marinho para borda inferior */
  background-color: #003366; /* Substituído por azul-marinho mais profissional */
  text-align: center;
  box-sizing: border-box;
  background: rgba(0, 51, 102, 0.15); /* Azul translúcido suave */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 51, 102, 0.4); /* Borda sutil azul-marinho */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(125, 206, 130, 0.1); /* Sombra suave em verde claro */
}


.autora h2 {
  font-size: 1.8rem;
  color: #003366; /* Substituído por azul-marinho para transmitir confiança e profissionalismo */
  margin-bottom: 30px;
}


.autora-img-wrapper {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.autora-img-wrapper img {
  height: 300px; /* ou a altura que quiser */
  width: auto;   /* mantém a proporção */
  border-radius: 16px;
  box-shadow: 0 0 20px #7DCE82; /* Substituído por verde suave da paleta para um tom mais profissional */
  display: block;
}

  

@media (max-width: 600px) {
  

  .header-center {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .header-right {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  img.logo {
    order: 1;
    height: 35px;
  }

  .countdown {
    padding: 6px 12px;
    font-size: 1rem;
  }

  .header-center .promo-text {
    font-size: 0.9rem;
  }

  .header-right img {
    height: 40px;
    margin-right: 0;
  }
}


@media (max-width: 450px) {
  

  

  .header-center .promo-text,
  .countdown {
    font-size: 0.9rem;
  }

  .header-right img {
    height: 40px;
    margin-right: 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero h2 {
    font-size: 1rem;
  }

  .cta {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .ebook-img {
    width: 100%;
    height: auto;
  }

  .benefit-item,
  .testimonial-item {
    font-size: 1rem;
  }

  .testimonials,
  .benefits,
  .learning-carousel,
  .faq {
    padding: 10px;
    margin: 10px;
  }

  .learning-carousel h3,
  .faq h3 {
    font-size: 1.4rem;
  }

  .carousel-controls button {
    padding: 6px 12px;
    font-size: 1rem;
  }

  .-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .-right {
    align-items: center;
  }

  .-left img,
  .-center img,
   img {
    max-width: 50px;
    height: auto;
  }

  .autora-img-wrapper img {
    height: auto;
    width: 100%;
  }
}

.gradient-box {
  width: 100%;
  box-sizing: border-box;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  padding-top: 180px; /* garantir espaço para o header fixo */
  border-radius: 20px;
  box-shadow: 0 10px 30px #7DCE82; /* Substituído por verde suave da paleta para um tom mais profissional */
}



@media (max-width: 600px) {
  

  .header-center,
  .header-right {
    width: 100%;
  }

  .header-right {
    display: flex;
    justify-content: center;
  }

  .header-center .countdown {
    margin: 0 auto;
  }
}
  
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 12px 20px;
  }

  .header-center,
  .header-right {
    width: 100%;
  }

  .header-right {
    display: flex;
    justify-content: center;
  }

  .header-center .countdown {
    margin: 0 auto;
  }

  .container,
  .hero,
  .price-offer,
  .audio-offer,
  .gradient-box,
  .benefits,
  .testimonials,
  .faq,
  .learning-section {
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }
}
  
footer {
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.35), rgba(0, 51, 102, 0.35)); /* Azul-marinho translúcido */
  padding: 15px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #f0f0f0;
  box-shadow: 0 0 20px rgba(0, 51, 102, 0.3); /* Sombra suave azul-marinho */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-blend-mode: overlay;
  border-top: 1px solid rgba(255, 215, 0, 0.1); /* Bordas douradas suaves */
}

.footer-logo {
  width: auto !important;
  height: auto !important;
  max-height: 90px !important;
  max-width: 100% !important;
  display: block;
  object-fit: contain;
}



.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left img {
  max-height: 45px;
}

.footer-center img {
  max-height: 60px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.social-icons img {
  width: 60px;
  height: 60px;
  transition: opacity 0.3s;
}

.social-icons a:hover img {
  opacity: 0.7;
}

.footer-rights {
  font-size: 12px;
  margin-top: 6px;
  text-align: right;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
  }

  .footer-rights {
    text-align: center;
    margin-top: 10px;
  }

  .social-icons {
    justify-content: center;
  }
}
  
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: none !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .footer-right .social-icons {
    justify-content: center;
  }

  .footer-rights {
    text-align: center;
  }
}
   /* Centralização global para blocos principais */
section,
.gradient-box,
.price-offer,
.audio-offer,
.testimonials,
.benefits,
.faq,
.about-author,
.autora,
.cta-bottom {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Centraliza colunas ou blocos internos que usam Flex */
.about-author,
.testimonial-item,
.benefits,
.testimonials,
.faq,
.audio-offer {
  justify-content: center;
}

/* Alinha imagens e textos internos onde for necessário */
.benefit-item,
.testimonial-text,
.testimonial-author {
  text-align: center;
}

/* Garante centralização em telas menores */
@media (max-width: 768px) {
  .about-author,
  .testimonial-item,
  .benefits,
  .testimonials,
  .faq,
  .audio-offer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-text,
  .author-image,
  .testimonial-text {
    text-align: center;
  }
}
   .footer-logo {
  width: auto !important;
  height: auto !important;
  max-height: 120px !important;
  max-width: 100% !important;
  display: block;
  object-fit: contain;
}

.social-icon {
  width: 60px !important;
  height: 60px !important;
  transition: opacity 0.3s;
}

.social-icon:hover {
  opacity: 0.7;
}
  