html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
pre,
blockquote,
figure,
figcaption,
hr,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

input,
textarea,
select,
button {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

input[type="text"],
textarea {
  width: 100%;
}

input,
textarea,
button {
  border: 1px solid gray;
}

button {
  padding: 0.75em 1em;
  line-height: inherit;
  border-radius: 0;
  background-color: transparent;
}

button * {
  pointer-events: none;
}

img,
iframe,
video,
object,
embed {
  display: block;
  max-width: 100%;
}

svg {
  max-width: 100%;
}

table {
  table-layout: fixed;
  width: 100%;
}

[hidden] {
  opacity: 0;
  visibility: hidden;
}

noscript {
  display: block;
  margin-bottom: 1em;
  margin-top: 1em;
}

[tabindex="-1"] {
  outline: none !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

* {
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  margin: 0px;
  padding: 0px;
  display: block;
}

table {
  border-spacing: 0px;
}

body {
  background: #131111;
  color: #f1f6f6;
  font-size: 16px;
  font-family: "niveau-grotesk", sans-serif;
}

.container {
  padding: 120px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  font-size: 3.55rem;
  font-weight: 500;
  line-height: 3.8rem;
}

h3 {
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 400;
}

h2 {
  font-family: "korolev", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.95;
}

h4 {
  font-family: "korolev", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}

p {
  font-size: 1.125rem;
  font-weight: 300;
  opacity: 0.95;
  line-height: 1.5rem;
}

a {
  font-size: 1.5rem;
  font-weight: 300;
  display: block;
}

.btn-main {
  display: flex;
}

.btn {
  display: flex;
  justify-content: center;
  margin-top: 0.7rem;
}

.btn a:after,
.btn-main a:after {
  content: "";
  padding: 0px 30px 0px 0px;
  background: url("/src/svg/arrow.svg") no-repeat center center;
}

.underline {
  background: #01a5fe;
  border-radius: 30px;
  padding: 15px 25px;
  transition: 0.5s;
}

.underline:hover {
  background: #0144fe;
}

@media only screen and (min-width: 650px) and (max-width: 920px) {
  .container {
    padding: 100px 20px;
  }
}

@media only screen and (min-width: 450px) and (max-width: 649px) {
  .container {
    padding: 80px 20px;
  }

  h1 {
    font-size: 3.55rem;
    font-weight: 500;
    line-height: 3.5rem;
  }
}

@media only screen and (min-width: 301px) and (max-width: 449px) {
  h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 2.75rem;
  }
}

@media only screen and (max-width: 300px) {
  h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 2.75rem;
  }
}

.main {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}

.bg-main {
  background: linear-gradient(#24242494, #24242494),
  url("/src/img/jessica.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.main-content {
  display: grid;
  justify-content: center;
}

.main-content h1 {
  margin: 20px 0px 15px 0px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  max-width: 400px;
}

.main-content p {
  margin-bottom: 40px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  max-width: 400px;
}

.main-content h2 {
  color: #01a5fe;
  font-family: "korolev-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  /* background-color: #131111;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 24px; */
}

.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 200000;

}

@keyframes move {
  25% {
    transform: translateX(-10px);
  }

  50% {
    transform: translateX(0px);
  }

  75% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0px);
  }
}

@media only screen and (min-width: 650px) and (max-width: 920px) {
  .main {
    grid-template-columns: 1fr;
    justify-items: center;
    grid-gap: 60px;
  }

  .bg-main {
    background-position: center;
  }
}

@media only screen and (max-width: 649px) {
  .main {
    grid-template-columns: 1fr;
    justify-items: center;
    grid-gap: 60px;
  }

  .bg-main {
    background-position: center;
    background-attachment: inherit;
  }
}

.list-emotional {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #01a5fe;
  border-radius: 80px;
  padding: 50px;
  grid-gap: 20px;


}

.item-emotional {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
  align-items: center;
}

.item-emotional h2,
.item-emotional p {
  color: #ffffff;
  margin-top: 0.7rem;
}

