* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}


body {
  background: linear-gradient(to bottom, rgba(243, 233, 220, 0.95), rgba(226, 212, 186, 0.85)), url('../images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #3a2d1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

#formulario-receber {
  width: 70%;
}


/* Animações por rolagem */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease-out;
  width: 100%;
  padding: 0 20px;
}

.topo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  max-width: 1200px;
  margin-inline: auto;
}

.texto-topo {
  flex: 1;
  min-width: 280px;
  padding: 0 1rem;
}

.label-titulo {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  border: solid 1px #5d3f2e;
  border-radius: 20px;
  color: #5d3f2e;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #442409;
  margin-bottom: 1rem;
}

.texto-topo p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.lado-direito {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lado-direito img {
  width: 390px;
  max-width: 100%;
  border-radius: 12px;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

input[type='text'],
input[type='email'] {
  padding: 0.8rem;
  margin-top: 0.8rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 1rem;
}

input:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(85, 60, 20, 0.7);
}

.btn-ebook,
.btn-ebook2 {
  background-color: #a3301b;
  color: #fff;
  text-shadow: 2px 1px 1px #520d01;
  border-radius: 30px;
  border: 0;
  padding: 0.9rem 1.5rem;
  font-size: 1.5rem;
  transition: background 0.3s;
  margin-top: 1rem;
}

.btn-ebook {
  width: 100%;
}

.btn-ebook2 {
  width: 50%;
  text-decoration: none;
}

.btn-ebook:hover,
.btn-ebook2:hover {
  background-color: #5f1002;
}

.btn-google {
  margin-top: 1rem;
  background-color: #f7f7f7;
  color: rgb(58, 58, 58);
  border: 1px solid #ccc;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-google:hover {
  background-color: #c0c0c0;
  border: 1px solid #aaaaaa;
}

.btn-google img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

a.btn-ebook {
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.conteudo-ebook {
  background-color: #f5efe2;
  margin-top: 3rem;
  padding: 2rem 1rem;
}

.conteudo-ebook-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.conteudo-ebook img {
  width: 300px;
  border-radius: 10px;
}

.conteudo-ebook ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.3rem;
}

.conteudo-ebook li {
  line-height: 56px;
  text-align: center;
}

.conteudo-ebook h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #5a3b1d;
  text-align: center;
}

.bonus {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.bonus img {
  max-width: 100%;
  border-radius: 12px;
}

.bonus h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #5a3b1d;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.bonus h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #5a3b1d;
  text-align: center;
}

.bonus p {
  font-size: 1.1rem;
}


.phone {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0 1rem;
  color: #a3301b;
}


.social-links {
  text-align: center;
  font-size: 0.9em;
  margin-top: 10px;
}

.social-links a {
  color: #333;
  text-decoration: none;
  margin: 0 5px;
}

.social-links a:hover {
  text-decoration: underline;
}

.cta-final {
  text-align: center;
  margin-top: 1rem;
}

footer.rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #3a2d1a;
  border-top: 1px solid #cdbda0;
  margin-top: 3rem;
  flex-wrap: wrap;
}

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

footer.rodape .seguro {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.break-mobile {
  display: inline;
}

.phone {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-link {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.phone-link:hover {
  text-decoration: none;
  color: #520d01;
}

.phone-label {
  font-size: 0.5em;
  color: #222;
  margin-top: 4px;
}

.validation-text {
  font-size: 12px;
  color: red;
}

@media (max-width: 768px) {

  #formulario-receber {
  width: 100%;
}

  .social-links {
    font-size: 1.2em;
  }

  .phone {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /* reduz o espaço vertical entre os blocos */
  }

  .phone-block {
    margin-bottom: 0;
    /* remove qualquer margem extra */
  }

  .break-mobile {
    display: block;
    text-align: left;
    margin-top: 4px;
    text-align: center;
  }

  body {
    background: linear-gradient(to bottom, rgba(243, 233, 220, 0.95), rgba(226, 212, 186, 0.85)),
      url('../images/bg.jpg');
    background-size: auto;
    background-position: inherit;

  }


  .topo,
  .conteudo-ebook-inner {
    flex-direction: column;
    align-items: center;
  }

  h1 {
    font-size: 1.8rem;
  }

  .label-titulo {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .bonus h4 {
    font-size: 1rem;
  }


  .conteudo-ebook ul {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
  }

  .conteudo-ebook li {
    line-height: 30px;
  }

  .conteudo-ebook img {
    width: 100%;
    max-width: 320px;
  }

  footer.rodape {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
