:root {
  --blue-light_01: #50a5ff;
  --blue-light_02: #2c79ca;

  --blue-background-01: #00091c;

  --text-yellow-01: #ffdf80;
  --text-yellow-02: #ffbb44;

  --text-white-01: #ffffff;
  --text-white-02: #eeeeee;

  --text-grey-01: #cccccc;

  --text_color: #ededed;
  --white_color: #ededed;

  --text-yellow-03: #4c4120;
}

html,
body {
  overflow-x: hidden;
}

main {
  background: var(--blue-background-01);
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus {
  outline: 0;
  /* border: 0; */
  box-shadow: none;
}

a {
  color: var(--text-white-01);
  text-decoration: none !important;
}

/*===============================*/
/*        Scroll Lateral         */
/* Chrome, Edge e Safari */
body::-webkit-scrollbar {
  width: 5px;
  /*largura da barra*/
}

body::-webkit-scrollbar-track {
  background: #1c1c1c;
  /*cor do fundo*/
}

body::-webkit-scrollbar-thumb {
  background-color: #e7f2ff;
  /*cor do controle do scroll*/
  border-radius: 5px;
  /*arredondamento*/
  border: 0px solid #000000;
  /*borda*/
}

/* Firefox */
@-moz-document url-prefix() {
  * {
    scrollbar-width: 15px;
    scrollbar-color: var(--orange-50) /*cor do controle do scroll*/ #000000;
    /*cor do fundo*/
    -moz-appearance: scrollbar;
  }
}

.border-gradient-blue {
  display: block;
  position: relative;
  border-bottom: 3px solid;
  border-image: linear-gradient(
      90deg,
      transparent,
      #7ccfff,
      #2664b6,
      transparent
    )
    1;
  border-left: 0px;
  border-right: 0px;
}

.border-gradient-blue::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  border-bottom: 3px solid;
  border-image: linear-gradient(
      90deg,
      transparent,
      #7ccfff,
      #2664b6,
      transparent
    )
    1;
  border-left: 0px;
  border-right: 0px;
  filter: blur(3px) brightness(1.5);
}

.btn-gradient {
  color: var(--white_color);
  font-weight: bold;
  font-size: 18px;
  padding: 20px 30px;
  animation: 4s infinite textura;
  background-size: 200% 200%;
  transition: all 0.8s;
  border-radius: 0px;
  max-width: 480px;
  background: transparent;
}

.btn-gradient.blue {
  background-color: var(--blue-light_01);
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  fill: var(--text-white-01);
  color: var(--text-white-01);
  border-style: solid;
  padding: 20px 40px 20px 40px;
  background-image: linear-gradient(
    to right,
    #1c66b4,
    var(--blue-light_01),
    #1c66b4
  );
  border-radius: 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border: 2px solid #00c3ff !important;
  box-shadow: 0px 5px 35px -5px #00aeffbf;
}

.btn-gradient.blue:hover::before,
.btn-gradient.yellow:hover::before {
  animation: brilho 0.8s linear;
}

.btn-gradient.yellow {
  background-color: transparent;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  fill: var(--text-yellow-01);
  color: var(--text-yellow-01);
  padding: 10px 30px 10px 30px;
  border-radius: 100px;
}

.btn-gradient.yellow {
  border: 2px solid var(--text-yellow-01) !important;
}

.btn-gradient.yellow:hover,
.btn-gradient.yellow:focus {
  background: var(--text-yellow-01);
  color: var(--blue-background-01);
}

.btn-gradient.green {
  background-color: rgb(90, 199, 90);
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  fill: var(--text-white-01);
  color: var(--text-white-01);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #ffffff54;
  border-radius: 20px 20px 20px 20px;
  padding: 20px 40px 20px 40px;
}

@keyframes brilho {
  0% {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: 100%;
  }
}

.btn-gradient,
.btn-gradient:hover,
.btn-gradient:active,
.btn-gradient:visited,
.btn-gradient:focus {
  border-color: transparent !important;
}

.btn-gradient.blue:hover,
.btn-gradient.blue:focus {
  box-shadow: 0px 10px 55px -5px rgba(0, 174, 255, 0.75);
  filter: brightness(1.2);
  border: 2px solid #00c3ff !important;
}

.banner-header {
  display: block;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-header .banner-shadow {
  padding-top: 100px;
  background-image: linear-gradient(
    to top,
    #000619,
    transparent,
    transparent,
    transparent,
    transparent
  );
  position: relative;
  min-height: 700px;
}

.banner-header .banner-shadow .infos {
  display: flex;
  justify-content: center;
  align-items: initial;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.banner-header .banner-shadow .infos .border-gradient-blue {
  width: 100%;
  max-width: 500px;
  border-image: linear-gradient(
      90deg,
      transparent,
      #7ccfff,
      #2664b6,
      #7ccfff,
      #2664b6,
      #7ccfff,
      #2664b6,
      #2664b6,
      transparent,
      transparent
    )
    1;
}

.banner-header .banner-shadow .infos .title {
  font-family: "Merriweather", serif;
  color: var(--text-white-01);
  font-weight: 600;
  font-size: 38px;
  max-width: 500px;
  z-index: 33;
  position: relative;
}

.banner-header .banner-shadow .infos .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 450px;
  z-index: 35;
  position: relative;
}

.banner-header .banner-shadow .infos .logo img {
  width: 100%;
  display: block;
  margin-left: -30px;
}

.banner-header .banner-shadow .infos .logo-title {
  font-family: "Ubuntu", serif;
  color: var(--text-white-01);
  font-weight: bold;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 800;
  text-align: left;
  background-image: linear-gradient(
    to right bottom,
    rgb(255, 228, 152),
    #ffaf37
  );
  width: fit-content;
  padding: 0px 10px;
  z-index: 15;
  border-radius: 5px;
  color: #000000;
}

.banner-header .banner-shadow .infos .logo-description {
  display: block;
  font-family: "Merriweather", serif;
  color: var(--text-white-01);
  font-weight: 300;
  font-size: 38px;
  background-color: white;
  background-image: linear-gradient(45deg, var(--text-white-01), #ffdf87);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 33;
}

.banner-header .banner-shadow .infos .detail {
  max-width: 500px;
  font-family: "Merriweather", serif;
}

.banner-header .banner-shadow .infos .description {
  max-width: 480px;
  color: var(--white_color);
  font-size: 18px;
  font-weight: 200;
  font-family: "Poppins", serif;
  z-index: 32;
}

.banner-header .banner-shadow .infos .cta {
  margin-top: 15px;
  max-width: 480px;
  width: 100%;
  display: flex;
  justify-content: left;
  z-index: 31;
}

.banner-header .banner-shadow .professor-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  margin-left: -50px;
  background-image: linear-gradient(
    to top,
    #000619,
    #00000000,
    #00000000,
    #00000000,
    #00000000,
    #00000000
  );
}

.banner-header .banner-shadow .professor-image img {
  position: relative;
  display: block;
  width: auto;
  height: calc(100% + 50px);
}

.banner-header .banner-shadow .shadow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-image: linear-gradient(
    to top,
    #000619,
    #00000000,
    #00000000,
    #00000000
  );
  top: 1px;
  left: 0;
  z-index: 5;
}

