/* GERAL */

@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

@font-face {
  font-family: "PoppinsThin";
  src: url("poppins-thin-webfont.woff2") format("woff2"),
    url("poppins-thin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsExtraLight";
  src: url("poppins-extralight-webfont.woff2") format("woff2"),
    url("poppins-extralight-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsLight";
  src: url("poppins-light-webfont.woff2") format("woff2"),
    url("poppins-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsRegular";
  src: url("poppins-regular-webfont.woff2") format("woff2"),
    url("poppins-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsMedium";
  src: url("poppins-medium-webfont.woff2") format("woff2"),
    url("poppins-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsBold";
  src: url("poppins-bold-webfont.woff2") format("woff2"),
    url("poppins-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --branco: #f3f3f3; /* #f2f0ed */
  --roxoMuitoClaro: #f392ff;
  --roxoClaro: #6e0d7a;
  --roxoEscuro: #27012b;
  --roxoMedio: #37063d;
  --roxoMedioAlpha: #37063d00;
  --verdeNeon: #a6ff00;

  --FonteFininha: "PoppinsThin";
  --FonteMuitoFina: "PoppinsExtraLight";
  --FonteFina: "Rubik";
  --FonteNormal: "Rubik";
  --FonteMedia: "Rubik";
  --FonteBold: "PoppinsBold";
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--FonteFina), Arial, sans-serif;
  font-weight: 300;
  color: var(--branco);
  background: var(--roxoEscuro);
  overflow-x: hidden !important;
}

p {
  font-family: var(--FonteFina), Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--branco);
  line-height: 26px;
  /*	letter-spacing: .05em;*/
}

h2.titulo_secao {
  position: relative;
  margin: 10px auto;
  font-family: var(--FonteMedia), Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 40px;
  font-size: 37px;
  color: var(--branco);
  text-align: center;
  z-index: 2;
}

a.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: var(--FonteNormal), Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--branco);
  /* background: var(--roxoMedio); */
  background: linear-gradient(
    315deg,
    var(--roxoClaro) 0%,
    rgb(89, 49, 171) 100%
  );

  padding: 15px 30px;
  border-radius: 100px;
  height: 50px;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;

  box-shadow: rgba(255, 255, 255, 0.25) 0px 4px 12px 0px inset,
    rgba(213, 155, 243, 0.5) 0px 4px 32px 0px;
}

a.btn:hover {
  /* background-color: var(--roxoEscuro); */
  transform: scale(1.05);
  -webkit-box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
  -moz-box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
  box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
}

/* 🔹 Borda animada com tons do tema */
a.btn::before {
  content: "";
  position: absolute;
  inset: -2px; /* controla espessura da borda */
  border-radius: inherit;
  /* background-color: var(--roxoClaro); */
  /* background: linear-gradient(
    to right,
    var(--verdeNeon) 0%,
    var(--roxoMedio) 100%
  ); */

  background: radial-gradient(
    circle at top,
    var(--roxoMuitoClaro) 0%,
    var(--roxoClaro) 50%,
    var(--roxoMedio) 100%
  );
  animation: rotateLight 7s ease-in-out infinite;
  z-index: 0;
  filter: blur(5px) brightness(1.4) contrast(1.2);
}

/* 🔹 Fundo interno */
a.btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  /* background: var(--roxoMedio); */
  /* background: linear-gradient(
    135deg,
    var(--roxoClaro) 0%,
    var(--roxoMedio) 100%
  ); */
  background: linear-gradient(
    127.947deg,
    rgb(220, 221, 233) 0%,
    rgb(226, 161, 242) 18.5%,
    rgb(145, 81, 208) 55%,
    var(--roxoMedio) 100%
  );

  z-index: 1;
  transition: background 0.3s ease-in-out;
}

/* 🔹 Texto */
a.btn span {
  position: relative;
  z-index: 2;
}

/* 🔹 Animação mais suave e elegante */
@keyframes rotateLight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.bordaBranca {
  border-color: var(--branco);
}

.bordaBranca:hover {
  border-color: var(--branco);
}

.bordaInvertida:hover {
  border-color: var(--branco);
}

.semBorda {
  border: none;
}

.letraBranca {
  color: var(--branco);
}

.letraVerde {
  color: var(--verdeNeon);
}

.fonteNegrita {
  font-family: var(--FonteMedia);
}

/* EFEITO BG EM MOVIMENTO */

.bolaG {
  position: fixed;
  display: block;
  top: -50px;
  right: -50px;
  z-index: 1;
  width: 350px;
  height: 350px;
  border-radius: 100%;
  filter: blur(100px);
  background-color: var(--roxoClaro);

  animation: spinBlob 10s ease-in-out infinite;
}

.bolaP {
  position: fixed;
  display: block;
  left: -50px;
  top: 50vh;
  z-index: 1;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  filter: blur(100px);
  background-color: var(--roxoClaro);

  animation: spinBlob 10s ease-in-out 5s infinite;
}

@keyframes spinBlob {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(2);
  }

  100% {
    transform: scale(1);
  }
}

