/* 🚫 REMOVIDO @import do Google Fonts (agora carrega no head) */

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none;
}

.esconder {
  display: none;
}

.vsl h2 {
  font-weight: 700;
  color: #000000;
  font-size: 32px;
}

.red {
  color: red;
}

.vsl h3 {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
}

.vsl p {
  font-size: 18px;
  font-weight: 400;
  color: #2A2A2A;
}

.divider {
  background-color: #2A2A2A;
  height: 1px;
  width: 100%;
  margin-top: 40px;
}

.midia {
  background-color: #DDDDDD;
}

.midia h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1B1B1B;
  text-align: center;
}

.referencias h3 {
  font-size: 28px;
  font-weight: 600;
  color: #1B1B1B;
  text-align: center;
}

.referencias p {
  color: #7A7A7A;
  font-size: 16px;
  font-weight: 400;
}

.referencias-texto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

footer {
  background-color: #000;
}

footer p {
  text-align: center;
  font-weight: 400;
  color: #FFFFFF;
  font-size: 16px;
}

.barra {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.barra h4 {
  color: #BD1212;
  font-size: 21px;
  font-weight: 400;
}

.custom-progress {
  display: flex;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
}

.progress-label {
  font-size: 16px;
  background: #b6000f;
  color: #fff;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0px 25px 0px 11px;
}

.progress-track {
  flex: 1;
  background: #eee;
  position: relative;
}

.progress-fill {
  font-size: 16px;
  height: 100%;
  width: 0%;
  background: #b6000f;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  color: white;
  font-weight: 600;
  transition: width 2s ease;
}

.buy {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100%;
  background-color: #03BB37;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  border-radius: 15px;
  padding: 25px;
  animation: pisca 1.5s infinite;
  box-shadow: 0px 0px 20px -5px #03BB37;
  margin: 40px auto;
}

@keyframes pisca {
  70% {
    box-shadow: 0 0 0 30px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

@media(max-width:821px) {
  .vsl h2 {
    font-size: 16px;
    line-height: 22px;
  }

  .buy {
    width: 75%;
    font-size: 18px;
    margin: 25px auto;
  }

  .referencias-texto {
    display: block;
  }

  footer p {
    font-size: 12px;
  }
}