* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-family: "eurostile", sans-serif;
  background-color: #101010;
  width: 100%;
  height: 100%;
  overflow: auto;
}

#desktop {
  display: flex;
}
@media (max-width: 600px) {
  #desktop {
    display: none;
  }
}

#mobile {
  display: none;
}
@media (max-width: 600px) {
  #mobile {
    display: flex;
  }
}

.btnDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btnDiv p {
  color: var(--Neutra-12, #EEE);
  text-align: center;
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-caption, 16px);
  font-weight: 500;
  line-height: 140%;
}
.btnDiv span {
  color: #FF3A3A;
  text-align: center;
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-overline, 14px);
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .btnDiv p {
    font-size: 14px;
  }
}

.myBtn {
  display: flex;
  padding: 1vw;
  justify-content: center;
  align-items: center;
  min-width: 23.5vw;
  border: unset;
  cursor: pointer;
  border-radius: 12px;
  border: 2px solid var(--shadow, #FFF);
  background: linear-gradient(180deg, #00DE6B 0%, #00B34D 100%);
  box-shadow: 14px 14px 0px 0px var(--shadow, #FFF), 12px 12px 0px 0px var(--shadow, #FFF), 10px 10px 0px 0px var(--shadow, #FFF), 8px 8px 0px 0px var(--shadow, #FFF), 6px 6px 0px 0px var(--shadow, #FFF), 4px 4px 0px 0px var(--shadow, #FFF), 2px 2px 0px 0px var(--shadow, #FFF);
  color: var(--shadow, #FFF);
  text-align: center;
  font-family: "eurostile", sans-serif;
  font-size: 1vw;
  font-weight: 900;
  line-height: 120%;
  letter-spacing: 0.27px;
  text-decoration: none;
  transition: 0.2s;
}
.myBtn:hover {
  filter: brightness(80%);
}
@media (max-width: 600px) {
  .myBtn {
    min-width: 330px;
    max-width: 330px;
    padding: 9px 50px;
    box-shadow: 10px 10px 0px 0px var(--shadow, #FFF), 12px 12px 0px 0px var(--shadow, #FFF), 10px 10px 0px 0px var(--shadow, #FFF), 8px 8px 0px 0px var(--shadow, #FFF), 6px 6px 0px 0px var(--shadow, #FFF), 4px 4px 0px 0px var(--shadow, #FFF), 2px 2px 0px 0px var(--shadow, #FFF);
    font-size: 18px;
  }
}

header {
  background: #FF2507;
  box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  gap: 20px;
  z-index: 3;
  overflow: hidden;
}
header .offDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: -15px;
}
header .offDiv > strong {
  color: #000;
  text-align: center;
  font-family: "eurostile-condensed", sans-serif;
  font-size: 113px;
  font-weight: 700;
  line-height: 80%;
  padding-bottom: 15px;
}
header .offDiv > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
header .offDiv > div p {
  color: #000;
  font-family: "eurostile-condensed", sans-serif;
  font-size: 45px;
  font-weight: 900;
  line-height: 80%;
}
header .offDiv > div span {
  color: #000;
  text-align: center;
  font-family: "eurostile-condensed", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 80%;
  padding-bottom: 4px;
}
header .last {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 5px 0 0px;
}
header .last strong {
  color: #000;
  text-align: center;
  font-family: "eurostile-condensed", sans-serif;
  font-size: 37px;
  font-weight: 700;
  line-height: 100%;
}
header .btn {
  display: flex;
  max-width: 450px;
  padding: 12px 12px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  border: 2px solid var(--Neutra-12, #202020);
  background: linear-gradient(180deg, #00DE6B 0%, #00B34D 100%);
  box-shadow: 8px 8px 0px 0px var(--Neutra-12, #202020), 6px 6px 0px 0px var(--Neutra-12, #202020), 4px 4px 0px 0px var(--Neutra-12, #202020), 2px 2px 0px 0px var(--Neutra-12, #202020);
  color: var(--Neutra-12, #202020);
  text-align: center;
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-overline, 14px);
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
  transition: 0.2s;
}
header .btn:hover {
  filter: brightness(80%);
}
@media (max-width: 600px) {
  header {
    gap: 16px;
  }
  header .offDiv {
    margin-bottom: -5px;
  }
  header .offDiv > strong {
    font-size: 65px;
    line-height: 85%;
  }
  header .offDiv > div p {
    font-size: 30px;
    line-height: 65%;
  }
  header .offDiv > div span {
    font-size: 30px;
    line-height: 95%;
  }
  header .last {
    padding: unset;
    border: unset;
  }
  header .last strong {
    font-size: 18px;
    max-width: 55px;
  }
  header .last strong span {
    font-size: 22px;
  }
  header .btn {
    padding: 6px 6px 3px;
    font-size: 9.5px;
    border-radius: 5.325px;
    border: 1px solid var(--Neutra-12, #202020);
    background: linear-gradient(180deg, #00DE6B 0%, #00B34D 100%);
    box-shadow: 6.086px 6.086px 0px 0px var(--Neutra-12, #202020), 4.564px 4.564px 0px 0px var(--Neutra-12, #202020), 3.043px 3.043px 0px 0px var(--Neutra-12, #202020), 1.521px 1.521px 0px 0px var(--Neutra-12, #202020);
  }
}

.hero {
  background: url(assets/herobg.webp) no-repeat;
  background-size: contain;
  background-position: top right;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 20px;
}
.hero .heroImg {
  width: 26vw;
}
.hero .mainDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3.5vh;
}
.hero .mainDiv .logo {
  width: 16vw;
}
.hero .mainDiv h1 {
  color: var(--Neutra-12, #EEE);
  font-family: "eurostile-condensed", sans-serif;
  font-size: 2.5vw;
  font-weight: 700;
  line-height: 100%;
  max-width: 30vw;
}
.hero .mainDiv h1 span {
  color: #FF158A;
}
.hero .mainDiv .desc {
  color: var(--Neutra-12, #EEE);
  font-family: "eurostile", sans-serif;
  font-size: 1vw;
  font-weight: 500;
  line-height: 140%;
  max-width: 28vw;
}
@media (max-width: 600px) {
  .hero {
    background: url(assets/herobgmob.webp) no-repeat;
    background-size: cover;
    background-position: top;
    flex-direction: column;
    min-height: unset;
    gap: unset;
    padding: 240px 16px 24px;
  }
  .hero .mainDiv {
    align-items: center;
    gap: 12px;
  }
  .hero .mainDiv .logo {
    width: 175px;
  }
  .hero .mainDiv h1 {
    font-size: 30px;
    max-width: 342px;
    text-align: center;
  }
  .hero .mainDiv .desc {
    font-size: 16px;
    max-width: 370px;
    text-align: center;
  }
}

.depo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
}
.depo .titleDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.depo .titleDiv strong {
  color: var(--Neutra-12, #EEE);
  text-align: center;
  font-family: "eurostile-condensed", sans-serif;
  font-size: var(--Tamanhos-h4, 24px);
  font-weight: 700;
  line-height: 120%;
}
.depo .titleDiv .bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.depo .titleDiv .bubble span {
  display: flex;
  padding: 16px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px 20px 20px 0px;
  background: #FFF;
}
.depo .boxFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.depo .boxFlex .swiper .swiper-wrapper .swiper-slide img {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.depo .boxFlex .swiper-button-next, .depo .boxFlex .swiper-button-prev {
  --swiper-navigation-size: 25px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 5px;
  --swiper-navigation-color: #000000;
  background: rgba(255, 21, 138, 0.308);
  padding: 33px 30px;
  transition: 0.2s;
}
.depo .boxFlex .swiper-button-next:hover, .depo .boxFlex .swiper-button-prev:hover {
  filter: brightness(80%);
}
.depo .boxFlex .swiper-button-prev {
  top: 50%;
  left: 0px;
  right: auto;
  border-radius: 0px 40px 40px 0px;
}
.depo .boxFlex .swiper-button-next {
  top: 50%;
  right: 0px;
  left: auto;
  border-radius: 40px 0 0 40px;
}
@media (max-width: 1746px) {
  .depo .swiper .swiper-wrapper .swiper-slide img {
    width: 20vw;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 600px) {
  .depo {
    padding: 32px 20px;
    gap: 32px;
  }
  .depo .titleDiv strong {
    font-size: 26px;
    max-width: 342px;
  }
  .depo .boxFlex {
    max-width: 100%;
  }
  .depo .boxFlex .swiper .swiper-wrapper .swiper-slide {
    display: flex;
    flex-direction: column;
  }
  .depo .boxFlex .swiper .swiper-wrapper .swiper-slide img {
    width: unset;
  }
  .depo .boxFlex .swiper-button-prev {
    left: 0px;
    right: auto;
  }
  .depo .boxFlex .swiper-button-next {
    right: 0px;
    left: auto;
  }
  .depo .boxFlex .box {
    min-width: 304px;
    max-width: 304px;
    gap: 24px;
    padding: 24px;
  }
  .depo .boxFlex .box > p {
    font-size: 18px;
  }
  .depo .boxFlex .box .bubble {
    height: 256px;
  }
}

.tape {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 75px 0;
}
.tape .tape1 {
  position: absolute;
  width: 100%;
  z-index: 2;
}
.tape .tape2 {
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media (max-width: 600px) {
  .tape {
    padding: 44px 0;
  }
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 0 80px;
}
.content .titleDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.content .titleDiv strong {
  color: var(--Neutra-12, #EEE);
  text-align: center;
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-h2, 44px);
  font-weight: 700;
  line-height: 120%;
  max-width: 690px;
}
.content .titleDiv strong span {
  color: #FF158A;
}
.content .contentFlex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.content .contentFlex .contentDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  border-radius: var(--border_radius-border-radius_md, 16px);
  border: 1px solid var(--Neutra-5, #313131);
  background: linear-gradient(180deg, #222 0%, rgba(0, 0, 0, 0) 20.23%);
}
.content .contentFlex .contentDiv .textDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.content .contentFlex .contentDiv .textDiv strong {
  color: var(--Neutra-12, #EEE);
  font-family: "eurostile-condensed", sans-serif;
  font-size: var(--Tamanhos-h3, 38px);
  font-weight: 700;
  line-height: 120%;
  max-width: 665px;
}
.content .contentFlex .contentDiv .textDiv .disc {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px 8px;
  background-color: red;
  border-radius: 8px;
}
.content .contentFlex .contentDiv .textDiv .disc span {
  color: #ffffff;
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-body, 18px);
  font-weight: 600;
  line-height: 100%;
  max-width: 390px;
}
.content .contentFlex .contentDiv .textDiv > span {
  color: #FF158A;
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
}
.content .contentFlex .contentDiv .textDiv p {
  color: var(--Neutra-12, #EEE);
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
  max-width: 665px;
}
.content .contentFlex .contentDiv .textDiv .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}
.content .contentFlex .contentDiv .textDiv .list > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.content .contentFlex .contentDiv .textDiv .list > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .contentFlex .contentDiv .textDiv .list > div p {
  font-weight: 700;
}
@media (max-width: 600px) {
  .content {
    padding: 16px 24px 24px;
    gap: 32px;
  }
  .content .titleDiv {
    gap: 16px;
  }
  .content .titleDiv strong {
    font-size: 32px;
    max-width: 342px;
  }
  .content .titleDiv > img {
    width: 342px;
  }
  .content .contentFlex {
    gap: 24px;
  }
  .content .contentFlex .contentDiv {
    flex-direction: column;
    gap: 32px;
    padding: unset;
    border: unset;
    background: unset;
  }
  .content .contentFlex .contentDiv img {
    width: 342px;
  }
  .content .contentFlex .contentDiv .textDiv strong {
    font-size: 28px;
    max-width: 342px;
  }
  .content .contentFlex .contentDiv .textDiv .disc span {
    font-size: 16px;
    max-width: 235px;
  }
  .content .contentFlex .contentDiv .textDiv > span {
    font-size: 17px;
    max-width: 342px;
  }
  .content .contentFlex .contentDiv .textDiv p {
    font-size: 17px;
    max-width: 342px;
  }
}

.offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  position: relative;
}
.offer .spot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.offer .offerDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 14px;
  border-top: 6px solid #FF158A;
  background: var(--Neutra-1, #FCFCFC);
  position: relative;
  padding: 60px 40px 40px;
}
.offer .offerDiv .titleDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.offer .offerDiv .titleDiv span {
  color: var(--Neutra-12, #202020);
  text-align: center;
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-h3, 38px);
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.offer .offerDiv .titleDiv strong {
  color: var(--Neutra-12, #202020);
  text-align: center;
  font-family: "eurostile-condensed", sans-serif;
  font-size: 70.304px;
  font-weight: 700;
  line-height: 91%;
  text-transform: uppercase;
  max-width: 466px;
}
.offer .offerDiv .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
}
.offer .offerDiv .list > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-top: 1px solid var(--Neutra-5, #E0E0E0);
  padding: 8px 0;
}
.offer .offerDiv .list > div:last-child {
  border-bottom: 1px solid var(--Neutra-5, #E0E0E0);
}
.offer .offerDiv .list > div > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.offer .offerDiv .list > div > div p {
  color: var(--Neutra-12, #202020);
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
  max-width: 432px;
}
.offer .offerDiv .list > div > div span {
  color: rgba(255, 45, 45, 0.6);
  text-align: right;
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-caption, 16px);
  font-weight: 500;
  line-height: 140%;
  text-decoration: line-through;
}
.offer .offerDiv .list > div > div .inc {
  text-decoration: none;
}
.offer .offerDiv .mockup {
  margin-left: -70px;
  margin-right: -70px;
}
.offer .offerDiv .desc {
  color: #FF3A3A;
  text-align: center;
  font-family: "eurostile-condensed", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 91%;
  text-transform: uppercase;
  max-width: 350px;
}
.offer .offerDiv .priceDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  gap: 10px;
}
.offer .offerDiv .priceDiv .de {
  color: rgba(255, 45, 45, 0.8);
  font-family: "eurostile-condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.offer .offerDiv .priceDiv .de span {
  text-decoration: line-through;
}
.offer .offerDiv .priceDiv .off {
  color: #EDEEF0;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "eurostile", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  margin-top: 6px;
}
.offer .offerDiv .priceDiv .por {
  color: var(--Neutra-12, #202020);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "eurostile", sans-serif;
  font-size: 25.199px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.offer .offerDiv .priceDiv .parc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.offer .offerDiv .priceDiv .parc p {
  color: #202020;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "eurostile-condensed", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 120%;
  max-width: 52px;
  text-align: right;
}
.offer .offerDiv .priceDiv .parc p:last-child {
  font-size: 15px;
  margin-top: 20px;
}
.offer .offerDiv .priceDiv .parc strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #202020;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "eurostile-condensed", sans-serif;
  font-size: 141px;
  font-weight: 900;
  line-height: 80%;
}
.offer .offerDiv .priceDiv .parc strong span {
  font-size: 46px;
}
.offer .offerDiv .priceDiv .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.offer .offerDiv .priceDiv .bottom > p {
  color: var(--Neutra-11, #646464);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "eurostile", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}
.offer .offerDiv .priceDiv .bottom div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer .offerDiv .priceDiv .bottom div div {
  display: flex;
  padding: 4px 9.816px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0 3.681px 3.681px 0;
  background: #FB1E0E;
  margin-left: -1px;
}
.offer .offerDiv .priceDiv .bottom div div p {
  color: #FFF;
  text-align: center;
  font-family: "eurostile", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.offer .offerDiv .btnDiv p {
  color: #202020;
}
.offer .offerDiv .btnDiv .myBtn {
  border: 2px solid var(--Neutra-12, #202020);
  background: linear-gradient(180deg, #00DE6B 0%, #00B34D 100%);
  box-shadow: 14px 14px 0px 0px var(--Neutra-12, #202020), 12px 12px 0px 0px var(--Neutra-12, #202020), 10px 10px 0px 0px var(--Neutra-12, #202020), 8px 8px 0px 0px var(--Neutra-12, #202020), 6px 6px 0px 0px var(--Neutra-12, #202020), 4px 4px 0px 0px var(--Neutra-12, #202020), 2px 2px 0px 0px var(--Neutra-12, #202020);
}
@media (max-width: 600px) {
  .offer {
    padding: 24px 10px;
  }
  .offer .offerDiv {
    padding: 40px 11px 32px;
  }
  .offer .offerDiv .mockup {
    width: 320px;
    margin: unset;
  }
  .offer .offerDiv .titleDiv span {
    font-size: 28px;
  }
  .offer .offerDiv .titleDiv strong {
    font-size: 40px;
    max-width: 310px;
  }
  .offer .offerDiv .list > div > div p {
    font-size: 17px;
    max-width: 276px;
  }
  .offer .offerDiv .list > div > div span {
    font-size: 14px;
  }
  .offer .offerDiv .desc {
    font-size: 40px;
  }
  .offer .offerDiv .btnDiv .myBtn {
    min-width: 310px;
    max-width: 310px;
  }
}

.safe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.safe .safeDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  border-radius: var(--border_radius-border-radius_md, 16px);
  border: 1px solid #FF158A;
  background: linear-gradient(180deg, rgba(255, 21, 138, 0.3) 0%, rgba(153, 140, 0, 0) 15.3%);
}
.safe .safeDiv .titleDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.safe .safeDiv .titleDiv img {
  margin-bottom: -50px;
}
.safe .safeDiv .titleDiv span {
  color: var(--Neutra-12, #EEE);
  text-align: center;
  font-family: "eurostile-condensed", sans-serif;
  font-size: var(--Tamanhos-h2, 44px);
  font-weight: 700;
  line-height: 82%;
  text-transform: uppercase;
}
.safe .safeDiv .titleDiv strong {
  color: #FF158A;
  text-align: center;
  font-family: "eurostile-condensed", sans-serif;
  font-size: var(--Tamanhos-h3, 38px);
  font-weight: 700;
  line-height: 120%;
}
.safe .safeDiv > p {
  color: var(--neutral-12, #FFF);
  text-align: center;
  font-family: "eurostile", sans-serif;
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
  max-width: 620px;
}
.safe .safeDiv > p b {
  font-weight: 600;
}
@media (max-width: 600px) {
  .safe {
    padding: 24px;
  }
  .safe .safeDiv {
    gap: 16px;
    padding: 16px;
  }
  .safe .safeDiv .titleDiv span {
    font-size: 32px;
    max-width: 310px;
  }
  .safe .safeDiv .titleDiv strong {
    font-size: 28px;
    max-width: 310px;
  }
  .safe .safeDiv > p {
    font-size: 17px;
    max-width: 310px;
  }
  .safe .safeDiv .btnDiv .myBtn {
    min-width: 310px;
    max-width: 310px;
  }
}

.expert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 0;
}
.expert .textDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.expert .textDiv > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
.expert .textDiv > div strong {
  color: var(--Neutra-12, #EEE);
  font-family: "eurostile-condensed", sans-serif;
  font-size: var(--Tamanhos-h2, 44px);
  font-weight: 700;
  line-height: 100%;
}
.expert .textDiv > div span {
  color: #FF158A;
  font-family: "eurostile-condensed", sans-serif;
  font-size: var(--Tamanhos-h1, 54px);
  font-weight: 700;
  line-height: 100%;
}
.expert .textDiv p {
  color: var(--Neutra-12, #EEE);
  font-family: "eurostile", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 580px;
}
@media (max-width: 600px) {
  .expert {
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    gap: 32px;
  }
  .expert .lud {
    width: 342px;
    height: 281px;
    object-fit: contain;
  }
  .expert .textDiv {
    gap: 18px;
  }
  .expert .textDiv > div strong {
    font-size: 32px;
    max-width: 342px;
  }
  .expert .textDiv > div span {
    font-size: 30px;
    max-width: 342px;
  }
}

#faq {
  display: flex;
  padding: 40px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
#faq strong {
  color: var(--Neutra-12, #EEE);
  text-align: center;
  font-family: "eurostile-condensed", sans-serif;
  font-size: var(--Tamanhos-h2, 44px);
  font-weight: 700;
  line-height: 100%;
  max-width: 500px;
}
#faq .asks {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
}
#faq .asks .ask {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}
#faq .asks .ask.active .answer {
  padding: 20px;
  height: auto;
}
#faq .asks .ask .answer {
  padding: 20px;
  color: #FFF;
  font-family: "eurostile", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  height: 0;
  padding: 0 2.4rem;
  transition: all 0.5s ease;
}
#faq .asks .ask .answer a {
  color: #a4a4a4;
}
#faq .asks .ask .answer a:hover {
  filter: brightness(80%);
}
#faq .asks .ask .title-wrapper {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #313131;
}
#faq .asks .ask .title-wrapper p {
  color: #FFFFFF;
  font-family: "eurostile", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
#faq .asks .ask:first-child {
  border-top: 1px solid #313131;
}
#faq .btnDiv > div p {
  font-size: 15px;
  background: #ede7da;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 600px) {
  #faq {
    padding: 24px;
  }
  #faq strong {
    font-size: 30px;
    max-width: 342px;
  }
  #faq .asks .ask .title-wrapper p {
    width: 308px;
  }
  #faq .btnDiv > div p {
    font-size: 12px;
  }
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px;
  gap: 24px;
}
footer p {
  color: var(--Neutra-12, #EEE);
  text-align: center;
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 400;
  line-height: 140%;
}
footer > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer > div a {
  color: var(--Neutra-12, #EEE);
  text-align: center;
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
  transition: 0.2s;
}
footer > div a:hover {
  filter: brightness(80%);
}
@media (max-width: 600px) {
  footer {
    padding: 16px;
  }
  footer > p {
    font-size: 17px;
  }
  footer > div {
    flex-direction: column;
  }
  footer > div a {
    font-size: 17px;
  }
}

.whatsapp-btn {
  z-index: 999;
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  transition: 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .whatsapp-btn {
    bottom: 1rem;
    right: 1rem;
  }
}

/*# sourceMappingURL=style.min.css.map */