/* ANIMA MOCKUPS DO HERO */

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.elemento-flutuante {
  animation: float 5s ease-in-out infinite;
}

/* LINHA SEPARADORA DE SEÇÃO */

.linhaSeparadora {
  display: block;
  height: 1px;
  background: linear-gradient(
    to left,
    var(--roxoMedioAlpha) 0%,
    var(--roxoMuitoClaro) 50%,
    var(--roxoMedioAlpha) 100%
  );
  /* margin-top: 40px;
  margin-bottom: 40px; */
}

/* CABECALHO */

.cabecalho {
  position: relative;
  margin-top: 0px;
  width: 100%;
  min-height: 105px;
  background: linear-gradient(to bottom, var(--creme) 0%, var(--marrom) 100%);

  z-index: 999998;
}

.topo_cabecalho {
  position: relative;
  margin: 0px auto;
  min-height: 105px;
  width: 100%;
  z-index: 2;
}

.topo_cabecalho .container {
  min-height: 105px;
}

.topo_cabecalho .container .grid-10 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-height: 85px;
  margin-top: 10px;
}

.topo_cabecalho .container .grid-10 span:nth-child(1) {
  font-family: var(--FonteBold);
  font-size: 22px;
}

.topo_cabecalho .container .grid-10 span:nth-child(2) {
  margin-top: 10px;
  letter-spacing: 1px;
}

/* CONTADOR */

div.topo_cabecalho .container ul.contador {
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-flex;
  justify-content: center;
}

div.topo_cabecalho .container ul li.displayData {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  margin-left: 10px;
  margin-right: 10px;
}

div.topo_cabecalho .container ul li .valorData {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-family: var(--FonteBold);
  letter-spacing: 2px;
  text-align: center;
  border: 2px solid var(--branco);
  border-radius: 10px;
  height: 50px;
  width: 40px;
  padding: 30px;
}

div.topo_cabecalho .container ul li .legendaData {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-family: var(--FonteBold);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 10px;
}

/* HERO */

.hero {
  display: inline-block;
  position: relative;

  width: 100%;
  min-height: 80vh;
  margin-top: 0px; /*-156px;*/
  margin-bottom: 90px;

  z-index: 1;
}

.hero div.container {
  z-index: 2;
}

.hero div.container div img.logo_hero {
  position: relative;
  display: block;
  float: none;
  width: 182px;
  margin: 45px 0px 0px 0px;
}

.hero div.container div h1.titulo_hero {
  font-family: var(--FonteMedia), Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 40px;
  font-size: 37px;
  color: var(--branco);
  /*background: rgba(255,255,255,0.4);*/
  /*backdrop-filter: blur(3px);*/
  /*border: 1px solid rgba(255,255,255,0.1);*/
  padding: 0px;
  /*text-align: center;*/
  position: relative;
  display: inline-block;
  margin-top: 175px;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  max-width: 460px;
  z-index: 3;
}

.hero div.container div span.descricao_hero {
  position: relative;
  display: inline-flex;
  margin-bottom: 40px;
  font-family: var(--FonteNormal), Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20px;
  font-size: 16px;
  color: var(--branco);
  padding-right: 60px;
  text-align: left;
}

.hero div.dispositivos-hero img.iphone-hero {
  position: relative;
  display: block;
  width: 85%;

  margin-top: 270px;
  margin-left: -55px;

  z-index: 2;
}

.hero div.dispositivos-hero img.ipad-hero {
  position: relative;
  display: block;
  width: 160%;

  margin-top: -625px;
  margin-left: -50px;
  margin-bottom: 0px;

  z-index: 1;
}

/* BLOCO PORQUE */

section.porque {
  position: relative;
  display: inline-flex;
  width: 100%;
  z-index: 3;
  /* min-height: 665px; */
  height: 100vh; /* ocupa a altura da tela */
  margin-top: 20px; /* 20px; */
  margin-bottom: 50px;
}

.cards_porque {
  /* position: relative; */
  list-style: none;
  /* margin: 0; */
  /* padding: 0; */
  height: 100vh; /* ocupa a altura da tela */
  /* overflow: hidden; */
}

