@font-face {
  font-family: "Jersey20";
  src: url("Jersey20-Regular.ttf");
}

@font-face {
  font-family: "OpenSans";
  src: url("OpenSans-Regular.ttf");
}

/*
:root {
  --azul-fundo-login-sme: #00c0f3;
}
*/

body {
  background-image: url(../img/imagens-fundo.png),
    linear-gradient(#4236e6, #251e7f);
  background-repeat: no-repeat;
  background-position: center top, center;
  margin: 0;
  padding: 0;
}

.container {
  min-height: 100vh;
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.container .pagina {
  width: 100%;
  text-align: center;
  font-family: jersey20;
  font-size: 48px;
  margin: 30px;
  color: #ffffff;
  text-transform: uppercase;
}

nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}

nav .area_logo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

nav .area_logo .compartilhar {
  anchor-name: --menu-compartilhar;
  margin-left: auto;
}

nav .area_logo .compartilhar img:nth-child(2) {
  display: none;
}

nav .area_compartilhamento {
  position: absolute;
  top: 55px;
  left: calc(100% - 100px);
  transform: translateX(-50%);

  @supports(position-anchor: --menu-compartilhar) {
    position-anchor: --menu-compartilhar;
    top: calc(anchor(bottom) + 10px);
    left: anchor(50%);
  }

  background: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  color: black;
  border-radius: 35px;
  corner-shape: squircle;
  padding: 20px;
  gap: 20px;

  &::before {
    position: absolute;
    content: "";
    bottom: 90%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid white;
    border-top: 1px solid white;
  }
}

@media (max-width: 740px) {
  nav .area_compartilhamento {
    left: calc(100vw - 126px);

    @supports(position-anchor: --menu-compartilhar) {
      left: anchor(50%);
    }
  }
}

nav .area_logo .menu_mobile {
  display: none;
}

nav .area_botoes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

nav .area_botoes .botao {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 8px;
}

nav .area_botoes .botao img {
  height: 16px;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 80px 0px;
  width: 100%;
  max-width: 720px;
  height: fit-content;
  font-family: "OpenSans";
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  gap: 40px;
  text-align: center;
}

footer .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

footer div {
  font-size: 12px;
  text-align: center;
}

.home {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: Jersey20;
  font-size: 32px;
  color: #ffffff;
  gap: 40px;
  text-transform: uppercase;
}

.home .faixa-braca-inferior {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.home .botoes {
  width: 100%;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.home .botoes .botao {
  display: flex;
  width: calc(50% - 10px);
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 40px;
}

.home span {
  display: contents;
}

.area_escura_modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #000000aa; */
  width: 100vw;
  height: 100vh;
  z-index: 10000;
}

.menu_mobile {
  justify-content: end;
}

.area_escura_modal .area_modal {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 12px;
  min-width: 100px;
  min-height: 100px;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 95vh;
  background-color: #1f094a;
}

.menu_mobile .area_modal {
  height: 100vh;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  border-radius: 0px;
  top: 0px;
  right: 0px;
  /*//-308px */
  position: absolute;
  transition: all 0.5s ease-out;
  padding: 20px;
  gap: 20px;
  font-family: jersey20;
  font-size: 32px;
  color: #ffffff;
  text-transform: uppercase;
}

.menu_mobile .area_modal .linha {
  width: 300px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.menu_mobile .area_modal .botao {
  display: flex;
  width: 300px;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 40px;
}

.area_modal .fechar {
  width: 48px;
  height: 48px;
  margin-left: auto;
  cursor: pointer;
}

.area_conteudo {
  background-color: #000000;
}

.veja_mais {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: jersey20;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 40px;
}

.veja_mais .titulo {
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.veja_mais .subtitulo {
  font-size: 20px;
  text-align: center;
}

.veja_mais .sessao {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.veja_mais .sessao .titulo_sessao {
  display: flex;
  flex-direction: row;
  width: 100%;
  font-size: 24px;
  border-bottom: 2px solid #b9a3ff;
  gap: 8px;
  align-items: center;
  padding-bottom: 8px;
  margin-top: 20px;
}

.veja_mais .sessao .titulo_sessao img {
  width: 24px;
}

.veja_mais .sessao .blocos {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  width: 100%;
}

.veja_mais .sessao .blocos img {
  width: 100%;
  border: 1px solid #b9a3ff;
}

.blocos {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.quadrinhos_guia_pratico {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-family: jersey20;
  font-size: 20px;
  gap: 20px;
  color: #ffffff;
  margin: 20px 0px;
}

.quadrinhos_guia_pratico img {
  width: 100%;
}

.paper-btn {
  width: 100%;
  max-width: 360px;
  height: 48px;
  border-radius: 8px;
  background: #07aeb8;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-sizing: border-box;
  margin-top: 10px;
  font-family: Jersey20, sans-serif;
  font-size: 32px;
  line-height: 32px;
}

.paper-btn .back {
  color: white;
  text-shadow: 2px 2px 0 white, 2px -2px 0 white, -2px 2px 0 white,
    -2px -2px 0 white;
}

.paper-btn .front {
  position: absolute;
  background: linear-gradient(90deg, #002987, #d9338d);
  color: transparent;
  background-clip: text;
}

.paper-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.paper-btn img {
  height: 26px;
  width: auto;
}

@media (min-width: 992px) {
  .blocos {
    gap: 40px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .home .botoes {
    width: 100%;
    gap: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }

  .home .botoes .botao {
    display: flex;
    width: 100%;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
  }
}

@media (max-width: 740px) {
  nav .area_botoes {
    display: none;
  }

  nav .area_logo .compartilhar {
    padding: 20px;
  }

  nav .area_logo .compartilhar img:nth-child(1) {
    display: none;
  }

  nav .area_logo .compartilhar img:nth-child(2) {
    display: unset;
  }

  nav .area_logo .menu_mobile {
    display: unset;
    padding: 20px;
  }

  .paper-btn {
    width: 420px;
    height: 52px;
  }
}

/* Meias aventuras */
.meias-card {
  /* width: 280px; */
  background: #ffdc14;
  border-radius: 4px;
  padding: 12px 12px 20px 12px;
  margin: 0 auto;
  box-sizing: border-box;
}

.meias-card__topo img {
  width: 100%;
  height: auto;
  display: block;
}

.meias-card__slider {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  overflow-x: auto;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  touch-action: pan-x;
  overscroll-behavior-x: contain;

  scrollbar-width: none;
  cursor: grab;
}

.meias-card__slider::-webkit-scrollbar {
  display: none;
}

.meias-card__slider.is-dragging {
  cursor: grabbing;
}

.meias-card__page {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: calc(100vw - 65px);
}

.meias-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.meias-item {
  display: block;
  text-decoration: none;
  border: 2px solid orange;
  box-sizing: border-box;
}

.meias-item img {
  width: 100%;
  height: auto;
  display: block;
}

.meias-nav {
  margin-top: 10px;
  width: fit-content;
  height: 18px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.meias-arrow {
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  color: #a40b4f;
  padding: 0;
  line-height: 1;
  font-size: 18px;
  cursor: pointer;
}

.meias-dots {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 10px;
  overflow: visible;
}

.meias-dot-wrap {
  width: 10px;
  height: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 10px;
}

.meias-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #a40b4f;
  opacity: 0.55;
}

.meias-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #a40b4f;
  transform: translate(0, -50%);
  transition: transform 0.25s ease;
  pointer-events: none;
}

@media (min-width: 741px) {
  .meias-card {
    width: 100%;
    max-width: 1120px;
    padding: 24px;
  }

  .meias-card__topo {
    border-radius: 14px;
    overflow: hidden;
  }


  .meias-card__page {
    width: 100%;
  }

  .meias-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .meias-item {
    border: 2px solid orange;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1 / 1;
  }

  .meias-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .meias-nav {
    margin-top: 14px;
    gap: 18px;
  }
}

@media (min-width: 741px) and (hover: hover) and (pointer: fine) {
  .meias-card__slider {
    margin-top: 16px;
    overflow-x: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    touch-action: auto;
    cursor: default;
  }
}


/* Que medo */
.medo-card {
  /* width: 280px; */
  background: #d59e48;
  border-radius: 4px;
  padding: 12px 12px 20px 12px;
  margin: 0 auto;
  box-sizing: border-box;
}

.medo-card__topo img {
  width: 100%;
  height: auto;
  display: block;
}

.medo-card__slider {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  overflow-x: auto;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  touch-action: pan-x;
  overscroll-behavior-x: contain;

  scrollbar-width: none;
  cursor: grab;
}

.medo-card__slider::-webkit-scrollbar {
  display: none;
}

.medo-card__slider.is-dragging {
  cursor: grabbing;
}

.medo-card__page {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: calc(100vw - 65px);
}

.medo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.medo-item {
  display: block;
  text-decoration: none;
  border: 2px solid rgba(138, 95, 17, 0.863);
  box-sizing: border-box;

}

.medo-item img {
  width: 100%;
  height: auto;
  display: block;
}

.medo-nav {
  margin-top: 10px;
  width: fit-content;
  height: 18px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.medo-arrow {
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  color: #763e2a;
  padding: 0;
  line-height: 1;
  font-size: 18px;
  cursor: pointer;
}

.medo-dots {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 10px;
  overflow: visible;
}

.medo-dot-wrap {
  width: 10px;
  height: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 10px;
}

.medo-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #763e2a;
  opacity: 0.55;
}

.medo-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #763e2a;
  transform: translate(0, -50%);
  transition: transform 0.25s ease;
  pointer-events: none;
}

@media (min-width: 741px) {
  .medo-card {
    width: 100%;
    max-width: 1120px;
    padding: 24px;
  }

  .medo-card__topo {
    border-radius: 14px;
    overflow: hidden;
  }

  .medo-card__page {
    width: 100%;
  }

  .medo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .medo-item {
    border: 2px solid rgba(138, 95, 17, 0.863);
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1 / 1;
  }

  .medo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .medo-nav {
    margin-top: 14px;
    gap: 18px;
  }
}

@media (min-width: 741px) and (hover: hover) and (pointer: fine) {
  .medo-card__slider {
    margin-top: 16px;
    overflow-x: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    touch-action: auto;
    cursor: default;
  }
}


/* MultiClube */
.multi-card {
  /*width: 280px;*/
  background: #1b2346;
  border-radius: 4px;
  padding: 12px 12px 20px 12px;
  margin: 0 auto;
  box-sizing: border-box;
}

.multi-card__topo img {
  width: 100%;
  height: auto;
  display: block;
}

.multi-card__slider {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  overflow-x: auto;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  touch-action: pan-x;
  overscroll-behavior-x: contain;

  scrollbar-width: none;
  cursor: grab;
}

.multi-card__slider::-webkit-scrollbar {
  display: none;
}

.multi-card__slider.is-dragging {
  cursor: grabbing;
}

.multi-card__page {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: calc(100vw - 65px);
}

.multi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.multi-item {
  display: block;
  text-decoration: none;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);

  border: 2px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
}

.multi-item img {
  width: 100%;
  height: auto;
  display: block;
}

.multi-nav {
  margin-top: 10px;
  width: fit-content;
  height: 18px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.multi-arrow {
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 0;
  line-height: 1;
  font-size: 18px;
  cursor: pointer;
}

.multi-dots {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 10px;
  overflow: visible;
}

.multi-dot-wrap {
  width: 10px;
  height: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 10px;
}

.multi-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.55;
}

.multi-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  transform: translate(0, -50%);
  transition: transform 0.25s ease;
  pointer-events: none;
}

@media (min-width: 741px) {
  .multi-card {
    width: 100%;
    max-width: 1120px;
    padding: 24px;
  }

  .multi-card__topo {
    border-radius: 14px;
    overflow: hidden;
  }

  .multi-card__page {
    width: 100%;
  }

  .multi-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .multi-item {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    aspect-ratio: 1 / 1;
  }

  .multi-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .multi-nav {
    margin-top: 14px;
    gap: 18px;
  }
}

@media (min-width: 741px) and (hover: hover) and (pointer: fine) {
  .multi-card__slider {
    margin-top: 16px;
    overflow-x: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    touch-action: auto;
    cursor: default;
  }
}


/* Flash Cards */

.flash-card {
  width: 280px;
  background: #e69496;
  border-radius: 4px;
  padding: 12px 12px 20px 12px;
  margin: 0 auto;
  box-sizing: border-box;
}

.flash-topo img {
  width: 100%;
  height: auto;
  display: block;
}

.flash-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.flash-item {
  display: block;
  text-decoration: none;
  border-radius: 2px;
  overflow: hidden;
  background: transparent;
  border: 1px solid #0f70b7;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
}

.flash-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flash-empty {
  border: 0;
  background: transparent;
  border-radius: 0;
  pointer-events: none;
}

@media (min-width: 741px) {
  .flash-card {
    width: 100%;
    max-width: 1120px;
    border-radius: 18px;
    padding: 24px;
  }

  .flash-topo {
    border-radius: 14px;
    overflow: hidden;
  }

  .flash-grid {
    margin-top: 16px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .flash-item {
    border-radius: 12px;
  }

  .flash-empty {
    display: none;
  }
}

/* Próxima Parada */

.pp-card {
  /* width: 280px;*/
  background: #fffcde;
  border: 2px solid #f7e3b0;
  border-radius: 4px;
  padding: 12px 12px 20px 12px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pp-card__topo img {
  width: 100%;
  height: auto;
  display: block;
}

.pp-card__slider {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  overflow-x: auto;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  touch-action: pan-x;
  overscroll-behavior-x: contain;

  scrollbar-width: none;
  cursor: grab;

  width: 100%;
}

.pp-card__slider::-webkit-scrollbar {
  display: none;
}

.pp-card__slider.is-dragging {
  cursor: grabbing;
}

.pp-card__page {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: calc(100vw - 65px);
}

.pp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.pp-item {
  display: block;
  text-decoration: none;

  border: 2px solid #f7e3b0;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  box-sizing: border-box;

  aspect-ratio: 1 / 1;
}

.pp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pp-nav {
  margin-top: 10px;
  width: fit-content;
  height: 18px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pp-arrow {
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  color: #0f70b7;
  padding: 0;
  line-height: 1;
  font-size: 18px;
  cursor: pointer;
}

.pp-dots {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 10px;
  overflow: visible;
}

.pp-dot-wrap {
  width: 10px;
  height: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 10px;
}

.pp-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0f70b7;
  opacity: 0.55;
}

.pp-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0f70b7;
  transform: translate(0, -50%);
  transition: transform 0.25s ease;
  pointer-events: none;
}

@media (min-width: 741px) {
  .pp-card {
    width: 100%;
    max-width: 1120px;
    padding: 24px;
  }

  .pp-card__topo {
    border-radius: 14px;
    overflow: hidden;
  }

  .pp-card__page {
    width: 100%;
  }

  .pp-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .pp-item {
    background: rgba(255, 255, 255, 0.35);
    aspect-ratio: 1 / 1;
  }

  .pp-nav {
    margin-top: 14px;
    gap: 18px;
  }
}

@media (min-width: 741px) and (hover: hover) and (pointer: fine) {
  .pp-card__slider {
    margin-top: 16px;
    overflow-x: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    touch-action: auto;
    cursor: default;
  }
}




.meias-card__slider,
.medo-card__slider,
.multi-card__slider,
.pp-card__slider,
.flash-slider {
  touch-action: auto;
}




.bloco_diversao .titulo_sessao {
  font-size: 32px !important;
}

@media (max-width: 740px) {
  footer .logos {
    flex-direction: column;
  }
}