.banner-header .banner-shadow .light-border {
  width: 100%;
  height: 25px;
  display: flex;
  justify-content: left;
  align-items: center;
}

.banner-sistema {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-sistema .banner-shadow {
  position: relative;
  padding: 75px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
    to bottom,
    #000619,
    transparent,
    transparent,
    #000619
  );
}

.banner-sistema .banner-shadow .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.banner-sistema .banner-shadow .content::before {
  content: "";
  position: absolute;
  background-color: #00aeffb0;
  width: 300px;
  height: 500px;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  mix-blend-mode: screen;
  filter: blur(200px);
  pointer-events: none;
  z-index: 5;
  animation: glitch 3s infinite ease-in-out;
}

.banner-sistema .banner-shadow .content .title {
  font-family: "Merriweather", serif;
  color: var(--text-white-01);
  font-weight: 600;
  font-size: 38px;
  max-width: 500px;
}

.banner-sistema .banner-shadow .content .description {
  max-width: 405px;
  color: var(--white_color);
  font-size: 24px;
  font-weight: 200;
  font-family: "Poppins", serif;
}

.banner-sistema .banner-shadow .content .highlight {
  max-width: 500px;
  font-family: "Merriweather", serif;
  display: block;
  color: var(--text-yellow-01);
  font-size: 38px;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-yellow-02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  line-height: 45px;
}

.banner-sistema .banner-shadow .content .cta {
  margin-top: 15px;
  max-width: 480px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.banner-sistema .banner-shadow .content .inner {
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.banner-sistema .banner-shadow .content .circle {
  position: absolute;
  max-width: 100%;
  max-height: 700px;
  margin-top: -50px;
  z-index: 1;
}

.banner-sistema .banner-shadow .light-effect {
  overflow: hidden;
  position: absolute;
  width: calc(100%);
  height: 100%;
  top: calc(0px);
  left: calc(0px);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  /* animation: light-animation 4s infinite ease-in-out; */
}

.banner-sistema .banner-shadow .light-effect img {
  filter: blur(3px);
  max-height: 800px;
}

@keyframes light-animation {
  0% {
    transform: translateY(-2rem);
    filter: blur(35px);
  }

  50% {
    transform: translateY(0rem);
    filter: blur(2px);
  }

  100% {
    transform: translateY(-2rem);
    filter: blur(35px);
  }
}

.sistemas {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sistemas .banner-shadow {
  position: relative;
  min-height: 700px;
  padding: 100px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
    to top,
    #000619,
    transparent,
    transparent,
    #000619
  );
}

.sistemas .banner-shadow .header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.sistemas .banner-shadow .header .title {
  font-size: 42px;
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-white-01),
    var(--text-yellow-01)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  line-height: 50px;
  z-index: 50;
}

.sistemas .banner-shadow .header .title span {
  position: relative;
  display: block;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-yellow-02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.sistemas .banner-shadow .header .title span::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0%;
  display: inline-block;
  width: 100%;
  /* margin-left: -11px; */
  background-image: radial-gradient(
    at top center,
    var(--text-yellow-01) 0,
    var(--text-yellow-02) 100%
  );
  height: 4px;
  border-radius: 10px;
  z-index: 22;
}

.sistemas .banner-shadow .header .description {
  max-width: 550px;
  color: var(--text-white-01);
  font-size: 24px;
  font-weight: 200;
  font-family: "Poppins", serif;
  margin-top: 20px;
  padding: 10px;
  z-index: 50;
}

.sistemas .banner-shadow .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
  padding: 25px;
  padding-top: 100px;
}
.sistemas .banner-shadow .content .list-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  color: var(--text-white-01);
  max-width: 500px;
  margin-left: 50%;
  border: 1px solid #00c3ff27;
  border-radius: 15px;
  box-shadow: 0px 5px 55px 10px #ffffff21;
  z-index: 50;
}

.sistemas .banner-shadow .content .list-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sistemas .banner-shadow .content .list-box ul li {
  position: relative;
  font-size: 22px;
  font-family: "Poppins", serif;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-white-01),
    var(--text-grey-01)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
  text-align: left;
  padding-left: 20px;
}

.sistemas .banner-shadow .content .list-box ul li::before {
  content: "";
  position: absolute;
  /* counter-increment: boxcount; */
  top: 12px;
  left: 0;
  transform: translateX(-50%);
  outline: 0.35px solid var(--blue-light_01);
  border-radius: 31.5px;
  background: var(--blue-light_01);
  outline-offset: 3px;
  width: 7px;
  height: 7px;
  color: var(--text-white-01);
}

.sistemas .banner-shadow .content .subtitle {
  font-size: 36px;
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-white-01),
    var(--text-yellow-01)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  max-width: 450px;
  line-height: 50px;
  margin-top: 35px;
  margin-bottom: 35px;
  text-align: center;
  padding: 10px;
  z-index: 50;
}

.sistemas .banner-shadow .content .list-box.left {
  margin-left: 0;
  margin-right: 50%;
}

.sistemas .banner-shadow .content .list-box.three {
  font-size: 32px;
  font-family: "Merriweather", serif;
  color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-white-01),
    var(--text-yellow-01)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-align: left;
}