.cards_porque li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.titulo_porque,
.card_porque {
  min-height: 300px;
  display: flex;
  align-items: center;
  /* position: sticky; */
  z-index: 10;
}

.cards_porque .titulo_porque {
  z-index: 999;
}

.card_porque {
  border-radius: 15px;
  border: 1px solid var(--roxoClaro);
  margin: 0px 0px 30px 0px;
  justify-content: space-between;
  padding: 20px;
  /* background: linear-gradient(
    315deg,
    var(--roxoClaro) 0%,
    var(--roxoMedio) 100%
  ); */

  background: radial-gradient(
    circle at top,
    var(--roxoClaro) 0%,
    var(--roxoMedio) 50%
  );

  -webkit-box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
  -moz-box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
  box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
}

.card_porque span {
  margin: 10px;
}

.card_porque span.icone {
  width: 150px;
  height: 150px;
  /* border: 1px solid #fff; */
}

.card_porque span.subtitulo {
  width: 390px;

  font-family: var(--FonteMedia), Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 40px;
  font-size: 37px;
  color: var(--branco);
}

.card_porque span.descricao {
  width: 360px;
  font-size: 18px;
  font-weight: lighter;
}

.card_porque div.bullet {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  width: 15px;
  overflow: hidden;
}

.card_porque div.bullet span {
  font-size: 60px;
  font-family: var(--FonteMedia), Arial, sans-serif;
  text-align: center;
  color: var(--roxoClaro);
  margin: -30px 0px 0px 0px;
}

.card_porque div.bullet span.ativo {
  color: var(--verdeNeon);
}

.titulo_porque h2 {
  font-family: var(--FonteMedia), Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 40px;
  font-size: 37px;
  color: var(--branco);
  text-align: center;
  padding: 50px;
}

/* BLOCO DIFERENCIAIS */

section.diferentes {
  position: relative;
  display: inline-flex;
  width: 100%;
  z-index: 3;
  margin-top: 40px;
  margin-bottom: 20px;
}

section.diferentes div ul.diferentes_cards {
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  display: inline-flex;
}

section.diferentes div ul.diferentes_cards li.card {
  height: 300px;
  border: 1px solid var(--roxoClaro);
  border-radius: 15px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  backdrop-filter: blur(50px) opacity(60%);
  background: radial-gradient(
    circle at top,
    var(--roxoClaro) 0%,
    var(--roxoMedio) 50%
  );

  padding: 20px 20px;

  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;

  -webkit-box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
  -moz-box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
  box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
}

section.diferentes div ul.diferentes_cards li.card span.icone {
  width: 72px;
  height: 72px;
  /* border: 1px solid #fff; */
}

section.diferentes div ul.diferentes_cards li.card span.subtitulo {
  font-family: var(--FonteMedia);
  font-size: 24px;
  font-weight: 500;
  color: var(--branco);
}

section.diferentes div ul.diferentes_cards li.card span.descricao {
  font-size: 15px;
  font-weight: lighter;
  color: var(--branco);
}

section.diferentes div ul.diferentes_cards li.card:hover {
  -webkit-transform: scale(1.05); /* prefixo para browsers webkit */
  -moz-transform: scale(1.05); /* prefixo para browsers gecko */
  -o-transform: scale(1.05); /* prefixo para opera */
  transform: scale(1.05);
}

section.diferentes div ul.diferentes_cards:hover li.card:not(:hover) {
  opacity: 0.3;
  filter: grayscale(1);
}

section.diferentes div a.btn {
  display: table;
  margin: 30px auto;
}

/* 🔹 Texto */
section.diferentes div a.btn span {
  top: 2px;
}

/* BLOCO 4 ETAPAS */

section.etapas {
  position: relative;
  display: inline-flex;
  width: 100%;
  z-index: 3;
  margin-top: 40px;
  margin-bottom: 40px;
  min-height: 250px;
}

section.etapas .container {
  display: flex;
  align-items: center;
}

section.etapas h2.titulo_secao {
  text-align: right;
  max-width: 330px;
  margin-left: 0px;
}

section.etapas ul li.etapa {
  border: 1px solid var(--roxoClaro);
  border-radius: 190px 50px 50px 190px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-around;

  background: linear-gradient(
    315deg,
    var(--roxoClaro) 0%,
    var(--roxoMedio) 50%
  );

  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;

  -webkit-box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
  -moz-box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
  box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
}