@media only screen and (min-width: 650px) and (max-width: 920px) {
  .list-emotional {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 401px) and (max-width: 649px) {
  .list-emotional {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
    justify-items: center;
  }
}

@media only screen and (min-width: 0px) and (max-width: 400px) {
  .list-emotional {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
    justify-items: center;
  }

  .item-emotional {
    grid-template-columns: 1fr;
  }
}

.bg-vantagens {
  background: url("/src/img/vantagens.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.container-vantagens h3 {
  margin-bottom: 60px;
  position: relative;
}

.container-vantagens h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  clip-path: polygon(0% 0%, 0 36%, 1% 36%, 1% 1%, 17% 1%, 17% 0);
  width: 300px;
  height: 300px;
  background: #01a5fe;
  left: -60px;
  top: 35px;
}

.vantagens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.vantagens-list {
  display: grid;
  align-items: center;
}

.vantagens-list ul li {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-gap: 10px;
}

.vantagens-list ul li h2 {
  text-align: right;
  color: #01a5fe;
  font-family: "korolev-condensed", sans-serif;
  font-weight: 900;
}

.vantagens-list ul li + li {
  margin-top: 30px;
}

.vantagens-img {
  display: grid;
  justify-items: end;
  margin-right: 40px;
}

.vantagens-img img {
  width: 300px;
  border-radius: 20px;
  box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.1);
}

.history {
  padding: 80px 0px;
}

.history p {
  font-size: 1.25rem;
  line-height: 1.5em;
}

.history-box {
  border-left: 3px solid #01a5fe;
  padding-left: 20px;
}

@media only screen and (min-width: 650px) and (max-width: 920px) {
  .vantagens {
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }

  .container-vantagens h3 {
    margin-left: 150px;
  }

  .vantagens-img {
    justify-items: center;
    margin-right: 0px;
  }

  .vantagens-list {
    max-width: 450px;
    margin: 0 auto;
  }

  .history p {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 459px) and (max-width: 649px) {
  .vantagens {
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }

  .container-vantagens h3 {
    margin-left: 70px;
  }

  .vantagens-img {
    justify-items: center;
    margin-right: 0px;
  }

  .vantagens-list {
    max-width: 350px;
    margin: 0 auto;
  }

  .bg-vantagens {
    background-attachment: inherit;
  }
}

@media only screen and (max-width: 449px) {
  .vantagens {
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }

  .container-vantagens h3 {
    margin-left: 70px;
  }

  .vantagens-img {
    justify-items: center;
    margin-right: 0px;
  }

  .vantagens-list {
    max-width: 350px;
    margin: 0 auto;
  }

  .container-vantagens h3::before {
    width: 250px;
    height: 250px;
  }

  .vantagens-list ul li {
    grid-template-columns: auto;
    grid-gap: 0px;
  }

  .vantagens-list ul li h2 {
    text-align: left;
  }

  .history p {
    font-size: 1.25rem;
  }

  .bg-vantagens {
    background-attachment: inherit;
  }
}

.bg-sobre {
  background: url("/src/img/peso.jpg") no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
}

.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  grid-gap: 20px;
  grid-template-areas: "titlesobre imgsobre contentsobre ";
}

.sobre h3 {
  position: relative;
  grid-area: titlesobre;
}

.sobre h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  clip-path: polygon(0 41%, 1% 41%, 1% 0, 0 0);
  width: 300px;
  height: 300px;
  background: #01a5fe;
  left: -10px;
  top: 35px;
}

.img-sobre {
  grid-area: imgsobre;
}

.img-sobre img {
  border-radius: 20px;
  box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.1);
}

.content-sobre {
  display: grid;
  align-content: center;
  grid-area: contentsobre;
}

.content-sobre h2 {
  margin-bottom: 20px;
}

.content-sobre h2:after {
  content: "";
  width: 100px;
  height: 3px;
  background: #01a5fe;
  display: block;
  margin-top: 10px;
}

.content-sobre p {
  font-size: 1.25rem;
  height: max-content;
  line-height: 2rem;
}

@media only screen and (min-width: 650px) and (max-width: 920px) {
  .sobre {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    grid-template-rows: 1fr auto;
    grid-gap: 40px;
    grid-template-areas: "titlesobre imgsobre" "titlesobre contentsobre";
  }

  .content-sobre {
    max-width: 350px;
  }
}

@media only screen and (min-width: 301px) and (max-width: 649px) {
  .sobre {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 150px auto auto;
    grid-gap: 40px;
    grid-template-areas: "titlesobre " "imgsobre" "contentsobre";
  }

  .img-sobre {
    justify-self: center;
  }

  .content-sobre {
    max-width: 350px;
    justify-self: center;
  }

  .content-sobre p {
    line-height: 2rem;
  }
}