.sistemas .banner-shadow .content .list-box.three .highlight {
  display: block;
  background-image: linear-gradient(
    to right bottom,
    var(--blue-light_01),
    #4365aa
  );
  width: fit-content;
  padding: 3px 10px;
  z-index: 15;
  border-radius: 5px;
  color: white;
  -webkit-text-fill-color: #ffffff;
  margin-top: 10px;
  font-weight: 900;
}

.sistemas .banner-shadow .content .conclusion {
  max-width: 550px;
  font-family: "Merriweather", serif;
  display: block;
  color: var(--text-yellow-01);
  font-size: 32px;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-yellow-02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  line-height: 45px;
  text-align: center;
  margin-top: 50px;
  z-index: 50;
}

.border-gradient-blue-full {
  display: block;
  position: relative;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #2664b6, #7ccfff, #7ccfff, #2664b6) 1;
  border-left: 0px;
  border-right: 0px;
}

.banner-criar {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-criar .banner-shadow {
  position: relative;
  padding: 25px 0 150px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
    to bottom,
    #000619,
    transparent,
    transparent,
    #000619
  );
}

.banner-criar .banner-shadow .header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.banner-criar .banner-shadow .header .title {
  font-size: 42px;
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-yellow-02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  line-height: 50px;
}

.banner-criar .banner-shadow .header .description {
  max-width: 700px;
  color: var(--text-white-01);
  font-size: 24px;
  font-weight: 200;
  font-family: "Poppins", serif;
  margin-top: 20px;
  padding: 10px;
}

.banner-criar .banner-shadow .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}

.banner-criar .banner-shadow .content img {
  max-width: 100%;
}

.banner-criar .banner-shadow .conclusion {
  font-size: 32px;
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-white-01),
    var(--text-yellow-01)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  line-height: 50px;
  margin-top: 35px;
  text-align: center;
  padding: 10px;
}

.banner-criar .banner-shadow .conclusion b {
  display: block;
  font-size: 34px;
  font-weight: 800;
}

