:root {
  --dourado: #c9a144;
  --branco: #ffffff;
  --degrade: linear-gradient(to right, #fff7e6, #fbe8c2);
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--branco);
  color: #333;
}

header {
  background: var(--degrade);
  padding: 40px 20px;
  text-align: center;
  color: var(--dourado);
}

header h1 {
  font-size: 2.5em;
  margin: 0;
}

header p {
  font-size: 1.2em;
  color: #555;
}

section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.about {
  background: var(--degrade);
  border-radius: 12px;
  padding: 30px;
}

.about h2 {
  color: var(--dourado);
}

.carousel {
  position: relative;
  overflow: hidden;
  height: 400px;
  margin-top: 30px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel img {
  min-width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.image-section img {
  width: calc(33.333% - 20px);
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

footer {
  background: var(--dourado);
  color: var(--branco);
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.title-center {
  color: var(--dourado);
  text-align: center;
}

@media (max-width: 768px) {
  .image-section img {
    width: 100%;
  }

  .carousel {
    height: 300px;
  }

  .carousel img {
    height: 300px;
  }
}
.hero {
  background: var(--degrade);
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h3 {
  color: var(--dourado);
  font-weight: 700;
  font-size: 2rem; /* Aumente o valor conforme desejar */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.hero-text h1 {
  font-size: 2.4rem;
  color: #222;
  font-family: 'Georgia', serif;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.hero-text .destaque {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--dourado);
  margin-top: 20px;
  font-style: italic;
  background: #fff5e6;
  padding: 10px 15px;
  display: inline-block;
  border-left: 5px solid var(--dourado);
  border-radius: 6px;
}

.hero-img {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text .destaque {
    font-size: 1.2rem;
  }
}
.btn-cta {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 26px;
  background-color: var(--dourado);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.05rem;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-cta:hover {
  background-color: #b78e34;
  transform: scale(1.03);
}
.modulo-teorico {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.modulo-titulo,
.modulo-subtitulo {
  color: var(--dourado);
  font-family: 'Georgia', serif;
  margin-bottom: 10px;
}

.modulo-subtitulo {
  color: #444;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.modulo-lista {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  list-style: none;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.modulo-lista li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}

.modulo-lista li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--dourado);
  font-weight: bold;
}

.modulo-lista ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 20px;
}

.modulo-lista ul li::before {
  content: "";
  position: static;
  color: var(--dourado);
  margin-right: 5px;
}

.resultados {
  padding: 60px 20px;
  background: var(--degrade);
  text-align: center;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  height: 400px;
  margin: 30px auto 0;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel img {
  min-width: 100%;
  height: 400px;
  object-fit: cover;
}
.modulo-pratico {
  background: #fff;
  padding: 60px 20px;
}

.modulo-desc {
  text-align: center;
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
}

.modulo-pratico .btn-cta {
  display: block;
  max-width: 400px;
  margin: 40px auto 0;
  text-align: center;
}
.beneficios {
  background: var(--degrade);
  padding: 60px 20px;
}

.beneficios-lista {
  max-width: 900px;
  margin: auto;
  padding: 0;
  list-style: none;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

.beneficios-lista li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 25px;
}

.beneficios-lista li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dourado);
  font-weight: bold;
  font-size: 1rem;
}

.beneficios .btn-cta {
  display: block;
  max-width: 400px;
  margin: 40px auto 0;
  text-align: center;
}
.garantia-banner {
  width: 100%;
  padding: 0;
  margin: 0;
}

.garantia-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.bonus {
  background: #fff;
  padding: 60px 20px;
}

.bonus-lista {
  max-width: 900px;
  margin: auto;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  padding-left: 20px;
}

.bonus-lista li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}

.bonus-lista li::before {
  content: "🎁";
  position: absolute;
  left: 0;
  color: var(--dourado);
}

.bonus-sublista {
  list-style-type: disc;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 40px;
  color: #444;
}

.sobre-mim {
  background: var(--degrade);
  padding: 60px 20px;
}

.sobre-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.sobre-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sobre-texto {
  flex: 1;
  min-width: 280px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .sobre-content {
    flex-direction: column;
    text-align: center;
  }

  .sobre-texto {
    padding: 0 10px;
  }
}
.preco {
  font-size: 48px;
  font-weight: 900;
  color: #e0b043;
  margin: 10px 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
.oferta-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.oferta-container {
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid #d4af37;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.oferta-titulo {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.preco-antigo {
  font-size: 1.2rem;
  color: #bbb;
  text-decoration: line-through;
  margin-bottom: 5px;
}

.preco-parcelado {
  font-size: 1.3rem;
  color: #fff;
  margin: 10px 0 5px;
}

.preco-destaque {
  font-size: 2.2rem;
  font-weight: bold;
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  background: linear-gradient(to right, #fff5c3, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: brilho 1.5s infinite alternate;
}

@keyframes brilho {
  from {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  }
  to {
    text-shadow: 0 0 15px rgba(255, 255, 200, 0.8);
  }
}

.ou {
  margin: 10px 0;
  color: #ccc;
  font-style: italic;
}

.preco-vista {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
}

.mensagem-bonus {
  font-size: 1rem;
  margin-top: 15px;
  color: #d4af37;
  font-weight: bold;
}

.botao-oferta {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: bold;
  color: #1a1a1a;
  background: #d4af37;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.botao-oferta:hover {
  background: #fff;
  transform: scale(1.05);
}
.carrossel-continuo {
  background: linear-gradient(to right, #fffde7, #fff9c4);
  overflow: hidden;
  padding: 30px 0;
}

.carrossel-track {
  display: flex;
  width: fit-content;
  animation: slide 40s linear infinite;
  gap: 20px;
}

.carrossel-track img {
  height: 220px;
  width: auto;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .carrossel-track img {
    height: 160px;
  }
}
.garantia {
  background-color: #fff8cc;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.garantia-content img {
  max-width: 100%;
  width: 1000px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .garantia-content img {
    width: 100%;
    border-radius: 0;
  }
}
.sem-marcador {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.sem-marcador::before {
  content: none;
}

.dourado {
  color: var(--dourado);
  font-weight: bold;
  font-size: 1.2rem;
}

.informativo-bloco {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.informativo-bloco p {
  margin-bottom: 10px;
}

.titulo-protocolo {
  display: block;
  color: var(--dourado);
  font-size: 1.8rem; /* Aumente esse valor se quiser mais destaque */
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
}
.preto {
  color: #000;
  font-weight: bold;
}
