:root {
  --roxo-tema: #271e1e;
  --azul-tema: #015593;
  --azul-tema-apagado: #271e1e;
  --roxo-gradiente: linear-gradient(135deg, #9b33cf -2%, #7739e4 68%);
  --azul-arroxado-gradiente: linear-gradient(to right, #0089bd, var(--azul-tema));
  --cor-texto: #2a212e;
  --cor-verde-sucesso: #4be750;
  --cor-erro: #d91b1b;
  --corpo-espaco-comido: 8.5rem;
}

@font-face {
  font-family: 'Circular Std';
  src: url('/assets/fonts/CircularStd-Medium.eot');
  src: local('Circular Std Medium'), local('CircularStd-Medium'),
    url('/assets/fonts/CircularStd-Medium.eot?#iefix') format('embedded-opentype'),
    url('/assets/fonts/CircularStd-Medium.woff2') format('woff2'),
    url('/assets/fonts/CircularStd-Medium.woff') format('woff'),
    url('/assets/fonts/CircularStd-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std';
  src: url('/assets/fonts/CircularStd-Black.eot');
  src: local('Circular Std Black'), local('CircularStd-Black'),
    url('/assets/fonts/CircularStd-Black.eot?#iefix') format('embedded-opentype'),
    url('/assets/fonts/CircularStd-Black.woff2') format('woff2'),
    url('/assets/fonts/CircularStd-Black.woff') format('woff'),
    url('/assets/fonts/CircularStd-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* #region Comum*/
* {
  box-sizing: inherit;
}

a {
  text-decoration: none;
}

hr {
  opacity: 0.6;
  border-color: #dfe0e9;
}

b {
  font-weight: bold;
  color: var(--azul-tema);
}

html {
  box-sizing: border-box;
}

body {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  color: var(--cor-texto);
}

img {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

@supports (scroll-behavior: smooth) {
  html {
    scroll-behavior: smooth;
  }
}

/* #region Acessibilidade*/
@media (prefers-reduced-motion: reduce) {

  *,
  *::after,
  *::before {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

.screen-reader-text {
  border: 0;
  position: absolute !important;
  padding: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* #endregion */

.spinner::after,
.spinner::before {
  content: '';
  display: block;
  position: absolute;
  cursor: wait;
}

.spinner::before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.3);
}

.spinner::after {
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: var(--roxo-tema);
  animation: spinner .6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.mao-scroll {
  width: 50px;
  color: #192a3d;
  animation: hand 2.5s ease 0s infinite normal;
  margin: 1.5rem auto auto;
}

@keyframes hand {
  0% {
    transform: rotate(0deg) translateX(0) translateY(0) translateZ(0)
  }

  50% {
    transform: rotate(-15deg) translateX(-25px) translateY(10px) translateZ(0)
  }

  to {
    transform: rotate(0deg) translateX(0) translateY(0) translateZ(0)
  }
}

.btn {
  -webkit-appearance: none;
  appearance: none;
  background-color: #df2121;
  border: 0;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 5px;
  font-weight: bold;
  color: white;
  width: 100%;
  display: block;
  text-align: center;
}

.conter-conteudo {
  padding: 0 16px;
}

.separador {
  margin: 32px 0
}

.reticencias {
  display: flex;
  justify-content: center;
  margin: 1em auto;
}

.reticencias>* {
  width: 4px;
  height: 4px;
  background-color: white;
  margin: 0 3px;
  border-radius: 50%;
}

.circular {
  font-family: 'Circular Std';
  font-style: normal;
}

.grupo-titulos {
  display: inline-flex;
  flex-direction: column-reverse;
  align-content: center;
}

.titulo--fundo {
  position: relative;
  transform-style: preserve-3d;
}

.titulo-comum {
  font-size: calc(26 / 16 * 1rem);
  margin: 0.5em 0 0;
  font-weight: 900;
}

.titulo-comum--popup {
  font-size: calc(24 / 16 * 1rem);
  line-height: 1.08;
  margin-top: 0;
  font-weight: bold;
}

.titulo--fundo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5px;
  height: 1.6em;
  opacity: 0.1;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.subtitulo-comum {
  color: var(--azul-tema);
  font-size: calc(14 / 16 * 1rem);
  letter-spacing: 8.4px;
  text-transform: uppercase;
  margin: 0;
}

.com-fundo-roxo::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.1;
  transition: opacity .2s;
  background-color: var(--roxo-tema);
}

.as-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* #region Formulários*/
.formulario {
  position: relative;
}

.formulario__fieldset-reset {
  padding: 0;
  margin: 0;
  border: none;
  appearance: none;
}

.formulario__label,
.formulario__input {
  -webkit-appearance: none;
  appearance: none;
  display: block;
}

.formulario__label {
  margin-bottom: calc(12 / 16 * 1em);
  font-weight: bold;
  font-size: calc(12 / 16 * 1rem);
}

.formulario__input {
  background-color: #ececf2;
  border: solid 1px #f0ecf2;
  border-radius: 4px;
  width: 100%;
  font-size: calc(14 / 16 * 1rem);
  padding: calc(15 / 16 * 1em) calc(20 / 16 * 1em);
  margin-bottom: 15px;
  transition: border-color .2s, color .2s, background-color .2s;
}

.formulario__input:not(:placeholder-shown) {
  background-color: #FFF;
}

.formulario__input:not(:placeholder-shown):not(:focus):not(select):invalid {
  border-color: var(--cor-erro);
}

.formulario__input:not(:placeholder-shown):not(:focus):valid {
  border-color: var(--cor-verde-sucesso);
  background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018.828%2013.414%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%234be750%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M17.414%201.414l-11%2011-5-5%22%2F%3E%3C%2Fsvg%3E');
  background-size: 16px 11px;
  background-position: 98% center;
  background-repeat: no-repeat;
}

.formulario__input:focus {
  outline: none;
  background-color: #FFF;
  border-color: var(--azul-tema);
}

.formulario__checkboxes {
  padding: 0;
  border: 0;
  margin: 0 0 calc(12 / 16 * 1rem);
}

.checkboxes__embrulho {
  display: flex;
}

.checkboxes__embrulho--fill>* {
  flex: 1;
}

.checkboxes__checkbox input {
  opacity: 0;
  position: absolute;
}

.checkboxes__checkbox input:checked+label {
  background-color: var(--azul-tema);
  color: white;
}

.checkboxes__checkbox:first-child label {
  border-radius: 4px 0 0 4px;
}

.checkboxes__checkbox:not(:last-child) {
  margin-right: calc(1 / 16 * 1rem);
}

.checkboxes__checkbox:last-child label {
  border-radius: 0 4px 4px 0;
}

.checkboxes__checkbox label {
  font-size: calc(12 / 16 * 1rem);
  letter-spacing: 0.24px;
  color: var(--cor-texto);
  background-color: #f1f1f6;
  padding: calc(16 / 12 * 1em);
  display: block;
  text-transform: uppercase;
  transition: background-color .2s;
  text-align: center;
  cursor: pointer;
}

.fomulario__listatextual {
  position: relative;
}

.fomulario__listatextual[pronta] .formulario__areatexto {
  display: none;
}

.formulario__areatexto,
.listatextual__resultado {
  border-radius: 4px;
  min-height: 44px;
  width: 100%;
  font-size: calc(14 / 16 * 1rem);
}

.listatextual__resultado+p {
  margin-top: 0.25em;
  line-height: 1;
  font-size: 0.75rem;
}

.formulario__areatexto {
  border: 0;
  background-color: #f1f1f6;
  resize: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: calc(8 / 14 * 1em);
}

.listatextual__resultado {
  border: 1px solid var(--azul-tema);
}

.listatextual__resultado button[prompt] {
  background-color: rgba(217, 27, 27, 0.14);
  border-color: #d91b1b;
}

.listatextual__resultado button {
  background-color: rgba(37, 211, 235, 0.14);
  border: solid 1px var(--azul-tema);
  border-radius: 3px;
  margin: calc(4 / 14 * 1em);
  padding: calc(5 / 14 * 1em) calc(16 / 14 * 1em);
}

.formulario__range--maximo+.range__resultados {
  font-size: 1rem;
}

.formulario__range {
  height: 31px;
  margin: 0 0 25px;
  outline: none;
  padding: 0;
  width: 100%;
  height: 6px;
  background-color: var(--azul-tema-apagado);
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #473e4f), color-stop(100%, #51475a));
  background-image: -webkit-linear-gradient(#473e4f, #51475a);
  background-image: -moz-linear-gradient(#473e4f, #51475a);
  background-image: -o-linear-gradient(#473e4f, #51475a);
  background-image: linear-gradient(var(--roxo-tema), var(--roxo-tema));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  border-radius: 10px;
  cursor: pointer;
  -webkit-appearance: none;
}

.formulario__range.formulario__range--maximo::-webkit-slider-thumb {
  border-color: var(--roxo-tema);
}

.formulario__range.formulario__range--maximo::-moz-range-thumb {
  border-color: var(--roxo-tema);
}

.formulario__range::-webkit-slider-runnable-track {
  box-shadow: none;
  border: none;
  background: transparent;
  -webkit-appearance: none;
}

.formulario__range::-moz-range-track {
  box-shadow: none;
  border: none;
  background: transparent;
}

.formulario__range::-moz-focus-outer {
  border: 0;
}

.formulario__range::-webkit-slider-thumb {
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 100%;
  border: 1px solid var(--azul-tema);
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.1);
  -webkit-appearance: none;
}

.formulario__range::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border: 0;
  background: #fff;
  border: 1px solid var(--azul-tema);
  border-radius: 100%;
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.1);
}

.range__resultados {
  color: var(--azul-tema);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-size: calc(10 / 16 * 1rem);
  letter-spacing: calc(0.42 / 10 * 1em);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

/* #endregion Formulários*/

/* #endregion */

/* #region Capao*/

.capao {
  height: 100vh;
  height: -webkit-fill-available;
  display: flex;
  justify-content: flex-end;
  position: relative;
  flex-direction: column;
  padding-bottom: calc(var(--corpo-espaco-comido) + 25px);
}

.capao .as-bg {
  z-index: -1;
}

.capao .reticencias,
.capao svg,
.capao .capao__logo {
  position: relative;
}

.capao__logo {
  display: block;
  max-width: 624px;
  margin: 0 auto;
}

.capao__titulo {
  width: 85%;
  margin: 0 auto;
  height: auto;
}

.texto {
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.25;
}

/* #endregion */

/* #region Principal*/
.principal {
  background-color: white;
  border-radius: 25px 25px 0 0;
}

/* #region Motivos*/
.motivos {
  overflow: hidden;
  margin-top: calc(var(--corpo-espaco-comido) * -1);
}

.motivos__cabecalho {
  display: flex;
  margin-top: 1em;
  align-items: center;
}

.motivos__titulos {
  flex: 1;
  margin: 0 2.2em;
}

.motivos__titulo {
  color: var(--roxo-tema);
}

.motivos__titulo::before {
  background-color: var(--azul-tema-apagado);
  opacity: 0.05;
}

.motivos__lista {
  padding: 0;
  margin: 2em 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.motivos__motivo {
  font-size: calc(12 / 16 * 1rem);
  display: block;
  margin: 10px;
  padding: 25px;
  align-items: center;
  margin-bottom: 2em;
  line-height: 1.5;
  width: calc(50% - 20px);
  background-color: rgba(236, 236, 242, 0.4);
  border-radius: 5px;
}

.motivo__figura {
  margin: 0 2.5em 0 0;
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.motivo__figura::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 8px;
  background-color: #df2121;
  opacity: 0.1;
  transform: translateX(-15%);
  left: 0;
  bottom: 0;
  z-index: -1;
}

.motivo__figura svg {
  vertical-align: middle;
  display: inline-block;
}
.motivo__figura span {
  margin-left: 30px;
  display: inline-block;
  width: calc(100% - 60px);
  font-size: 16px;
  font-weight: bold;
  color: #271e1e;
  vertical-align: middle;
}

/* #endregion */

/* #region Cadastros*/
.cadastros__cabecalho {
  background-image: var(--azul-arroxado-gradiente);
  color: white;
  overflow: hidden;
  margin-bottom: 15px;
}

.formulario__resposta {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  width: 100%;
  background-color: white;
  min-height: 100%;
  padding: inherit;
  animation: mostraResultadoForm .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.resposta__titulo {
  font-size: calc(24 / 16 * 1rem);
  line-height: 1.08;
  font-weight: 900;
}

/* #endregion */

.descubra {
  display: block;
  width: 100%;
  background-image: url("/img/fundo.jpg");
  background-size: cover;
  background-position: center;
}

.descubra .conteudo {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  display: flex;
  padding: 30px 0;
}

.descubra .conteudo .info {
  display: block;
  padding-right: 25px;
  width: 50%;
}
.descubra .conteudo .info h2 {
  color: #fff;
}
.descubra .conteudo .info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.descubra .conteudo .info ul li {
  color: #fff;
  line-height: 1.5;
  font-size: 14px;
  margin: 30px 0;
}

.descubra .conteudo .imagem {
  display: flex;
  justify-content: center;
  padding-left: 25px;
  width: 50%;
  align-items: center;
}

/* #region Gokursos*/
.gokursos {
  margin: 2rem 0;
  overflow: hidden;
}

.gokursos__titulo,
.gokursos .texto a b,
.gokursos .texto a {
  color: var(--azul-tema);
}

.gokursos__titulo::before {
  background-color: #015593;
  height: 1.8em;
}

.gokursos::after {
  content: '';
  display: block;
  background-image: url("/img/menina@2x.png");
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 56.25%;
  transform: scale(1.1) translateX(46px);
  pointer-events: none;
  background-size: contain;
}

/* #endregion */

/* #region Cantinhos*/

.cantinhos__cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cantinhos__controle {
  display: none;
}

.cantinhos__titulo::before {
  height: 1.2em;
  opacity: 0.1;
  background-color: var(--azul-tema);
}

.cantinhos__titulo {
  color: var(--azul-tema);
  /* @todo Fazer um cálculo relativo ao rem */
  width: 173px;
  font-size: calc(32 / 16 * 1rem);
  line-height: 0.94;
}

.cantinhos__embrulho {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  display: flex;
}

.cantinhos__cantos {
  gap: 1rem;
  column-width: 144px;
  column-count: 5;
  height: calc(517px + (2 * 1rem));
  padding-left: 10px;
  padding-right: 10px;
  flex: 1 0 auto;
}

.cantinhos__cantos:not(:first-child) {
  padding-left: 10px;
}

.canto__figure {
  margin: 0;
  height: 100%;
}

.cantos__canto {
  display: block;
  margin-bottom: 1rem;
  break-inside: avoid;
  position: relative;
  border-radius: calc(4 / 16 * 1rem);
  overflow: hidden;
}

.cantos__canto:nth-child(1) {
  height: 201px;
}

.cantos__canto:nth-child(2) {

  height: 191px;
}

.cantos__canto:nth-child(3) {
  height: 125px;
}

.cantos__canto:nth-child(4) {
  height: 256px;
}

.cantos__canto:nth-child(5) {
  height: 277px;
}

.cantos__canto:nth-child(6) {
  height: 217px;
}

.cantos__canto:nth-child(7) {
  height: 125px;
}

.cantos__canto:nth-child(8) {
  height: 170px;
}

/* .cantos__canto:nth-child(9) {} */
.cantos__canto:nth-child(10) {
  height: 277px;
}

.cantos__canto:nth-child(11) {
  height: 240px;
}

.cantos__canto--full {
  height: 100%;
}

.canto__img {
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* #endregion */

/* #region Planos*/
.planos {
  margin: 16px 0;
}

.planos__titulo::before {
  background-color: var(--azul-tema-apagado);
}

.planos__titulo {
  color: var(--roxo-tema);
  width: 260px;
}

.planos__subtitulo {
  letter-spacing: 2.8px;
}

.planos__go svg {
  margin-left: 16px;
}

.planos__go {
  color: var(--roxo-tema);
  display: flex;
  align-items: center;
  font-size: calc(12 / 16 * 1rem);
  font-weight: bold;
  margin-top: calc(32 / 16 * 1rem);
}

/* #endregion */

/* #region Uploads*/
.uploads {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: white;
  flex-direction: column;
  z-index: 5;
  display: none;
  animation: slide-in-bottom 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.uploads input[type=file]:valid+.uploads__selecionar {
  border-color: var(--cor-verde-sucesso);
}

.uploads input[type=file] {
  opacity: 0;
  position: absolute;
  padding: 0.5em;
  width: 100%;
}

.uploads:target {
  display: flex;
}

.uploads__cabecalho,
.uploads__centro {
  display: flex;
}

.uploads__cabecalho {
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: var(--roxo-gradiente);
}

.uploads__sair {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.uploads__centro {
  flex: 1;
  align-items: center;
  transition: transform .2s;
}


.uploads__centro.etapa-2 {
  transform: translateX(-100%);
}

.uploads__centro.etapa-3 {
  transform: translateX(-200%);
}

.uploads__centro .conter-conteudo {
  flex: 1 0 auto;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
}

.uploads__selecionar {
  background-color: transparent;
  border: solid 1px #f1f1f6;
  border-radius: 4px;
  padding: 1em;
  display: block;
  width: 100%;
  text-align: center;
  font-size: calc(12 / 16 * 1rem);
  margin-bottom: 15px;
}

/* #endregion */

/* #region Cantinhos galeria*/
.cantinhos-carroussel {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 5;
  overflow: auto;
  display: none;
  animation: slide-in-bottom 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cantinhos-carroussel:target {
  display: flex;
}

.cantinhos-carroussel--inicializado::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 12px 12px black;
}

.cantinhos-carroussel__sair {
  position: absolute;
  z-index: 1;
  right: 1em;
  top: 1em;
}

.cantinhos-carroussel__fundo {
  filter: blur(5px) brightness(50%);
}

.splide__slide {
  transition: transform .2s;
  border-radius: 5px;
}

.splide__slide.is-active {
  transform: scale(1.1);
  z-index: 1;
}

.splide__track {
  padding: 50px 0;
}

.splide__pagination {
  bottom: unset;
  top: .5em;
}

.splide__pagination__page {
  width: 32px;
  height: 2px;
  border-radius: 0;
  margin: 0;
}

.splide__pagination__page.is-active {
  transform: none;
  opacity: 1;
}

.carousel__image {
  border-radius: inherit;
  height: 318px;
  width: 250px;
  display: block;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.cantinhos-carroussel__rodape {
  overflow: hidden;
  margin-top: -15px;
  position: relative;
  background-color: white;
  border-radius: 15px 15px 0 0;
  overflow: auto;
  padding-bottom: 1em;
  flex: 1 0 auto;
}

.cantinho__dono {
  font-size: calc(18 / 16 * 1rem);
  line-height: 1.11;
}

.cantinho__dono b {
  display: block;
}

/* #endregion */

/* #region Rodape*/
.rodape-principal {
  padding: 0 0 25px;
}

.rodape__logo {
  display: block;
  margin: 1.5em auto 0;
  height: 23px;
}

/* #endregion */

/* #endregion */

/* #region Animações*/
@keyframes mostraResultadoForm {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* #endregion */

@media only screen and (max-width: 1024px) {
  .capao__logo {
    max-width: 90%;
  }
  .motivos__lista {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .motivos__motivo {
    flex-shrink: 0;
    width: 70vw;
  }
  .descubra {
    display: block;
    margin-top: 50px;
    background-image: url("/img/fundo-mobile.png");
    position: relative;
  }
  .descubra .conteudo {
    padding: 30px 10px;
    background-image: linear-gradient(16deg, #015593 26%, rgba(1, 85, 147, 1) 30%, rgba(0, 139, 191, 0) 120%);
    z-index: 2;
  }
  .descubra .conteudo .imagem {
    display: none;
  }
  .descubra .conteudo .info {
    width: 100%;
    text-align: center;
  }
}

/* #region Responsividade*/
@media only screen and (min-width: 1025px) {

  body>.separador:first-of-type {
    display: none;
  }

  .texto {
    font-size: 1rem;
  }

  .btn {
    cursor: pointer;
  }

  .subtitulo-comum {
    font-size: calc(20 / 16 * 1rem);
  }

  .titulo-comum {
    font-size: calc(40 / 16 * 1rem);
    margin-top: 0.2em;
  }

  .principal,
  .gokursos,
  .cantinhos,
  .planos {
    display: grid;
    grid-template-columns: repeat(10, 82px);
    justify-content: center;
    gap: 32px;
  }


  /* #region Capão*/
  .capao {
    height: 79.674vh;
    padding-bottom: 10.2vh;
  }

  .capao__titulo {
    max-width: 624px;
  }

  /* #endregion Capao*/

  /* #region Principal*/
  .principal {
    border-radius: 0;
    margin: calc(50 / 16 * 1rem) 0;
    overflow: hidden;
  }

  /* #region Motivos*/
  .motivos {
    margin-top: initial;
    overflow: initial;
    padding: 0;
    grid-column: 1 / 8;
    padding-right: 30px;
  }

  .motivos .texto {
    max-width: 500px;
    padding-left: 70px;
  }

  .motivos__cabecalho {
    margin-top: 0;
  }

  .motivos .conter-conteudo {
    padding: 0;
  }

  .prefix__cls-1,
  .cifrao,
  .boia {
  }

  .motivos__motivo {
    position: relative;
    transform-style: preserve-3d;
  }

  .motivos__motivo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #0089bd, var(--azul-tema));
    border-radius: 4px;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05, 1.8);
    transform-origin: right;
  }

  .motivos__motivo:nth-child(2)::before,
  .motivos__motivo:nth-child(2) .cifrao,
  .motivos__motivo:nth-child(2) {
    animation-delay: 3s;
  }

  .motivos__motivo:nth-child(3)::before,
  .motivos__motivo:nth-child(3) .boia,
  .motivos__motivo:nth-child(3) {
    animation-delay: 6s;
  }

  /* #endregion Motivos*/

  /* #region Cadastros*/
  .cadastros {
    grid-column: -1 / -4;
    margin-top: 25px;
  }

  .cadastros__cabecalho {
    position: relative;
    background-image: none;
    overflow: initial;
    display: flex;
  }

  .cadastros__cabecalho .reticencias {
    display: none;
  }

  .cadastros__cabecalho>* {
    position: relative;
  }

  .cadastros__cabecalho::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    width: 50vw;
    background-image: var(--azul-arroxado-gradiente);
  }

  .cadastros .formulario.conter-conteudo {
    padding: 0;
  }

  /* #endregion Cadastros*/

  /* #endregion */

  /* #region Gokursos*/
  .gokursos {
    margin: 4rem 0;
  }

  .gokursos::after {
    padding: 0;
    grid-column: -1 / -5;
    grid-row: span 4;
    transform: scale(1.2);
  }

  .gokursos .texto,
  .gokursos__titulo {
    grid-column: span 5;
  }

  .gokursos .texto {
    margin: 0;
  }

  .gokursos .texto:nth-child(2) {
    grid-row: 2;
  }

  .gokursos .texto:nth-child(3) {
    grid-row: 3;
  }

  .gokursos .texto:nth-child(4) {
    grid-row: 4;
  }

  /* #endregion */

  /* #region Cantinhos*/
  .cantinhos {
    background-color: #F1F1F6;
    padding-top: calc(64 / 16 * 1rem);
    padding-bottom: calc(64 / 16 * 1rem);
    margin-bottom: calc(60 / 16 * 1rem);
  }

  .cantinhos__embrulho,
  .cantinhos__cabecalho {
    grid-column: 1 / -1;
  }

  .cantinhos__cabecalho-icone {
    display: none;
  }

  .cantinhos__controle {
    display: flex;
    align-items: center;
    font-size: calc(12 / 16 * 1rem);
    text-transform: uppercase;
  }

  .cantinhos__controle-controlador:disabled {
    opacity: 0.5;
    pointer-events: none;
  }

  .cantinhos__controle-controlador:hover {
    transform: scale(1.5);
  }

  .cantinhos__controle-controlador {
    margin: 0 2em;
    border: 0;
    color: var(--azul-tema);
    cursor: pointer;
    transition: transform .2s;
  }

  .cantinhos__controle-contador span {
    color: var(--roxo-tema);
    font-weight: bold;
  }

  .cantinhos__titulo {
    width: unset;
    margin: 0;
    font-size: calc(40 / 16 * 1rem);
  }

  .cantinhos__embrulho {
    overflow: hidden;
  }

  .cantinhos__titulo::before {
    height: 0.5em;
  }

  .cantinhos__textos {
    padding: 0;
    margin-top: 0;
    grid-column: span 5;
  }

  .cantinhos__textos .texto {
    margin: 0 0 2em;
  }

  .cantinhos__cantos {
    padding: 0;
    column-width: 208px;
    transform: translateX(var(--t));
    transition: transform .2s;
  }

  .cantos__canto.com-fundo-roxo::after {
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22%23FFF%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20class%3D%22feather%20feather-external-link%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%2F%3E%3Cpath%20d%3D%22M18%2013v6a2%202%200%2001-2%202H5a2%202%200%2001-2-2V8a2%202%200%20012-2h6M15%203h6v6M10%2014L21%203%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #9b33cf, #7739e4);
    background-size: 40%, cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
  }

  .cantos__canto.com-fundo-roxo:hover::after {
    opacity: 1;
  }

  .cantinhos__textos .btn {
    max-width: 310px;
  }

  /* #endregion */

  /* #region Planos*/
  .planos {
    padding: 0;
  }

  .planos::after {
    content: '';
    display: block;
    height: 500px;
    width: calc(976 / 1920 * 100vw);
    position: absolute;
    right: 0;
    background-image: url("/img/planejamento.jpg");
    transform: translateY(-35%);
    border-top-left-radius: 5px;
  }

  .planos .grupo-titulos {
    grid-column: 1 /-1;
  }

  .planos__titulo {
    width: 353px;
  }

  .planos .texto {
    max-width: 520px;
    grid-column: span 5;
  }

  .planos__go {
    grid-column: 1 / span 2;
    margin: 0;
  }

  /* #endregion */

  /* #region Uploads*/
  .uploads__centro .conter-conteudo {
    padding: 16px 35%;
  }

  .uploads__cabecalho.conter-conteudo {
    padding-left: 10%;
    padding-right: 10%;
  }

  /* #endregion */

  /* #region Cantinhos galeria*/

  .carousel__image {
    height: 416px;
    width: 300px;
    object-fit: cover;
  }

  .splide__pagination {
    top: 1.5em;
  }

  .splide {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .splide__list {
    cursor: -moz-grab;
    cursor: -webkit-grab;
    cursor: grab;
  }
  .splide__list:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }

  .cantinhos-carroussel__rodape {
    width: 80%;
    max-width: 1336px;
    margin: auto auto 0;
    padding: 0.75rem 25% 1rem;
    flex: unset;
  }

  /* #endregion */

  @keyframes fadeIn {

    10%,
    20% {
      opacity: 1;
    }

    0%,
    100%,
    30% {
      opacity: 0;
    }
  }

  @keyframes changeStroke {

    10%,
    20% {
      stroke: white;
    }

    0%,
    100%,
    30% {
      stroke: #df2121;
    }
  }

  @keyframes empurrar {

    10%,
    20% {
      transform: translateX(15px);
    }

    0%,
    100%,
    30% {
      transform: translateX(0);
    }
  }

  @keyframes toWhite {

    10%,
    20% {
      color: white;
    }

    0%,
    100%,
    30% {
      color: #2a212e;
    }
  }
}

@media only screen and (max-height: 720px) {
  .carousel__image {
    height: 376px;
  }
}

/* #endregion */