@media only screen and (max-width: 300px) {
  .sobre {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 150px auto auto;
    grid-gap: 40px;
    grid-template-areas: "titlesobre " "imgsobre" "contentsobre";
  }

  .img-sobre {
    justify-self: center;
  }

  .content-sobre {
    max-width: 350px;
    justify-self: center;
  }

  .content-sobre p {
    line-height: 2rem;
  }

  .sobre h3::before {
    content: "";
    position: absolute;
    display: inline-block;
    clip-path: polygon(0 41%, 1% 41%, 1% 0, 0 0);
    width: 250px;
    height: 300px;
  }
}

.container-planos h3 {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.container-planos h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  clip-path: polygon(100% 1%, 100% 0, 54% 0, 54% 1%);
  width: 200px;
  height: 300px;
  background: #01a5fe;
  left: 15vh;
  top: 35px;
}

.items {
display: flex;
flex-wrap: wrap;
gap: 10px;
width: 100%;
justify-content: center;
}

.item-plano {
  background: #3a3a3a;
  border-radius: 50px;
  padding: 30px 15px 20px 15px;
  display: grid;
  height: max-content;
}

/* .item-plano:last-child {
  width: 100%;
  grid-area: f;
} */

.item-plano h2 {
  text-align: center;
  margin-bottom: 20px;
}

.item-plano a {
  text-align: center;
}

.list-plano li {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5rem;
  opacity: 0.7;
  padding-top: 10px;
}

.list-plano li:before {
  display: inline-block;
  content: "";
  border-radius: 50px;
  width: 8px;
  height: 8px;
  background: #808080;
  margin-right: 5px;
  transition: 0.5s;
}

.item-plano:hover li:before {
  background: #01a5fe;
}

.item-plano:hover .list-plano li {
  opacity: 1;
}

.list-plano li:last-child {
  margin-bottom: 20px;
}

.list-plano li + li {
  font-weight: 300;
  border-top: 1px solid #808080;
}

.price-down {
  text-align: center;
  display: block;
  font-size: 1.125rem;
  font-weight: 300;
  opacity: 0.7;
}

.parcelamento {
  text-align: center;
  display: block;
  font-size: 1.125rem;
  font-weight: 300;
  opacity: 0.7;

}

.price {
  font-size: 2.2rem;
  text-align: center;
  line-height: 2.25rem;
  display: block;
}

.valor-final {
  text-align: center;
  display: block;
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.7;
}

.recommended {
  font-family: "korolev-condensed", sans-serif;
  font-weight: 600;
  font-size: 14px;
  font-style: normal;
  color: #ffffff;
  background: #0134fe;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%,50%);
  padding: 2px 6px;
  border-radius: 6px;
}

.items li:nth-child(3) {
  position: relative;
}

@media only screen and (min-width: 650px) and (max-width: 920px) {
  .items {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
    grid-gap: 40px;
  }

  .container-planos h3::after {
    left: 0vh;
  }
}

@media only screen and (min-width: 450px) and (max-width: 649px) {
  .items {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
    grid-gap: 40px;
  }

  .container-planos h3::after {
    left: 2vh;
    max-width: 120px;
  }

  .item-plano li:before {
    background: #01a5fe;
  }

  .item-plano .list-plano li {
    opacity: 1;
  }
}

@media only screen and (min-width: 301px) and (max-width: 449px) {
  .items {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
    grid-gap: 40px;
  }

  .container-planos h3::after {
    left: -7vh;
    max-width: 120px;
  }

  .item-plano li:before {
    background: #01a5fe;
  }

  .item-plano .list-plano li {
    opacity: 1;
  }
}

@media only screen and (max-width: 300px) {
  .items {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
    grid-gap: 40px;
  }

  .container-planos h3::after {
    display: none;
  }

  .item-plano li:before {
    background: #01a5fe;
  }

  .item-plano .list-plano li {
    opacity: 1;
  }
}

.bg-garantias {
  background: url("/src/img/banner-academia.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.container-garantias h3 {
  margin-bottom: 60px;
  text-align: right;
  position: relative;
}

.container-garantias h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  clip-path: polygon(0% 0%, 0 1%, 52% 1%, 52% 0);
  width: 300px;
  height: 300px;
  background: #01a5fe;
  right: 5vw;
  top: 35px;
}

.container-garantias h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  clip-path: polygon(100% 37%, 99% 37%, 99% 0, 100% 0);
  width: 300px;
  height: 300px;
  background: #01a5fe;
  right: -15px;
  top: 35px;
}

.garantias {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}

.garantia-item-1 {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
  align-self: center;
}

.garantia-item-2 {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
  align-self: center;
}

.garantia-content-1 {
  display: grid;
  align-content: center;
  grid-gap: 20px;
}

.garantia-content-2 {
  display: grid;
  align-items: center;
  grid-gap: 20px;
  align-content: space-between;
}