section.etapas ul li.etapa:nth-child(1) {
  position: "sticky";
  /* margin-top: -60px; */
}

section.etapas ul li.etapa span.numeroEtapa {
  font-family: var(--FonteMedia), Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 40px;
  font-size: 230px;
  color: var(--branco);
  text-align: center;
  padding: 0px 20px 0px 0px;
}
section.etapas ul li.etapa div.textoEtapa {
  display: flex;
  flex-direction: column;
  padding-right: 10px;
}
section.etapas ul li.etapa div span.tituloEtapa {
  font-family: var(--FonteMedia), Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  /* line-height: 40px; */
  font-size: 25px;
  color: var(--branco);
  margin-bottom: 10px;
}

section.etapas ul li.etapa div span.descricaoEtapa {
  font-size: 15px;
  font-weight: lighter;
  color: var(--branco);
}

/* BLOCO DÚVIDAS FREQUENTES */

section.duvidas {
  position: relative;
  display: inline-flex;
  width: 100%;
  z-index: 3;
  margin-top: 40px;
  margin-bottom: 40px;
  min-height: 250px;
}

section.duvidas div.container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

section.duvidas ul.accordion {
  list-style: none;
  /* width: 100%; */
  /* max-width: 600px; */
  padding: 0;
  /* margin: 0 auto; */
  margin-top: 40px;
}

section.duvidas ul.accordion li.duvida {
  background: linear-gradient(
    315deg,
    var(--roxoClaro) 0%,
    var(--roxoMedio) 50%
  );
  margin-bottom: 30px;
  border: 1px solid var(--roxoClaro);
  border-radius: 15px;
  overflow: hidden;
  /* transition: all 0.3s ease; */

  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;

  -webkit-box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
  -moz-box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
  box-shadow: 0 15px 25px 0 rgb(28, 1, 31, 0.85);
}

section.duvidas ul.accordion li.duvida:hover {
  transform: scale(1.05);
}

section.duvidas .accordion .question {
  position: relative;
  cursor: pointer;
  padding: 18px 50px 18px 20px;
  font-weight: 600;
  background: linear-gradient(
    315deg,
    var(--roxoClaro) 0%,
    var(--roxoMedio) 50%
  );

  font-family: var(--FonteMedia);
  font-size: 20px;
  font-weight: 500;
  color: var(--branco);

  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

section.duvidas .accordion .question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: var(--branco);
  transition: transform 0.3s ease;
}

section.duvidas .accordion li.active .question::after {
  content: "−";
  transform: rotate(180deg);
}

section.duvidas .accordion .answer {
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(
    315deg,
    var(--roxoClaro) 0%,
    var(--roxoMedio) 50%
  );
  font-size: 15px;
  font-weight: lighter;
  color: var(--branco);
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

section.duvidas .accordion li.active .answer {
  max-height: 300px; /* altura suficiente para o texto */
  padding: 15px 20px 20px;
}

/* Efeito de hover */
section.duvidas .accordion .question:hover {
  background: linear-gradient(
    315deg,
    var(--roxoClaro) 0%,
    var(--roxoMedio) 50%
  );
}

/* SECAO ULTIMO CTA */

section.converter {
  position: relative;
  display: inline-flex;
  width: 100%;
  z-index: 3;
  margin-top: 40px;
  margin-bottom: 40px;
  min-height: 180px;
}

section.converter div.container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
section.converter div.container div {
  text-align: center;
}
section.converter div.container div:nth-child(2) {
  margin-top: 20px;
  margin-bottom: 30px;
  /* padding: 0px 150px; */
}

/* RODAPE */

.rodape {
  margin-bottom: 0px;
  width: 100%;
  background: var(--azulEscuro);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.barra_rodape_inferior {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 50px;
  z-index: 2;
}

p.copyright {
  position: relative;
  display: block;
  font-size: 10px;
  font-weight: bold;
  font-family: var(--FonteNormal), Arial, sans-serif;
  letter-spacing: 0.1em;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--branco);
  margin-top: 20px;
  clear: both;
}

a.lnk_rodape {
  position: relative;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  font-family: var(--FonteNormal), Arial, sans-serif;
  letter-spacing: 0.1em;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--branco);
  margin-top: 20px;
  clear: both;
  margin-left: 10px;
  margin-right: 10px;
}

img.rxo {
  display: block;
  position: relative;
  margin: 20px 0px 10px 0px;
  float: right;
}

div.botao_flutuante {
  position: fixed;
  display: block;
  z-index: 999998;
}

a.botao_whats {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-sizing: border-box;

  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 999998;
}
