@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

/* criação das variaveis CSS */
:root {
  --header-height: 5rem;
  /* cores do site */
  --first-color: #f72b8e;
  --second-color: #68d7d9;
  --background-color: #001a61;
  --black-color-1: #3b3b3b;
  --black-color-2: #242424;
  --grey-color-1: #dddddd;
  --grey-color-2: #8b8b8b;
  --white-color: #00fefc;
  --green-gradient: linear-gradient(rgb(187, 217, 104), hsla(151, 60%, 63%, 1));

  /* tipografia site */
  --body-font: "Montserrat", sans-serif;
  --big-font-size: 9.5rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --h3-big-font-size: 1.8rem;
  --normal-font-size: 1.125rem;
  --small-font-size: 1rem;
  --smaller-font-size: 0.75rem;
  --font-medium: 500;
  --font-semi-bold: 600;

  /* margin bottom */
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-5: 5rem;

  /* posição */
  --z-tooltip: 10;
  --z-fixed: 100;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--body-font);
  background-color: var(--background-color);
  color: var(--white-color);
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input {
  border: none;
  outline: none;
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button,
input {
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

p {
  margin-bottom: 2rem;
  line-height: 150%;
}

.section {
  padding: 4rem 1rem 4rem 1rem;
}

.container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

/* BARRA DE ROLAGEM SITE */

::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--background-color);
  border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb {
  background-color: var(--black-color-2);
  border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--first-color);
}

/* home */
.home {
  background: url(/assets/img/bg_sec1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.home__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
}

.home__container h1 {
  font-size: 50px;
  line-height: 110%;
  font-family: "Bebas Neue", cursive;
  margin-top: 1rem;
  margin-bottom: var(--mb-1);
}
.home__data p {
  font-size: 19px;
  color: white;
}
span {
  color: var(--first-color);
}
.home__img img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}
.logo__hello {
  width: 100%;
  max-width: 200px;
}
.home__img::before {
  content: "";
  width: 300px;
  height: 300px;
  background-color: var(--first-color);
  position: absolute;
  filter: blur(200px);
  border-radius: 475px;
  z-index: -1;
  top: 100px;
  right: 26%;
}

.btn__Participar {
  background-color: var(--first-color);
  padding: 1rem;
  border-radius: 12px;
  font-weight: bold;
  color: #fafafa;
}

.btn__Participar:hover {
  box-shadow: 0 4px 12px rgb(226 189 125 / 35%);
}

.desable {
  display: none;
}

.separation {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Bebas Neue", cursive;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0.25em;
  margin-bottom: 60px;
}

.separation::before,
.separation::after {
  content: "";
  width: 35%;
  height: 1px;
  background-color: var(--white-color);
  opacity: 18%;
  display: block;
}

/* About */

.About {
  padding: 0rem 1rem 4rem;
}

.about__header {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}
.about__header h2 {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1-5);
}
.about__header p {
  font-size: var(--normal-font-size);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.offer-card {
  margin-top: 20px;
}

.card-final {
  background-color: rgba(52, 58, 64, 0.479);
  padding: 2.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid rgb(9, 204, 162);
}

.card {
  background-color: rgb(52, 58, 64, 18%);
  padding: 2.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid rgba(69, 74, 80, 0.418);
}
.card i {
  font-size: 2rem;
  font-weight: 100;
  color: rgb(210, 171, 90, 80%);
}
.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: var(--mb-1-5);
  margin-bottom: var(--mb-1);
}

.card p {
  font-size: 16px;
  font-weight: lighter;
}

.btn__Div {
  text-align: center;
  margin-top: 4rem;
}

/* Profile */
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.right {
  position: relative;
}
.vanessa-insta-box {
  font-size: var(--h2-font-size);
}
.right::before {
  content: "";
  width: 300px;
  height: 300px;
  background-color: var(--first-color);
  position: absolute;
  filter: blur(200px);
  border-radius: 375px;
  z-index: -1;
  top: 100px;
  right: 40%;
}
.transp {
  background-color: transparent;
}

.flex .right,
.flex .left {
  width: 50%;
}

.flex .left .bottom p {
  max-width: 535px;
  margin-bottom: 3rem;
  color: white;
}

.flex .right img {
  max-width: 655px;
  width: 100%;
}

.flex .right .mobile-sec3-img {
  display: none;
}

.flex .left img {
  max-width: 580px;
  width: 100%;
}

.flex .left .p1 {
  margin-bottom: 0.5rem;
}

.flex .left .bottom {
  margin-left: 1rem;
  margin-top: 1rem;
}

.card-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 1rem;
}

.card-box .card {
  text-align: center;
}

.card-box .card img {
  max-width: max-content;
  width: 100%;
}

.flex .right .mobile-sec3-img {
  display: none;
}