@media only screen and (min-width: 650px) and (max-width: 920px) {
  .garantias {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .container-garantias h3::before {
    right: 6vw;
  }
}

@media only screen and (min-width: 450px) and (max-width: 649px) {
  .garantias {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .container-garantias h3::before {
    right: 8vw;
  }

  .garantia-item-1,
  .garantia-item-2 {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .garantia-content-1 {
    grid-gap: 0px;
  }
}

@media only screen and (max-width: 449px) {
  .garantias {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .garantia-item-1,
  .garantia-item-2 {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .garantia-content-1 {
    grid-gap: 0px;
  }

  .container-garantias h2::before {
    display: none;
  }
}

.container-faq h3 {
  line-height: 3.25rem;
  margin-bottom: 40px;
  position: relative;
}

.container-faq h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  clip-path: polygon(45% 1%, 45% 0, 12% 0, 12% 1%);
  width: 350px;
  height: 300px;
  background: #01a5fe;
  left: 200px;
  top: 35px;
}

.container-faq h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  clip-path: polygon(100% 1%, 100% 0, 54% 0, 54% 1%);
  width: 400px;
  height: 300px;
  background: #01a5fe;
  left: 165px;
  top: 35px;
}

.faq {
  max-width: 800px;
  margin: 60px auto 0px auto;
}

.faq-question {
  display: flex;
  grid-gap: 20px;
  margin-bottom: 10px;
}

.faq-question + .faq-question {
  margin-top: 30px;
}

.faq-question h2 {
  color: #01a5fe;
}

.js-accordion dt {
  font-size: 1.25rem;
  font-weight: 300;
}

.js-accordion dd {
  font-size: 1.125rem;
  font-weight: 300;
  color: #b8b8b8;
}

@media only screen and (min-width: 650px) and (max-width: 920px) {
  .faq {
    max-width: 550px;
  }
}

@media only screen and (min-width: 450px) and (max-width: 649px) {
  .faq {
    max-width: 300px;
    margin: 0 auto;
  }

  .faq-question {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
  }

  .container-faq h3::after {
    display: none;
  }

  .container-faq h3::before {
    width: 200px;
  }
}

@media only screen and (max-width: 449px) {
  .faq {
    max-width: 300px;
    margin: 0 auto;
  }

  .faq-question {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
  }

  .container-faq h3::before,
  .container-faq h3::after {
    display: none;
  }
}

.contato-bg {
  background: url("/src/img/fim.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.container-contato h3 {
  text-align: center;
  position: relative;
}

.contato {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 200px;
  justify-content: center;
  justify-items: center;
}

.redes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  align-items: center;
  justify-items: center;
}

@media only screen and (max-width: 300px) {
  .redes {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .whats {
    margin-right: 60px;
  }
}

.footer {
  padding: 40px 10px;
  color: #f1f6f6;
  opacity: 0.9;
}

.footer p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.footer a {
  font-size: 1rem;
  font-family: "niveau-grotesk", sans-serif;
  margin-top: 20px;
  width: max-content;
  margin: 10px auto 0px auto;
}

.footer a:hover {
  color: #01a5fe;
}

.js-accordion dd {
  display: none;
}

.js-accordion dt {
  cursor: pointer;
}

.js-accordion dt::after {
  content: "⇩";
  margin-left: 10px;
  vertical-align: middle;
}

.js-accordion dt.ativo::after {
  content: "⇧";
  vertical-align: middle;
}

.js-accordion dd.ativo {
  display: block;
  animation: showAccordion 0.5s forwards;
  margin-left: 5px;
}

@keyframes showAccordion {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.privacidade h3 {
  margin: 40px 0px 20px 0px;
}

.privacidade p {
  margin: 0px 0px 20px 0px;
  opacity: 0.9;
}

.privacidade h2 {
  margin: 10px 0px 5px 0px;
}

.privacidade h4 {
  margin: 20px 0px 0px 20px;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 300;
}

.privacidade h4:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 2.5px;
  background: #01a5fe;
  margin: 5px;
}

.group-termos h4:last-child {
  margin-bottom: 20px;
}

.privacidade {
  position: relative;
}

.return {
  position: absolute;
  top: 100px;
  left: -40px;
  cursor: pointer;
}

@media only screen and (max-width: 1200px) {
  .return {
    position: absolute;
    top: 50px;
    left: 10px;
    cursor: pointer;
  }
}

.js .js-section-scroll {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
  transition: 1.8s;
}

.js .js-section-scroll.ativo {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