.banner-fundamentos {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-fundamentos .banner-shadow {
  position: relative;
  padding: 150px 0 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-fundamentos .banner-shadow .header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 70px;
}

.banner-fundamentos .banner-shadow .header .title {
  font-size: 40px;
  font-family: "Merriweather", serif;
  color: var(--blue-light_02);
  background-color: var(--blue-light_02);
  background-image: linear-gradient(
    45deg,
    var(--blue-light_01),
    var(--blue-light_02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  max-width: 700px;
  line-height: 50px;
}

.banner-fundamentos .banner-shadow .container {
  z-index: 30;
}

.banner-fundamentos .banner-shadow .content .row {
  counter-reset: boxcount;
}

.banner-fundamentos .banner-shadow .content .box {
  border-radius: 15px;
  border: 0.5px solid var(--Gradient, var(--blue-light_01));
  padding: 10px 20px;
  color: var(--blue-light_01);
  text-align: center;
  font-family: "Merriweather", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.banner-fundamentos .banner-shadow .content .box::before {
  content: "" counter(boxcount);
  position: absolute;
  counter-increment: boxcount;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  outline: 0.35px solid var(--blue-light_01);
  border-radius: 31.5px;
  background: var(--blue-light_01);
  outline-offset: 4px;
  padding: 10px 10px;
  width: 45px;
  height: 45px;
  color: var(--text-white-01);
  line-height: 25px;
}

.banner-fundamentos .banner-shadow .content .box .text {
  font-size: 24px;
  font-family: "Merriweather", serif;
  color: var(--blue-light_02);
  background-color: var(--blue-light_02);
  background-image: linear-gradient(
    45deg,
    var(--blue-light_01),
    var(--blue-light_02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.banner-fundamentos .banner-shadow .light-effect {
  overflow: hidden;
  position: absolute;
  width: calc(100%);
  height: 100%;
  top: calc(0px);
  left: calc(0px);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  /* animation: light-animation 4s infinite ease-in-out; */
}

.banner-fundamentos .banner-shadow .light-effect img {
  filter: blur(3px);
  max-height: 100%;
}

.banner-fundamentos .banner-shadow .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.key {
  position: relative;
  height: 0;
}

.key img {
  position: absolute;
  height: 300px;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  top: -120px;
}

.banner-para-que {
  display: block;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.banner-para-que .banner-shadow {
  position: relative;
  padding: 50px 0 50px 0;
  background-image: linear-gradient(to bottom, #1f1f1f28, #0e0e0e);
}

/* .banner-para-que .banner-shadow .row {
  align-items: stretch;
  min-height: 100vh;
} */
/* 
.banner-para-que .banner-shadow .col-md-6.hv-100 {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
} */

.banner-para-que .banner-shadow .header.sticky {
  position: sticky;
  top: 50px;
  z-index: 10;
}

.banner-para-que .banner-shadow .header .text {
  font-size: 56px;
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-yellow-02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.banner-para-que .banner-shadow .right-content {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.banner-para-que .banner-shadow .item {
  position: relative;
  padding: 30px;
  border-radius: 15px;
  border: 0.5px solid var(--Gradient, var(--text-yellow-01));
  padding: 15px 25px;
  color: var(--text-yellow-01);
  text-align: left;
  font-family: "Merriweather", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  min-height: 75px;
  display: flex;
  justify-content: left;
  align-items: center;
  width: -webkit-fill-available;
}

/* .banner-para-que .banner-shadow .item::after {
    content: "";
    width: 5px;
    height: 60%;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--text-yellow-01);
    z-index: 3;
    box-shadow: 0px 9px 27.1px 0px var(--text-yellow-01);
    transform: translateY(-50%);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
} */
.banner-para-que .banner-shadow .item .title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-para-que .banner-shadow .item .title i {
  font-size: 15px;
  padding: 5px;
  border: 1px solid var(--text-yellow-01);
  border-radius: 5px;
  background: var(--text-yellow-01);
  color: var(--blue-background-01);
  margin-right: 15px;
  box-shadow: 0px 0px 27.1px -5px var(--text-yellow-01);
}

.banner-para-que .banner-shadow .cta {
  margin-top: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-trilhas {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-trilhas .banner-shadow {
  position: relative;
  padding: 75px 0 75px 0;
  border: 0.5px solid var(--Gradient, var(--text-yellow-01));
  background-image: radial-gradient(
    circle at top center,
    /* posição do centro do gradiente */ #ffc9004d 0%,
    /* amarelo forte no centro */ #ffc8001a 30%,
    /* amarelo mais fraco */ rgba(0, 0, 0, 0.8) 100% /* escurece no final */
  );
  border-left: none;
  border-right: none;
}

.banner-trilhas .banner-shadow::after {
  content: "";
  width: 60%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  background: var(--text-yellow-01);
  z-index: 3;
  box-shadow: 0px 9px 27.1px 0px var(--text-yellow-01);
  transform: translateX(-50%);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.banner-trilhas .banner-shadow .content {
  position: relative;
  width: 100%;
  padding: 30px;
}

/* .banner-trilhas .banner-shadow .content::after {
  content: "";
  width: 60%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  background: var(--text-yellow-01);
  z-index: 3;
  box-shadow: 0px 9px 27.1px 0px var(--text-yellow-01);
  transform: translateX(-50%);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
} */

.banner-trilhas .banner-shadow .content .tree {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.banner-trilhas .banner-shadow .content .tree img {
  max-width: 350px;
}

.banner-trilhas .banner-shadow .content .title {
  font-family: "Merriweather", serif;
  color: var(--text-white-01);
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-yellow-02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 40px;
}

.banner-trilhas .banner-shadow .content .description {
  color: var(--white_color);
  font-size: 20px;
  font-weight: 200;
  font-family: "Poppins", serif;
  margin-top: 20px;
}

.banner-trilhas .banner-shadow .content .description b {
  font-weight: 700;
}

.banner-trilhas .banner-shadow .content .highlight {
  font-family: "Merriweather", serif;
  display: block;
  color: var(--text-yellow-01);
  font-size: 24px;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-white-01)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  line-height: 45px;
}

.banner-trilhas .banner-shadow .content .highlight b {
  position: relative;
  display: block;
  background: linear-gradient(
    100deg,
    var(--text-yellow-01),
    var(--text-yellow-02)
  );
  padding: 5px 14px;
  font-weight: 900;
  width: fit-content;
  border-radius: 5px;
  color: var(--blue-background-01);
  -webkit-text-fill-color: var(--blue-background-01);
  font-family: "Merriweather", serif;
}

.banner-trilhas .banner-shadow .content .cta {
  margin-top: 15px;
  max-width: 480px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.banner-trilhas .banner-shadow .content .inner {
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  margin-top: 10px;
}

.banner-trilhas .banner-shadow .trilha .box {
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 300px;
  padding: 15px 25px;
  border-radius: 15px;
  border: 0.5px solid var(--Gradient, #ffdf803d);
}

.banner-trilhas .banner-shadow .trilha span.title {
  font-family: "Merriweather", serif;
  display: block;
  color: var(--text-yellow-01);
  font-size: 30px;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-white-01)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  line-height: 45px;
}

.banner-trilhas .banner-shadow .trilha p {
  color: var(--text-white-01);
  font-size: 18px;
  font-weight: 300;
}

.banner-trilhas .banner-shadow .trilha .mini-box {
  background: #ffdf803d;
  border-radius: 15px;

  font-family: "Merriweather", serif;
  display: block;
  color: var(--text-yellow-01);
  font-size: 14px;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-white-01)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 7px;
  min-height: 65px;
  cursor: pointer;
  transition: 0.5s ease all;
  opacity: 0.7;
}

.banner-trilhas .banner-shadow .trilha .mini-box:hover {
  filter: brightness(1.2);
  opacity: 1;
}

.banner-trilhas .banner-shadow .trilha .slick-slide.is-active .mini-box {
  filter: brightness(1.2);
  opacity: 1;
}

.banner-trilhas .banner-shadow .trilha .mini-box b {
  border-radius: 100px;
  padding: 1px 5px;
  border: 1px solid var(--text-yellow-01);
}

.banner-trilhas .slick-prev:before,
.banner-trilhas .slick-next:before {
  color: var(--text-yellow-01);
}

.banner-trilhas .slick-slide {
  padding: 20px 7px !important;
}

.banner-trilhas .slick-dots li button:before {
  color: var(--text-yellow-01);
  font-size: 50px;
  font-family: Arial, Helvetica, sans-serif;
}

.banner-trilhas .slick-dots li.slick-active button:before {
  color: var(--text-yellow-01);
}

.banner-trilhas .slick-list.draggable {
  height: fit-content !important;
}

.banner-blindagem {
  display: block;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.banner-blindagem .banner-shadow {
  position: relative;
  padding: 50px 0 50px 0;
  background-image: linear-gradient(to bottom, #0e0e0e, #0e0e0e);
}

.banner-blindagem .banner-shadow .content .title {
  font-size: 28px;
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-yellow-02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin-bottom: 20px;
}

.banner-blindagem .banner-shadow .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Merriweather", serif;
  display: block;
  color: var(--text-white-01);
  font-size: 19px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}

.banner-blindagem .banner-shadow .devices {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.banner-blindagem .banner-shadow .content ul li {
  border-bottom: 1px solid #ffdf8033;
  padding-bottom: 10px;
  width: 100%;
}

.banner-blindagem .banner-shadow img {
  width: 100%;
  max-width: 650px;
}

.banner-blindagem .banner-shadow .content ul li span {
  font-weight: 900;
  font-family: "Merriweather", serif;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-yellow-02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guarantee-icon {
  position: relative;
  height: 0;
}

.guarantee-icon img {
  position: absolute;
  height: 150px;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  top: -75px;
}

.guarantee {
  display: block;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 55;
}

.guarantee .banner-shadow {
  position: relative;
  padding: 100px 0 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fcf5dd;
}

.guarantee .banner-shadow .text {
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins";
  color: #656565;
}

.cart {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cart .banner-shadow {
  position: relative;
  padding: 75px 0 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 0.5px solid var(--Gradient, var(--text-yellow-01));
}

.cart .banner-shadow::after {
  content: "";
  width: 60%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  background: var(--text-yellow-01);
  z-index: 3;
  box-shadow: 0px 9px 27.1px 0px var(--text-yellow-01);
  transform: translateX(-50%);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.cart .banner-shadow .header .title {
  font-size: 42px;
  font-family: "Merriweather", serif;
  color: var(--blue-light_02);
  background-color: var(--blue-light_02);
  background-image: linear-gradient(
    45deg,
    var(--blue-light_01),
    var(--blue-light_02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  max-width: 700px;
  line-height: 50px;
  z-index: 40;
}

.cart .banner-shadow .light-effect {
  overflow: hidden;
  position: absolute;
  width: calc(100%);
  height: 100%;
  top: calc(0px);
  left: calc(0px);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  /* animation: light-animation 4s infinite ease-in-out; */
}

.cart .banner-shadow .light-effect img {
  filter: blur(3px);
  max-height: 100%;
}

.cart .banner-shadow .prices {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 500px;
  margin-left: auto;
  z-index: 40;
  position: relative;
}

.cart .banner-shadow .prices .old-value {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: auto;
  margin-top: 0;
  font-family: "Merriweather", serif;
  color: #c2bca8;
}

.cart .banner-shadow .prices .old-value span {
  color: #db8989;
  text-decoration: line-through;
  font-weight: 800;
}

.cart .banner-shadow .prices .current-value {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #c2bca8;
  font-family: "Merriweather", serif;
  font-weight: 500;
  margin-top: -5px;
}

.cart .banner-shadow .prices .current-value span {
  color: #605430;
  background-color: #605430;
  background-image: linear-gradient(45deg, #cbab4b, #ffd386);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 120px;
  font-weight: 900;
  margin-top: -20px;
}

.cart .banner-shadow .signature {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 350px;
    max-width: 500px;
    margin-left: auto;
}

.cart .banner-shadow .signature .course-logo {
  width: 100%;
  text-align: center;
}

.cart .banner-shadow .signature .course-logo img {
  width: 100%;
  max-width: 350px;
}

.cart .banner-shadow .signature .cta button {
  min-width: 300px;
}

.cart .banner-shadow .signature .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  z-index: 450;
}

.cart .banner-shadow .signature .secure {
  margin-top: 20px;
  max-width: 250px;
}

.cart .banner-shadow .content .title {
  font-family: "Merriweather", serif;
  color: #c2bca8;
  background-color: white;
  background-image: linear-gradient(45deg, #cbab4b, #ffd386);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 46px;
  z-index: 41;
  position: relative;
}

.cart .banner-shadow .content .topic {
  position: relative;
  border-radius: 15px;
  color: #c2bca8;
  text-align: center;
  font-family: "Merriweather", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 15px;
  z-index: 42;
  position: relative;
  text-align: left;
}

.cart .banner-shadow .content .topic i {
  font-size: 15px;
  padding: 5px;
  border: 1px solid #c2bca8;
  border-radius: 5px;
  background: transparent;
  color: #c2bca8;
  margin-right: 15px;
}
.cart .banner-shadow .prices .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  max-width: 500px;
  margin-left: auto;
  z-index: 450;
}

.cart .banner-shadow .content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  padding-left: 20px;
}

.cart .secure {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart .secure img {
  filter: brightness(0.5);
  max-height: 35px;
}

.cart .banner-shadow .light-effect {
  overflow: hidden;
  position: absolute;
  width: calc(100%);
  height: 100%;
  top: calc(0px);
  left: calc(0px);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  /* animation: light-animation 4s infinite ease-in-out; */
}

.cart .banner-shadow .light-effect img {
  filter: blur(3px);
  max-height: 800px;
}

.neon-light {
  content: "";
  position: absolute;
  width: 50%;
  height: 70%;
  top: -05%;
  left: 50%;
  background: #ffe7974f;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  filter: blur(150px);
  z-index: 4;
  animation: glitch 3s infinite ease-in-out;
}


section.faq .accordion-button {
  padding: 15px 20px;
  background: transparent;
  color: #ffe9a7;
  transition: 0.5s ease all;
  border-radius: 100px !important;
  border: 1px solid #ffe9a7;
  text-align: center;
  font-family: "Merriweather", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
}

section.faq {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

section.faq .banner-shadow {
  width: 100%;
  position: relative;
  background: #0e0e0e;
      background-image: radial-gradient(circle at top center, /* posição do centro do gradiente */ #ffd90021 0%, /* amarelo forte no centro */ #ffd0000e 30%, /* amarelo mais fraco */ rgba(0, 0, 0, 0.514) 100% /* escurece no final */);
  backdrop-filter: blur(5px);
  padding: 50px 0;
}

section.faq .title {
  font-family: "Merriweather", sans-serif;
  font-size: 35px;
  color: #4c4c4c;
  text-align: center;
  background: linear-gradient(215deg, var(--text-white-01), var(--text-yellow-01), var(--text-yellow-02));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 20px;
      max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

section.faq .accordion-item {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 300;
  color: #e7e7e7;
  background: transparent;
  border: none;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

section.faq .accordion-button:focus {
  box-shadow: none;
  border-color: none;
}

section.faq .accordion-button:focus {
  box-shadow: none;
  border-color: none;
}

section.faq .accordion-button::after {
  transform: rotate(-90deg);
  filter: invert(1);
}

section.faq .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

section.faq .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}


.banner-professor {
  display: block;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-professor .banner-shadow {
  position: relative;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-professor .banner-shadow .content .title {
  font-family: "Merriweather", serif;
  color: var(--text-white-01);
  background-color: white;
  background-image: linear-gradient(
    45deg,
    var(--text-yellow-01),
    var(--text-yellow-02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 32px;
}

.banner-professor .banner-shadow .content .text {
  font-size: 20px;
  line-height: normal;
  font-weight: 200;
  color: var(--text-white-01);
}

.banner-professor .banner-shadow .content .text span {
  display: block;
  font-weight: 700;
  color: var(--text-yellow-01);
  margin-top: 20px;
  font-size: 20px;
  margin-bottom: 10px;
}



#trajectoryMarcello .modal-dialog {
  max-width: 700px;
}

#trajectoryMarcello .modal-content {
  background-color: #0000006b;
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 10px 25px;
}

#trajectoryMarcello .modal-header {
  border-bottom: none;
  color: #ffffff;
}

#trajectoryMarcello .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #ffffff;
  filter: invert(1);
}

.modal-open {
  padding-right: 0 !important;
}

.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: #cfcfcf; /* cor do scroll */
  border-radius: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background-color: transparent;
}
.btn-close:focus {
  box-shadow: none;
}

#trajectoryMarcello .item {
  display: flex;
  flex-direction: row;

  justify-content: left;
  align-items: center;

  padding-left: 20px;
  border-style: solid;
  border-width: 0 0 0 1px;
  border-color: #ffffff;
  color: #ffffff;
  font-weight: 500;

  margin-bottom: 15px;
}

#trajectoryMarcello .item i {
  display: none;
  font-size: 28px;
  color: #ffffff;
  padding-right: 25px;
}

#trajectoryMarcello .item span {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.96;
}

.bar-header {
  display: block;
  background-color: #000619;
  padding: 50px 0;
}

.elementor-widget-divider .elementor-divider {
  display: flex;
}

.elementor-widget-divider .elementor-divider__text {
  font-size: 15px;
  line-height: 1;
  max-width: 95%;
}

.elementor-widget-divider .elementor-divider__element {
  flex-shrink: 0;
  margin: 0 var(--divider-element-spacing);
}

.elementor-widget-divider .elementor-icon {
  font-size: var(--divider-icon-size);
}

.elementor-widget-divider .elementor-divider-separator {
  direction: ltr;
  display: flex;
  margin: 0;
}

.elementor-widget-divider--view-line_icon .elementor-divider-separator,
.elementor-widget-divider--view-line_text .elementor-divider-separator {
  align-items: center;
}

.bg-gradient-effect {
  width: 100%;
  height: 100%;
}

.bg-gradient-effect::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 70%;
  left: 50%;
  top: 0;
  background: #0073ff30;
  border-radius: 100%;
  transform: translate(-50%, 0%);
  filter: blur(150px);
  z-index: 4;
  animation: glitch 3s infinite ease-in-out;
}

@keyframes glitch {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

/* body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(at 20% 80%, #fff 1px, transparent 0px);
  background-size: 3px 3px;
  pointer-events: none !important;
  z-index: 9999;
  opacity: 0.05;
  mix-blend-mode: plus-lighter;
} */

.bg-light-border {
  background: #000619;
}

.bg-light-border .light-border {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.bg-light-border .light-border img {
  top: -50%;
  left: 50%;
  z-index: 99;
  position: absolute;
  transform: translateX(-50%);
}

footer {
    color: var(--text-white-01);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px 0;
    background: #0e0e0e;
    background-image: radial-gradient(circle at top center, /* posição do centro do gradiente */ #ffffff17 0%, /* amarelo forte no centro */ #ffffff0d 30%, /* amarelo mais fraco */ rgba(0, 0, 0, 0.514) 100% /* escurece no final */);
    border-top: 1px solid #ffffff1a;
}

footer h3 {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

footer h4 {
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}

footer .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .logo img {
  max-width: 150px;
}

footer .links {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .links li {
  text-align: center;
}

footer .links a {
  color: var(--text-white-01);
  font-weight: 300;
  font-size: 14px;
}

footer .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--text-white-01);
}

footer .social-title {
  margin-top: 15px;
}

footer .social-title h4 {
  font-size: 11px;
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: uppercase;
}

footer .social {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
  margin-top: 5px;
  min-width: 200px;
  max-width: 225px;
}

footer .social a {
  transition: 0.3s ease all;
}

footer .social a:hover {
  transform: translateY(-3px);
}

footer .social a .social-button {
  width: 40px;
  height: 40px;
  color: var(--text-white-01);
  border-radius: 50px;
}

footer .social a .social-button .icon-content {
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

footer .social a .social-button .icon-content i {
  transition: 0s;
  color: var(--text-white-01);
  text-align: center;
  font-size: 24px;
}

.float-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-image: linear-gradient(to right top, #095f29, #25d366);
  color: var(--white_color);
  border-radius: 50px;
  box-shadow: 0px 10px 5px rgba(0, 0, 0, 25%);
  z-index: 100;

  transition: 0.5s ease all;
}

.float-whatsapp .whatsapp-content:hover,
.float-whatsapp .whatsapp-content:focus {
  box-shadow: 0px 0px 30px rgb(0, 255, 204, 50%);
  cursor: pointer;
}

.float-whatsapp::after {
  content: "";
  width: 30px;
  height: 30px;

  border-radius: 100%;
  position: absolute;

  background-color: rgb(0, 255, 203, 12%);
  z-index: -5;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.float-whatsapp .whatsapp-content:hover::after,
.float-whatsapp .whatsapp-content:focus::after {
  animation: none;
  display: none;
}

.float-whatsapp .whatsapp-content {
  border-radius: 100%;

  transition: 0.5s ease all;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

.float-whatsapp .whatsapp-content .icon {
  transition: 0s;
  color: var(--white);

  text-align: center;
  font-size: 30px;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

#formCadastro {
  font-family: "Poppins", sans-serif;
}
#formCadastro .modal-header {
  border-bottom: none;
  color: #202020;
  margin-top: 15px;
}

#formCadastro .modal-content {
  background-color: #ffffffef;
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 10px 25px;
  border: 1px solid #ffdf804a;
}

#formCadastro .formulario {
  padding: 0 0 10px 0;
}

#formCadastro .formulario-hidden {
  display: none;
}

#formCadastro .formulario h4 {
  font-size: 18px;
  color: var(--white_color);
  font-weight: bold;

  text-shadow: 0px 0px 20px black;
  text-align: center;
  text-transform: uppercase;
}

#formCadastro .formulario h3 {
  font-size: 26px;
  color: #202020;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}

#formCadastro .formulario h3 span {
  display: block;
  color: var(--green_light_1);
  font-weight: 700;
}

#formCadastro .formulario input,
#formCadastro .formulario textarea {
  padding: 10px 10px;
  width: 100%;
  font-size: 16px;
  background: #ffffff;
  border: none;
  color: #101010;
  font-weight: 400;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

#formCadastro .formulario .iti {
  width: 100%;
}

#formCadastro .formulario .iti__country-list {
  z-index: 200 !important;
}

#formCadastro .formulario .iti__flag-box,
.iti__country-name {
  color: var(--dark);
}

#formCadastro .formulario .iti__selected-flag {
  height: 42px !important;
  border-bottom-left-radius: 10px;
}

#formCadastro .formulario .iti {
  width: 100%;
}

#formCadastro .formulario p {
  font-size: 18px;
  color: #101010;
  font-weight: 300;
  margin-bottom: -5px;
  text-transform: uppercase;
  background: #4c95e2;
  width: fit-content;
  padding: 0 5px;
  border-radius: 5px;
  font-weight: 700;
  color: var(--text-white-01);
  z-index: 10;
  position: relative;
}

#formCadastro .form-group {
  margin-bottom: 20px;
}

#formCadastro .formulario input:disabled,
#formCadastro .formulario textarea:disabled {
  opacity: 0.5;
}

#formCadastro .formulario textarea {
  height: 100px;
  resize: none;
}

#formCadastro .formulario .label-float {
  position: relative;
}

#formCadastro .formulario .label-float p {
  position: absolute;
  top: -15px;
  left: 10px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
  margin-bottom: -15px;
  background-image: linear-gradient(
    to right top,
    var(--green_dark_1),
    var(--green_light_1)
  );
  width: fit-content;
  padding: 3px 10px;
  z-index: 15;
  border-radius: 5px;
  color: var(--white);
  transition: 0.2s ease all;
  box-shadow: 0px 0px 30px -8px var(--green_light_1);
}

#formCadastro .formulario input:focus,
#formCadastro .formulario textarea:focus {
  box-shadow: 0px 5px 20px -8px var(--yellow_dark);
}

#formCadastro .formulario input:focus ~ p,
#formCadastro .formulario textarea:focus ~ p {
  top: -18px;
  box-shadow: 0px 5px 20px -5px var(--blue_light);
}

#formCadastro .formulario input#field_phone {
  padding-left: 50px;
}

#formCadastro .formulario label.error {
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: left;
  width: 100%;
}

#formCadastro .formulario button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

#formCadastro .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
}

#formCadastro .btn-close:focus {
  box-shadow: none;
}

#formCadastro .formulario .btn-form {
  padding: 20px;
  background: #4c95e2;
  color: var(--text-white-01);
  font-weight: 700;
  border-radius: 15px;
  border: none;
  transition: 0.5s ease all;
}

#formCadastro .formulario .btn-form:hover,
#formCadastro .formulario .btn-form:focus {
  filter: brightness(1.2);
}

.modal-backdrop {
  background-color: #00000096;
  backdrop-filter: blur(5px);
}

.modal-backdrop.show {
  opacity: 1;
}

/* Start custom CSS for html, class: .elementor-element-33f39da */
.scroll-bottom {
  opacity: 0;
  transition: 0.5s all;
  transform: translate3d(0, 80px, 0);
  filter: blur(15px);
}

.scroll-top {
  opacity: 0;
  transition: 0.5s all;
  transform: translate3d(0, -80px, 0);
  filter: blur(15px);
}

.scroll-left {
  opacity: 0;
  transition: 0.5s all;
  transform: translate3d(-30px, 0, 0);
}

.scroll-right {
  opacity: 0;
  transition: 0.5s all;
  transform: translate3d(30px, 0, 0);
}

.scroll-blur {
  transition: 0.5s all;
  filter: blur(15px);
  opacity: 0;
}

.ativo {
  opacity: 1;
  transition: 0.5s all;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.delay-01 {
  transition-delay: 0.1s;
}

.delay-02 {
  transition-delay: 0.2s;
}

.delay-03 {
  transition-delay: 0.3s;
}

.delay-04 {
  transition-delay: 0.4s;
}

.delay-05 {
  transition-delay: 0.5s;
}

.delay-06 {
  transition-delay: 0.6s;
}

.delay-07 {
  transition-delay: 0.7s;
}

.delay-08 {
  transition-delay: 0.8s;
}

.delay-09 {
  transition-delay: 0.9s;
}

.delay-10 {
  transition-delay: 1s;
}

@media only screen and (max-width: 1600px) {
  .banner-header .banner-shadow {
    padding-top: 100px;
    background-image: linear-gradient(
      to top,
      #000619,
      transparent,
      transparent,
      transparent,
      transparent
    );
    position: relative;
    min-height: 620px;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-header .banner-shadow .infos .logo {
    max-width: 300px;
  }

  .banner-header .banner-shadow .infos .title {
    font-weight: 600;
    font-size: 27px;
    max-width: 320px;
    margin-top: -10px;
  }

  .banner-header .banner-shadow .light-border {
    width: 300px;
  }

  .banner-header .banner-shadow .light-border img {
    width: 100%;
  }

  .banner-header .banner-shadow .infos .description {
    max-width: 410px;
    font-size: 17px;
  }

  .banner-header .banner-shadow .infos .cta {
    justify-content: start;
  }

  .btn-gradient.blue {
    font-size: 15px;
    padding: 20px 30px 20px 30px;
  }

  .banner-header .banner-shadow .professor-image img {
    height: calc(100%);
  }

  .banner-header .banner-shadow .infos {
    margin-top: 50px;
    align-items: left;
  }

  /* .banner-header {
    background-position: right 19% top -100px;
    background-size: calc(100vh + 100%);
  } */

  .banner-header .banner-shadow {
    padding-top: 50px;
    min-height: auto;
  }

  .banner-sistema .banner-shadow .content .title {
    font-size: 28px;
    max-width: none;
  }

  .banner-sistema .banner-shadow .content .description {
    font-size: 19px;
    max-width: 400px;
  }

  .banner-sistema .banner-shadow .content .highlight {
    max-width: none;
    font-size: 25px;
    line-height: normal;
  }

  .banner-sistema .banner-shadow {
    min-height: 500px;
  }

  .sistemas .banner-shadow .header .title span::after {
    display: none;
  }

  .bar-header {
    padding: 25px 0;
  }

  .sistemas .banner-shadow {
    min-height: auto;
    padding: 50px 0 0 0;
  }

  .sistemas .banner-shadow .header .title {
    font-size: 28px;
    line-height: normal;
  }

  .sistemas .banner-shadow .header .description {
    max-width: 500px;
    color: var(--text-white-01);
    font-size: 19px;
  }

  .sistemas .banner-shadow .content {
    gap: 15px;
    overflow: hidden;
    padding: 50px;
  }

  .sistemas .banner-shadow .content .list-box {
    padding: 20px 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .sistemas .banner-shadow .content .list-box ul li {
    font-size: 18px;
  }

  .sistemas .banner-shadow .content .list-box ul li::before {
    width: 5px;
    height: 5px;
  }

  .sistemas .banner-shadow .content .list-box.left {
    margin-left: auto;
    margin-right: auto;
  }

  .sistemas .banner-shadow .content .subtitle {
    font-size: 24px;
    line-height: normal;
  }

  .sistemas .banner-shadow .content .list-box.three {
    font-size: 21px;
    margin-top: 30px;
  }

  .sistemas .banner-shadow .content .conclusion {
    font-size: 24px;
    line-height: normal;
  }

  .bg-light-border .light-border img {
    width: 100%;
  }

  .banner-criar .banner-shadow .header .title {
    font-size: 24px;
    line-height: normal;
  }

  .banner-criar .banner-shadow .header .description {
    font-size: 18px;
  }

  .banner-criar .banner-shadow .conclusion {
    font-size: 24px;
    line-height: normal;
  }

  .banner-criar .banner-shadow .conclusion b {
    display: block;
    font-size: 24px;
    line-height: normal;
  }

  .banner-criar .banner-shadow {
    padding: 25px 0 100px 0;
  }

  .key img {
    max-width: 250px;
    height: auto;
    top: -75px;
  }

  .banner-fundamentos .banner-shadow .header .title {
    font-size: 24px;
    line-height: normal;
  }

  .banner-fundamentos .banner-shadow .content {
    margin-left: auto;
    margin-right: auto;
  }

  .banner-fundamentos .banner-shadow .content .box .text {
    font-size: 20px;
    line-height: normal;
  }

  .banner-fundamentos .banner-shadow .content .box {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-fundamentos .banner-shadow {
    padding: 100px 0 50px 0;
  }

  .banner-para-que {
    background-position: calc(0% - 120px) top;
  }

  .banner-para-que .banner-shadow .header .text {
    font-size: 42px;
  }

  .banner-para-que .banner-shadow .header,
  .banner-para-que .banner-shadow .right-content {
    padding: 15px;
  }

  .banner-para-que .banner-shadow .right-content {
    margin-top: 0;
  }

  .banner-para-que .banner-shadow .item {
    text-align: left;
    font-size: 20px;
  }

  .banner-blindagem .banner-shadow .content {
    padding: 5px;
  }
  .banner-blindagem .banner-shadow .content .title {
    font-size: 26px;
  }

  .banner-blindagem .banner-shadow .content ul {
    font-size: 16px;
  }

  .banner-trilhas .banner-shadow .content {
    padding: 10px;
  }

  .banner-trilhas .banner-shadow .content .title {
    font-size: 24px;
  }

  .banner-trilhas .banner-shadow .content .highlight {
    font-size: 20px;
    line-height: normal;
  }

  .banner-trilhas .banner-shadow .content .highlight b {
    margin-top: 10px;
  }

  .banner-trilhas .banner-shadow .content .description {
    font-size: 16px;
  }

  .banner-trilhas .banner-shadow .trilha span.title {
    font-size: 22px;
  }

  .banner-trilhas .banner-shadow .trilha p {
    font-size: 16px;
  }

  .banner-trilhas .banner-shadow .trilha .mini-box {
    font-size: 12px;
  }

  .banner-trilhas .banner-shadow .content .inner {
    padding: 10px;
  }

  .banner-professor {
    display: block;
    background-position: top left;
  }

  .banner-professor .banner-shadow {
    padding: 50px 0 50px 0;
  }

  .banner-professor .banner-shadow .content {
    padding: 15px;
  }

  .banner-professor .banner-shadow .content .title {
    font-size: 18px;
  }

  .banner-professor .banner-shadow .content .text {
    text-align: left;
    font-size: 16px;
  }

  .banner-professor .banner-shadow .content .text span {
    margin-top: 10px;
    font-size: 18px;
    margin-bottom: 5px;
  }

  .btn-gradient.yellow {
    font-size: 13px;
    padding: 5px 20px 5px 20px;
  }

  .banner-trilhas .banner-shadow {
    padding: 50px 0 50px 0;
  }

  .cart .banner-shadow {
    padding: 50px 0 50px 0;
  }

  .cart .banner-shadow .prices .old-value {
    font-size: 20px;
  }

  .cart .banner-shadow .content .title {
    font-size: 25px;
    text-align: left;
  }

  .cart .banner-shadow .content .topic {
    font-size: 18px;
  }

  .cart .banner-shadow .prices .current-value span {
    font-size: 70px;
  }

  .cart .banner-shadow .prices .current-value {
    font-size: 20px;
    margin-top: 0;
  }

  .cart .banner-shadow .prices {
    max-width: none;
  }

  section.faq .title {
    font-size: 26px;
  }

  section.faq .accordion-button {
    font-size: 17px;
    text-align: left;
  }

  section.faq .accordion-item {
    font-size: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-fundamentos .banner-shadow .header .title {
      max-width: 250px;
  }

  #formCadastro .formulario h3 {
    font-size: 22px;
  }

  #formCadastro .formulario p {
    font-size: 14px;
  }

  #formCadastro .formulario .btn-form {
    padding: 20px 10px;
    font-size: 14px;
  }

  .banner-header {
    background-position: top center;
  }

  .banner-header .banner-shadow {
    padding-top: 400px;
    background-image: linear-gradient(to top, #000619, transparent);
  }

  .banner-header .banner-shadow .infos {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner-header .banner-shadow .shadow-image {
    display: none;
  }

  .banner-header .banner-shadow .infos .title {
    font-size: 24px;
    max-width: 310px;
    text-align: center;
  }

  .banner-header .banner-shadow .infos .description {
    max-width: 410px;
    font-size: 15px;
    text-align: center;
  }

  .banner-header .banner-shadow .infos .cta {
    justify-content: center;
  }

  .banner-blindagem .banner-shadow {
    padding: 10px 0 50px 0;
  }

  .cart .banner-shadow .content {
    display: block;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
  }

  .cart .banner-shadow .content .topic {
    font-size: 17px;
    max-width: 290px;
  }

  .cart .banner-shadow .cta {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cart .banner-shadow .prices {
    margin-top: 30px;
  }

  .cart .banner-shadow {
    padding: 50px 0 110px 0;
  }

  .cart .banner-shadow .signature {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    min-height: auto;
  }

  .cart .banner-shadow .signature .course-logo img {
    max-width: 250px;
  }


  .sistemas .banner-shadow .content {
    padding: 50px 20px;
  }
}

@media only screen and (max-width: 325px) {
  .cart .banner-shadow .content {
    padding-left: 0px;
  }
}