.offer_price {
  gap: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* SEÇÃO MOD */
.mod__content {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.mod__card {
  margin-top: var(--mb-1);
  cursor: pointer;
}
.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mod__answer p {
  padding-top: var(--mb-1);
  font-size: var(--small-font-size);
}

.mod__answer p a:hover {
  color: var(--first-color);
}
.mod__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.4s ease;
  margin-bottom: var(--mb-1);
}
.mod__card.active .mod__answer {
  max-height: 300px;
}
.mod__card.active i {
  transform: rotate(180deg);
}

.iconMod {
  font-size: 2rem;
  color: var(--first-color);
  transition: transform 0.6s ease-in;
}

@media (max-width: 768px) {
  .faq__content {
    flex-direction: column;
    gap: 0rem;
  }
  .faq__grid {
    width: 100%;
  }
}

/* SEÇÃO FAQ */
.faq__content {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.faq__card {
  margin-top: var(--mb-1);
  border-bottom: 1px solid rgb(226, 189, 125, 35%);
  cursor: pointer;
}
.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__answer p {
  padding-top: var(--mb-1);
  font-size: var(--small-font-size);
}

.faq__answer p a:hover {
  color: var(--first-color);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.4s ease;
  margin-bottom: var(--mb-1);
}
.faq__card.active .faq__answer {
  max-height: 300px;
}
.faq__card.active i {
  transform: rotate(180deg);
}

.iconFaq {
  font-size: 2rem;
  color: var(--first-color);
  transition: transform 0.6s ease-in;
}

.faq__title {
  font-weight: lighter;
}

@media (max-width: 768px) {
  .faq__content {
    flex-direction: column;
    gap: 0rem;
  }
  .faq__grid {
    width: 100%;
  }
}

/* responsividade da FAQ */
@media (max-width: 474px) {
  .faq__card {
    margin-top: var(--mb-1);
  }
  .faq__title {
    font-size: 16px;
  }
}

/* SEÇÃO DESCONTO */
.ticket {
  padding-top: 0;
}

.ticket__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ticket__content {
  display: flex;
  align-items: center;
  max-width: 780px;
  background-color: var(--first-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  gap: 2rem;
  text-align: center;
}

.ticket__content--cor-secundaria {
  background-color: rgb(52, 58, 64, 100%);
}
.ticket__content--cor-secundaria .ticket__data h3 {
  color: var(--white-color);
}

.ticket__content--cor-secundaria .ticket__data p {
  color: var(--grey-color-1);
}
.ticket__content--cor-secundaria .botaoCupom .cupom {
  background-color: #eba617;
  color: var(--background-color);
}

.ticket__data h3 {
  color: #080808;
  font-size: var(--h3-big-font-size);
  margin-bottom: var(--mb-1);
  font-weight: bold;
}
.ticket__data p {
  color: #000;
  font-size: 22px;
  font-weight: 500;
}
.ticket__data strong {
  font-size: 28px;
}
.ticket__img {
  margin-bottom: var(--mb-1-5);
}
.ticket__img img {
  width: 100%;
  max-width: 100px;
}

.cupom {
  background-color: #080808;
  color: var(--first-color);
}
.botaoCupom {
  text-align: center;
}

/* Footer */

footer .daniellucasdev {
  color: #e5b108 !important;
}

footer .section {
  background-color: rgb(52, 58, 64, 18%);
}

footer .section .top {
  justify-content: flex-start;
  gap: 2rem;
}

footer .section .top img {
  max-width: 200px;
  width: 100%;
}

footer .section .top h2 {
  font-size: 30px;
}

footer .section .bottom {
  align-items: flex-start;
  gap: 2rem;
}

footer .section .bottom {
  justify-content: start;
}

footer .section .bottom p {
  max-width: 850px;
  font-size: 14px;
  border-right: 1px #d4d4d4 solid;
  padding-right: 1.5rem;
}

footer .section .navegacao h4 {
  margin-bottom: 8px;
  color: var(--first-color);
}

footer .section a {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

footer .section a:hover {
  margin-bottom: 8px;
  color: var(--first-color);
}

footer .section .navegacao div:not(:last-child) {
  margin-bottom: 6px;
}

footer .termos-politica a:first-child {
  margin-right: 1rem;
}

.madeby {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
footer .limited-time {
  padding: 20px 1rem;
}

footer .section .bottom p {
  max-width: 745px;
}

@media (max-width: 700px) {
  .home__container {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
  .desable {
    display: block;
  }
  .ativo {
    display: none;
  }
  .separation::before,
  .separation::after {
    width: 20%;
    justify-content: center;
  }
  .separation {
    text-align: center;
  }
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .flex__bottom {
    display: flex;
    flex-direction: column-reverse !important;
    align-items: center !important;
  }

  .flex {
    flex-direction: column;
    text-align: center;
    gap: unset;
  }
  .flex .right,
  .flex .left {
    width: unset;
  }

  .flex .left img {
    display: none;
  }

  .flex .right .mobile-sec3-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }

  .flex .right .desktop-sec3-img {
    display: none;
  }

  .flex .left .bottom {
    margin-left: unset;
    margin-top: unset;
  }

  .flex .right img {
    width: 60%;
  }
  .card-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .ticket__content {
    flex-direction: column;
    text-align: center;
  }
  .botaoCupom {
    padding-bottom: 1.5rem;
  }
  .ticket__img img {
    width: 100%;
    max-width: 80px;
  }
}

@media (max-width: 500px) {
  .about__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
