body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #f5ebdb;
  color: #0a2b46;
}

header {
  background-color: #0a2b46;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

.container {
  max-width: 800px;
  margin: 60px auto;
  padding: 10px 20px 20px 20px;
  background-color: #f5ebdb;
  background: url("../img/background.png") repeat center center;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container2 {
  max-width: 800px;
  margin: 0px auto;
  padding: 10px 20px 0px 20px;
}

h2 {
  color: #962d22;
  margin-top: 40px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
}

ul li::before {
  content: "✔️";
  margin-right: 10px;
  color: #0a2b46;
}

.cta {
  text-align: center;
  margin-top: 40px;
}

.cta.cta2 {
  margin-top: 20px;
}

.cta a {
  position: relative;
  display: inline-block;
  background-color: #962d22;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.cta a:hover {
  background-color: #c72d3e;
}

/* Brilho infinito */
.cta a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.price-box {
  /* background-color: #f1f1f1; */
  padding: 20px;
  text-align: center;
  border: 2px dashed #962d22;
  margin-top: 20px;
  border-radius: 8px;
}

.price-box > h2 {
  margin-top: 0;
}

.price-box .promotion-price {
  font-size: 40px;
}

.depoimentos {
  /* background-color: #fafafa; */
  margin: 30px 20px 0 20px;
}

.title-depoimentos {
  margin-top: 60px !important;
}

.depoimentos > p {
  margin: 14px 0;
  padding: 4px 0 4px 16px;
  border-left: 4px solid #962d22;
}

.faq {
  /* background-color: #f1f1f1; */
  padding: 30px 20px;
  margin-top: 0px;
}

footer {
  text-align: center;
  background-color: #0a2b46;
  color: white;
  padding: 20px;
  margin-top: 60px;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  .cta a {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

.modal {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
}

.modal-content {
  background-color: #f5ebdb;
  margin: 10% 10px;
  padding: 30px;
  border: 1px solid #ccc;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  text-align: center;
  height: fit-content;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: "Roboto", sans-serif;
}

.modal-content button {
  background-color: #962d22;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
}

.modal-content button:hover {
  background-color: #c72d3e;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.section {
  max-width: 800px;
  margin: 50px auto 4px auto;
  padding: 0 20px;
}

.highlight {
  border-left: 4px solid #962d22;
  color: #0a2b46;
  padding: 15px;
  /* margin: 40px 0 0px 0; */
  font-weight: 600;
  border-radius: 0 5px 5px 0;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.ebook-capa {
  width: 100%;
  display: block;
  max-width: 720px;
  margin: 0 auto;
}

.scroll-down-indicator {
  text-align: center;
  margin-top: 4px;
}

.icon-chevron {
  animation: bounceFade 2s infinite;
}

@keyframes bounceFade {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}

.urgencia-texto {
  font-weight: bold;
  color: #b85c00;
  margin-bottom: 10px;
  font-size: 18px;
}

.emoji-pulso {
  display: inline-block;
  animation: pulse 1.2s infinite ease-in-out;
}

.contador-pulso {
  font-size: 26px;
  color: #d9534f;
  font-weight: bold;
  animation: pulse-text 1.5s infinite ease-in-out;
  margin-top: 20px;
}

.pulse-text {
  animation: pulse-text 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes pulse-text {
  0%, 100% {
    text-shadow: 0 0 5px #ff5733;
  }
  50% {
    text-shadow: 0 0 15px #ff5733;
  }
}
