@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

:root {
  --cor-principal: #a9f62a;
  --cor-secundaria: #6aaf1c;
  --cor-dourado: #4a351b;
  --cor-dourado2: #ffcf7f;
  --cor-background: #000;
  --cor-suporte: linear-gradient(180deg, #ffcf7f 0%, #a8743b 100%);
  --cor-botao: linear-gradient(
    167deg,
    var(--cor-principal) 0%,
    var(--cor-secundaria) 100%
  );
  --titulo: "Playfair Display", serif;
  --texto:  "Lato", sans-serif;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-weight: 800;
  background-color: var(--cor-background);
  color: white;
  height: 100vh;
}

main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(42px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 20px;
  font-family: var(--titulo);
}

.logo {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  pointer-events: none;
  margin: 10px;
}

.hamburger {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1300;
}
.hamburger span {
  height: 4px;
  background-color: white;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100%;
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
  padding: 90px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
}
.offcanvas.open {
  left: 0;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin:30px 0 0 0 ;
}
.menu-links li {
  margin: 20px 0;
}
.menu-links a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition: 0.3s;
  font-weight: 400;
}
.menu-links a:hover {
  color: var(--cor-dourado2);
}

.social-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.social-footer a {
  color: white;
  font-size: 1.5rem;
  transition: 0.3s;
}
.social-footer a:hover {
  color: var(--cor-dourado2);
}

.topicos, .principal, .video, .praVc, .depoimento, .compra {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 960px;
  /* margin: 75px auto auto auto; */
  padding: 60px 20px;
  background-color: rgba(10, 10, 10, 0.6);
  margin-bottom: 40px;
  border-radius: 16px;
  /* box-shadow: 0 0 25px var(--cor-dourado); */
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px); /* Suporte Safari */
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--texto);
}

#glow-circle {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 207, 127, 0.35) 0%, transparent 70%);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--cor-background);
  border-radius: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.logoCompra2 {
  height: 250px;
  width: auto;
}

.principal{
  margin-top: 130px;
}

.cont_principal {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.4;
  font-weight: bold;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 25px;
}

.txt_dif {
  text-align: center;
  color: var(--cor-principal);
  text-transform: uppercase;
}

.separator {
  width: 45%;
  height: 1px;
  margin: 0 255px;
}

.txt_intro {
  font-size: 2rem;
  font-weight: 550;
  color: #ffffff;
  margin: 15px auto 0;
  text-align: center;
  width: 55rem;
  font-family: var(--texto);
}

.btn_compra {
  color: #000;
  font-size: 1.5rem;
  background-image: var(--cor-botao);
  padding: 10px;
  border-radius: 12px;
  transition: 0.2s ease-in;
  width: 260px;
  text-align: center;
}

.btn_compra:hover {
  transition: 0.2s ease-out;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--cor-principal);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* proporção 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.botao2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  font-weight: bold;
  margin-top: 25px;
}

.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 25px;
}

#testimonial-container {
  width: 90%;
  max-width: 500px;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.testimonial-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 8px 16px;
  border: none;
  background-image: var(--cor-suporte);
  color: #000;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.5rem;
  transition: 0.2s ease-in;
  }
.btn:hover {
  transition: 0.2s ease-out;
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--cor-dourado);
}

.txt_intro2 {
  font-size: 3rem;
  font-weight: 550;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
  font-family: var(--titulo);
}

.features-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 25px;
  font-size: 1.5rem;
  font-weight: 400;
  i{
    color: var(--cor-dourado2);
    margin-right: 10px;
    width: 24px;
  }
}

.highlight {
  text-align: left;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  padding:  0 25px 0 20px;
}

.box2 {
  align-items: center;
  flex-wrap: wrap;
  border-radius: 8px;
}

.txt_compra {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  padding: 15px;
}

.asterisco{
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  padding: 15px;
}

.valor {
  font-size: 65px;
  color: var(--cor-dourado2);
  -webkit-text-stroke: 3.5px var(--cor-dourado);
  text-shadow: 0 0 7px #000, 0 0 10px var(--cor-dourado2),
    0 0 21px var(--cor-dourado2), 0 0 42px var(--cor-dourado2),
    0 0 151px var(--cor-dourado2);
  animation: pulse 1.3s infinite;
  -webkit-animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.1);
    opacity: 0.7;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.suporte {
  display: flex;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
  background-image: var(--cor-suporte);
  transition: 0.2s ease-in;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  width: 260px;
}

.suporte:hover {
  color: #fff;
  transition: 0.2s ease-out;
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--cor-dourado);}


.val-compra {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0 0 0;
  width: auto;
  flex-direction: column;
}

footer {
  font-family: "roboto", sans-serif;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 1rem;
  height: auto;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  a {
    color: var(--cor-dourado2);
  }
  p {
    margin-top: 10px;
  }

  .logo_footer{
    font-weight: 500;
    color: #fff;
    pointer-events: none;
    font-family: var(--titulo);
  }
}