@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bowlby+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
:root {
  /* Cores */
  --brandPrimary: #6d36fb;
  --brandSecondary: #99ff33;
  --pinkColor: #c13987;
  --pinkColorDark: #b462a5;
  --pinkColorBold: #80265a;
  --pinkColorLight: #c63b8b;
  --whiteColor: #ffffff;
  --blackColor: #000000;

  --font-sora: "Sora", sans-serif;
  --font-bowlby: "Bowlby One", cursive;
  --font-bebas: "Bebas Neue", cursive;

  --title-h1: 4rem;
  --title-h2: 3.5rem;
  --title-h3: 2.25rem;

  --text-p1: 2rem;
  --text-p2: 1.875rem;
  --text-p3: 1.5rem;
  --text-p4: 0.9375rem;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
  background-color: var(--blackColor);
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  line-height: 140%;
  font-family: var(--font-bowlby);
}
p {
  line-height: 140%;
  font-family: var(--font-sora);
}

.section {
  padding: 5rem 1rem;
}
@media (max-width: 723px) {
  .section {
    padding: 3rem 1rem;
  }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* CAROUSEL ANIMADO */
.carousel {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--brandPrimary);
  position: fixed;
  top: -1px;
  padding: 16px 20px;
  z-index: 3;
}
.words {
  display: flex;
  gap: 1rem;
  animation: moveWords 15s linear infinite;
}
.words li {
  font-family: var(--font-sora);
  color: var(--whiteColor);
  font-size: var(--text-p4);
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}
.words li span {
  color: var(--brandSecondary);
}
@keyframes moveWords {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 650px) {
  .words {
    animation: moveWords 3s linear infinite;
  }
}
/* HEADER DO SITE */
.header {
  width: 100%;
  position: fixed;
  top: 3rem;
  left: 0;
  z-index: 11;
  border-radius: 0 0 20px 20px;
  background: rgba(109, 54, 251, 0.1);
  backdrop-filter: blur(12px);
}
.nav__container {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
.nav__toggle {
  font-size: 1.2rem;
  color: var(--brandPrimary);
  cursor: pointer;
}
@media screen and (max-width: 898px) {
  .nav__menu {
    position: fixed;
    background: var(--brandPrimary);
    top: -300%;
    left: 0;
    width: 100%;
    padding: 4rem 0 3rem;
    transition: 0.5s;
  }
}
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.nav__link {
  color: var(--whiteColor);
  font-size: var(--text-p4);
  font-weight: 700;
  transition: 0.3s ease-in-out;
  font-family: var(--font-sora);
}
.nav__link:hover {
  color: var(--brandPrimary);
}
.nav__close {
  position: absolute;
  font-size: 1.5rem;
  top: 1rem;
  right: 1rem;
  color: var(--whiteColor);
  cursor: pointer;
}
.show-menu {
  top: 0;
}
@media screen and (min-width: 899px) {
  .nav {
    height: 4.5rem;
  }
  .nav__logo {
    width: 2rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 2.4rem;
  }
  .nav__toggle,
  .nav__close {
    display: none;
  }
}
/* --------------------------- */
/* HOME DO SITE */
.home {
  background-image: url("/assets/images/home/palestrantes.webp");
  background-repeat: no-repeat;
  background-position: right;
  padding: 15rem 1rem;
}
.home__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.img__palestrantes {
  display: none;
}
@media screen and (min-width: 1580px) {
  .home {
    background-image: unset;
    width: 100%;
    padding: 6rem 1rem;
  }
  .img__palestrantes {
    display: block;
    width: 100%;
  }
}

.home__data {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.home__title {
  font-size: var(--title-h1);
  color: var(--brandPrimary);
  font-family: var(--font-bowlby);
  line-height: 64px;
}
.home__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home__item {
  font-size: var(--text-p3);
  color: var(--whiteColor);
  max-width: 324px;
}
.home__item strong {
  color: var(--brandSecondary);
}
.button {
  background-color: var(--pinkColor);
  padding: 12px 60px;
  width: fit-content;
  border-radius: 100px;
}
.button__text {
  font-size: var(--text-p3);
  color: var(--whiteColor);
  font-family: var(--font-sora);
  font-weight: 600;
}
.advantagens__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}
.image__capa {
  display: none;
}
/* Responsivo da home */
@media (max-width: 743px) {
  .home {
    background-image: unset;
    background-size: cover;
    width: fit-content;
    padding: 8.2rem 1rem 1rem 1rem;
  }
  .home__container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .home__item {
    max-width: 100%;
  }
  .home__image {
    display: none;
  }
  .image__capa {
    display: block;
    max-width: 100%;
  }
  .home__title {
    font-size: 2rem;
    line-height: 30px;
  }
  .button__text {
    font-size: 16px;
    line-height: 30px;
    display: flex;
    text-align: center;
  }
  .home__data {
    position: relative;
    gap: unset;
    align-items: center;
  }
  .home__list {
    gap: 0.2rem;
  }
  .home__btn {
    position: absolute;
    bottom: 5%;
  }
}

/* Secao advantagens */
.advantagens {
  position: relative;
}
.subscribe {
  position: fixed;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.no-subscribe {
  transition: opacity 0.5s ease-in-out;
}

@media (max-width: 600px) {
  .subscribe {
    left: 40%;
    transform: translateX(-33%);
  }
}

.advantagens__container {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.advantagens__body {
  position: relative;
  max-width: 700px;
  z-index: 1;
  margin-top: 2rem;
}
.advantagens__data {
  align-self: flex-start;
  top: 130px;
  position: sticky;
  max-width: 420px;
}

.advantagens__title {
  font-size: var(--title-h1);
  color: var(--brandPrimary);
  font-family: var(--font-bowlby);
  line-height: 64px;
}
.advantagens__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 2;
}
.advantagens__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.advantagens__image {
  width: 100%;
  max-width: 407px;
  backdrop-filter: blur(12px);
}
.advantagens__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.advantagens__subtitle {
  font-family: var(--font-bowlby);
  font-size: var(--title-h3);
  color: var(--brandSecondary);
}
.advantagens__description {
  font-size: var(--text-p3);
  color: var(--whiteColor);
  font-family: var(--font-sora);
}

/* Responsividade da secao de vantagens */
@media (max-width: 890px) {
  .advantagens__item {
    flex-direction: column-reverse;
  }
  .advantagens__image {
    max-width: 350px;
  }
}
@media (max-width: 743px) {
  .advantagens__container {
    flex-direction: column;
    align-items: center;
    gap: unset;
  }
  .advantagens__body {
    display: none;
  }
  .advantagens__title {
    font-size: 2rem;
    line-height: 40px;
  }
  .advantagens__data {
    top: unset;
    margin-bottom: 2rem;
    position: relative;
    max-width: 100%;
  }
  .advantagens__subtitle {
    font-size: var(--text-p1);
  }
  .advantagens__content {
    gap: unset;
  }
}

/* Secao de video */

.video {
  background-image: url("/assets/images/video/bg.webp");
  background-position: center;
  background-size: cover;
  height: 100vh;
  position: relative;
  cursor: url("/assets/images/video/play.png") 60 60, auto;
  overflow: hidden;
}
.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video__container {
  height: 100vh;
  width: 100vw;
}
.video__title {
  font-size: var(--title-h1);
  font-family: var(--font-bowlby);
  color: var(--whiteColor);
  line-height: 60px;
  max-width: 250px;
}

@media (max-width: 768px) {
  .video.section {
    position: relative;
    padding: 0;
    margin: 0;
  }
  .video__title {
    max-width: 100%;
    padding: 2rem 1rem;
    font-size: 2rem;
    line-height: 30px;
  }
  .video {
    background-position: left;
  }
  .video video {
    height: 100%;
    object-fit: none;
    z-index: 0;
  }
  .video__container {
    height: 500px;
    width: 100%;
  }
}

/* Secao speakers */
.speakers__decor {
  background-image: url("/assets/images/home/advantagens/line.svg");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
  position: relative;
  width: 100%;
  height: 438px;
}
.speakers__mobile {
  display: none;
}
@media (max-width: 650px) {
  .speakers__decor {
    background-image: none;
    height: 200px;
  }
  .speakers__mobile {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.speakers__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.speakers__header {
  text-align: center;
}
.speakers__title {
  font-size: var(--title-h3);
  color: var(--pinkColorLight);
  font-family: var(--font-bowlby);
  text-align: center;
  line-height: 40px;
}
/* card do speakers */
.speakers__card {
  max-width: 390px;
  border-radius: 70px;
  background-color: rgba(109, 54, 251, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
}

.speakers__image {
  width: 100%;
  position: relative;
  bottom: -3.6px;
}
.speakers__content {
  background-color: var(--pinkColorDark);
  position: absolute;
  bottom: 13%;
  right: -5%;
  min-width: 260px;
  padding: 12px 26px;
}
.speakers__function {
  color: var(--whiteColor);
  font-size: var(--text-p3);
  font-family: var(--font-sora);
}
.speakers__name {
  color: var(--whiteColor);
  font-size: var(--title-h3);
  line-height: 35px;
}

/* Carrousel do swiper */
.speakers__carrousel {
  position: relative;
}
.swiper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 250px;
  flex: 1;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--brandSecondary) !important;
  width: 53px;
  cursor: pointer;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 80px !important;
}
.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

@media (max-width: 750px) {
  .speakers__carrousel {
    flex-direction: column;
    overflow: hidden;
  }
  .speakers__header {
    max-width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .speakers__function {
    font-size: 1.1rem;
  }
  .speakers__name {
    font-size: 1.5rem;
    line-height: 25px;
  }
}

/* Transição suave no hover (opcional) */
/* .swiper-wrapper {
  margin-left: 28%;
}
@media (max-width: 800px) {
  .swiper-wrapper {
    margin-left: unset;
  }
} */
/* .swiper-button-prev,
.swiper-button-next {
  color: var(--brandSecondary) !important;
  width: 53px;
  cursor: pointer;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 80px !important;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
} */
@media (max-width: 600px) {
  .speakers__title {
    font-size: 2rem;
  }
  .speakers__function {
    font-size: 1.1rem;
  }
  .speakers__name {
    font-size: 1.5rem;
    line-height: 25px;
  }
}

/* Secao de planos */
.plans__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1217px;
  margin: 0 auto;
}
.plans__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plans__title {
  font-family: var(--font-bowlby);
  color: var(--pinkColorLight);
  font-size: var(--title-h3);
  line-height: 40px;
  max-width: 500px;
}

.plans__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.plans__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 5px solid var(--whiteColor);
  border-radius: 70px;
  padding: 36px 45px;
  position: relative;
}
.best__plan {
  border-color: var(--brandPrimary);
  background: rgba(109, 54, 251, 0.27);
  backdrop-filter: blur(20px);
}
.plans__tag {
  background-color: var(--pinkColorLight);
  padding: 16px 24px;
  text-align: center;
  position: absolute;
  top: -1%;
  right: 12%;
}
.plans__tag__copy {
  color: var(--whiteColor);
  font-family: var(--font-sora);
  line-height: 20px;
}
.tag__g {
  color: var(--brandSecondary);
}
.plans__card__header {
  color: var(--whiteColor);
}
.plans__card__name {
  font-family: var(--font-sora);
  font-size: var(--text-p1);
  line-height: 20px;
}
.plans__card__type {
  font-family: var(--font-bowlby);
  font-size: var(--title-h3);
}

.plans__list {
  display: flex;
  flex-direction: column;
}
.plans__item {
  font-size: var(--text-p1);
  font-family: var(--font-sora);
}
.check {
  color: var(--brandSecondary);
}
.no-check {
  color: var(--pinkColorBold);
}
.plans__card__price {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.plans__money {
  font-size: var(--text-p1);
  font-family: var(--font-sora);
  color: var(--whiteColor);
}
.plans__price {
  font-size: var(--title-h2);
  color: var(--whiteColor);
  position: relative;
}
.plans__description {
  color: var(--brandSecondary);
  font-size: 1.25rem;
  max-width: 80px;
}
.unic {
  max-width: 100%;
}

/* Lugar dos proximos lotes */
.next__batch {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.next__money,
.next__price,
.next__description {
  color: #707070;
}
.next__money {
  font-size: 24px;
}

.next__price {
  font-size: 32px;
}
.next__description {
  font-size: 14px;
  line-height: 15px;
}
/* Risco de esgotado */
.finished{
    position: absolute;
    top: 42%;
    left: -53%;
    width: 158%;
    height: 3px;
    background-color: var(--pinkColor);
    transform: rotate(-9deg);
    transform-origin: center;

}
/* Responsividade dos planos */
@media (max-width: 980px) {
  .plans__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .plans__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .plans__title {
    max-width: 100%;
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .plans__card {
    padding: 32px;
  }
  .plans__header {
    align-items: unset;
  }
  .plans__card__name {
    font-size: var(--text-p3);
  }
  .plans__card__type {
    font-size: 2rem;
  }
  .plans__item {
    font-size: var(--text-p3);
  }
  .next__batch {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
  }
  .next__card,
  .plans__card__price {
    flex-direction: row;
    align-items: center;
  }
  .plans__money {
    font-size: var(--text-p3);
  }
  .plans__price {
    font-size: 2rem;
  }
  .plans__description {
    font-size: 1rem;
    max-width: 100%;
  }
  .plans__tag__copy {
    font-size: 1rem;
  }
}

/* Secao de embarque */
.destination__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.destination__header {
  max-width: 600px;
  margin: 0 auto;
}
.destination__content {
  display: flex;
  gap: 3rem;
}
.destination__data {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.destinantion__text {
  color: var(--whiteColor);
  font-size: var(--text-p1);
}
.destination__card {
  width: 65%;
  color: var(--whiteColor);
}
.destination__plane {
  background: var(--brandPrimary);
  display: flex;
  gap: 20px;
  padding: 11px 24px;
  margin-bottom: 0.5rem;
}
.plane__text {
  font-family: var(--font-bebas);
  font-size: var(--text-p1);
}
.table {
  display: flex;
  flex-direction: column;
}
.table__item {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid var(--brandPrimary);
  padding: 0 1.5rem;
}
.table__item:first-child {
  border-top: none;
}
.table__text {
  font-size: var(--text-p1);
  line-height: 54px;
  font-family: var(--font-bebas);
  letter-spacing: 6px;
}
.destination__footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.destination__image {
  width: 100%;
}
/* Responsividade da secao de destino */

@media (max-width: 870px) {
  .destination__container {
    gap: 2rem;
  }
  .destination__content {
    flex-direction: column;
  }
  .destination__card,
  .destination__data {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .destinantion__text,
  .table__text {
    font-size: var(--text-p3);
  }
}
@media (max-width: 540px) {
  .table__item {
    padding: unset;
  }
  .table__text {
    line-height: 30px;
    font-size: 18px;
  }
}
@media (max-width: 425px) {
  .table__text {
    line-height: 20px;
    font-size: 15px;
  }
}

/* Secao de ajuda */
.help__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.help__header {
  text-align: center;
}
.help__title {
  font-size: 128px;
  color: var(--pinkColorLight);
  font-family: var(--font-bowlby);
  line-height: 48px;
}
.faq__card {
  border-bottom: 1px solid var(--brandPrimary);
  cursor: pointer;
  padding: 26px;
}
.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__answer p {
  color: var(--whiteColor);
  font-size: var(--text-p3);
  line-height: auto;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
  margin-bottom: 1rem;
}
.faq__title {
  font-size: var(--text-p1);
  color: var(--whiteColor);
  font-family: var(--font-sora);
  font-weight: 600;
}

.iconFaq {
  color: var(--whiteColor);
  transform: rotate(135deg);
  transition: transform 0.3s ease-in;
  font-size: 1.5rem;
}
.faq__card.abrir {
  border-radius: 4px;
}
.faq__card.abrir .faq__answer {
  max-height: 300px;
}
.faq__card.abrir i {
  transform: rotate(180deg);
}

/* responsivo do faq */
@media (max-width: 700px) {
  .help__container {
    gap: 1.5rem;
  }
  .help__title {
    font-size: 64px;
  }
  .faq__title {
    font-size: var(--text-p3);
  }
  .faq__answer p {
    font-size: var(--text-p4);
  }
}
@media (max-width: 500px) {
  .faq__title {
    font-size: 20px;
  }
}

/* Secao do footer */

.footer {
  background-image: url("/assets/images/footer2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 1422px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 15rem;
}
.footer__title {
  font-size: var(--title-h1);
  color: var(--brandPrimary);
  max-width: 750px;
  line-height: 70px;
  text-align: center;
}

@media (max-width: 650px) {
  .footer,
  .footer__container {
    height: 60%;
  }
  .footer__title {
    font-size: 1.2rem;
    line-height: 25px;
    max-width: 250px;
  }
  .footer__data img {
    max-width: 120px;
  }
}

/* Botão de localização */
.button__footer {
  padding: 12px 30px;
  width: fit-content;
  border-radius: 100px;
}
.button__text {
  font-size: 12px;
  color: var(--whiteColor);
  font-family: var(--font-sora);
  font-weight: 600;
}
