@charset "UTF-8";
@layers scrollChrisBolson;
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: auto;
  min-height: 100%;
}

body {
  position: relative;
  min-width: 400px;
  overflow-x: hidden;
  z-index: -2;
}
body.dark-theme {
  min-height: 100vh;
  position: relative;
}
body.dark-theme:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../deressos/bgs/offlight_stripes.png") repeat;
  z-index: -1;
}
body.dark-theme * {
  filter: brightness(98%);
}
body:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../deressos/bgs/light_stripes.png") repeat;
  z-index: -1;
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  animation: animBlurVision 6000ms ease-in-out infinite;
  z-index: -1;
}
@keyframes animBlurVision {
  100%, 0% {
    box-shadow: inset 1vw 0 20px rgba(124, 95, 0, 0.05), inset -1vw 0 20px rgba(124, 95, 0, 0.05);
  }
  50% {
    box-shadow: inset 1vw 0 20px rgba(124, 95, 0, 0.1), inset -1vw 0 20px rgba(124, 95, 0, 0.1);
  }
}
@keyframes slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
body .animate-slide-up {
  animation: slide-up 0.5s ease-out forwards;
}
body {
  /*
        --
        --
    */
  /* Para dispositivos que não serão suportados */
}
body .socialRastaLimit {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: yellow;
  z-index: 9999;
}
body .socialRastaLimit:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 33.3vw;
  height: 100%;
  background: green;
}
body .socialRastaLimit:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 33.3vw;
  height: 100%;
  background: red;
}
body .socialRastaLimit .contentLimiter {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
  padding: 20px;
  z-index: 9999;
}
body .socialRastaLimit .contentLimiter p.info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 94px;
  height: 72px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-size: 3rem;
  padding: 0 20px;
  outline: 2px solid black;
  border-radius: 10px;
}
body .socialRastaLimit .contentLimiter p.info:nth-child(odd) {
  margin-bottom: 20px;
}
body .socialRastaLimit .contentLimiter p.info:nth-child(even) {
  margin-bottom: 20px;
}
body .socialRastaLimit .contentLimiter p.info:hover {
  color: black;
  background-color: rgba(100, 100, 100, 0.76);
  cursor: pointer;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 0 10px 5px rgba(0, 0, 0, 0.5);
  outline: 2px solid black;
}
body {
  /*
        --
        --
    */
  /* Tooltips */
  /* Container */
}
body .tooltip-container {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 6px;
  cursor: pointer;
}
body .tooltip-container.grifo {
  background: yellow;
}
body {
  /* Tooltip box */
}
body .tooltip-box {
  position: absolute;
  max-width: 250px;
  width: -moz-fit-content;
  width: fit-content;
  background: #000;
  font-size: 12px;
  color: #fff;
  white-space: normal;
  word-wrap: break-word;
  text-align: left;
  border-radius: 6px;
  padding: 8px 12px;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  z-index: 2147483647;
}
body .tooltip-box::after {
  content: "";
  position: absolute;
  border: 6px solid transparent;
}
body .tooltip-box.show {
  opacity: 1;
}
body {
  /* Posições padrão */
}
body [data-position=top] .tooltip-box {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
}
body [data-position=top] .tooltip-box::after {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: #000;
}
body [data-position=bottom] .tooltip-box {
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
}
body [data-position=bottom] .tooltip-box::after {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: #000;
}
body [data-position=left] .tooltip-box {
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
}
body [data-position=left] .tooltip-box::after {
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: #000;
}
body [data-position=right] .tooltip-box {
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
}
body [data-position=right] .tooltip-box::after {
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: #000;
}
body {
  /* 
      -
      -   Toast
      -
  */
}
body #toast-container {
  position: fixed;
  top: 78px;
  right: 0px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body #toast-container .toast-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-width: 250px;
  font-family: sans-serif;
  padding: 12px 16px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
body #toast-container .toast-message .toast-error {
  background-color: #b91c1c !important;
  color: #fee2e2;
  border-left: 4px solid #b91c1c;
  outline: 1px solid #b91c1c;
}
body #toast-container .toast-message .toast-success {
  background-color: #d1fae5;
  color: #065f46;
  border-left: 4px solid #065f46;
}
body #toast-container .toast-message .toast-close {
  position: absolute;
  top: 0px;
  right: 10px;
  background: none;
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

@layer scrollChrisBolson {
  .wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    height: 500px;
    width: min(100%, 600px);
    margin: 0 auto;
  }
  .scroll-container {
    --card-border-radius: 20px;
    --thumb-color: rgb(0, 188, 255);
    --thumb-color-active: dodgerblue;
    --thumb-width: 4;
    --thumb-width-active: 6;
    --track-color: transparent;
    --track-color-active: light-dark(#EEE,#222);
    --track-width: 4;
    --track-width-active: 6;
    /* styling for the second card */
  }
  .scroll-container.box-2 {
    --card-border-radius: 20px;
    --thumb-color: rgb(154, 230, 0);
    --thumb-color-active: rgb(124, 207, 0);
  }
  .scroll-container.box-3 {
    --card-border-radius: 20px;
    --thumb-color: rgb(141, 122, 98);
    --thumb-color-active: rgb(109, 89, 65);
  }
  .scroll-container {
    position: relative;
    width: 100%;
    contain: size;
    margin: 3rem auto;
    border: 1px solid var(--clr-lines);
    border-radius: var(--card-border-radius);
    overflow: hidden;
  }
  .scroll-container h2 {
    text-wrap: balance;
    font-size: 1.1rem;
  }
  .scroll-container img {
    max-width: 100%;
    display: block;
  }
  .scroll-content {
    height: 100%;
    overflow-y: auto;
    padding: 1rem 1.5rem 1rem 1rem; /* space on right for scrollbar */
    /* keep scrolling functional */
    overflow-y: scroll;
    /* hide scrollbars */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge Legacy */
  }
  .scroll-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }
  .scrollbar-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .scrollbar-svg:has(:active) {
    --thumb-width: var(--thumb-width-active);
    --track-width: var(--track-width-active);
    --track-color: var(--track-color-active);
  }
  .scrollbar-track {
    fill: none;
    stroke: var(--track-color);
    stroke-width: var(--track-width);
    stroke-linecap: round;
    transition: stroke-width, stroke;
    transiton-duration: 150ms;
    transition-timing-function: ease-in-out;
  }
  .scrollbar-thumb {
    fill: none;
    stroke: var(--thumb-color);
    stroke-width: var(--thumb-width);
    stroke-linecap: round;
    pointer-events: auto;
    cursor: grab;
    transition: stroke-width, stroke;
    transiton-duration: 150ms;
    transition-timing-function: ease-in-out;
  }
  .scrollbar-thumb:active {
    stroke: var(--thumb-color-active);
    cursor: grabbing;
  }
}
/* depois eu arrumo tempo pra lidar com responsividade das tooltips*/
@media (max-width: 800px) {
  .tooltip-container {
    background: rgba(0, 0, 0, 0.05) !important;
    cursor: default !important;
  }
  .tooltip-box {
    display: none;
  }
}
@media screen and (min-width: 800px) and (max-width: 1900px) {
  .tooltip-box {
    max-width: 20vw !important;
    min-width: 20vw !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
@media (min-width: 1900px) {
  .tooltip-box {
    max-width: 50vw !important;
    min-width: 20vw !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
@media (max-width: 200px) {
  body {
    overflow-y: hidden !important;
    background-color: yellow !important;
  }
  .socialRastaLimit {
    display: block !important;
  }
}
/*
    --
    --
*/
@layer utilities {
  .hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: black;
    text-align: center;
    height: 1.5em;
    opacity: 0.5;
  }
  .hr-text.ha {
    height: 2px;
  }
  .hr-text.ha:before {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3490196078), transparent);
  }
  .hr-text:before {
    content: "";
    background: linear-gradient(to right, transparent, #818078, transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
  }
  .hr-text:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: black;
    padding: 0 0.5em;
    line-height: 1.5em;
    color: #818078;
    background-color: #fcfcfa;
  }
  /* bônus: Underline legal */
  .wzh-underline {
    display: inline-block;
    position: relative;
    color: rgba(0, 0, 0, 0.5);
  }
  .wzh-underline:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.05);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  .wzh-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  .text-outline {
    text-shadow: 1px 0 0 black, -1px 0 0 black, 0 1px 0 black, 0 -1px 0 black, 1px 1px 0 black, -1px 1px 0 black, 1px -1px 0 black, -1px -1px 0 black;
  }
  .text-outline.oranged {
    text-shadow: 2px 0 0 rgba(119, 0, 0, 0.3), -2px 0 0 rgba(119, 0, 0, 0.3), 0 1px 0 rgba(119, 0, 0, 0.3), 0 -2px 0 rgba(119, 0, 0, 0.3), 1px 1px 0 rgba(119, 0, 0, 0.3), -1px 1px 0 rgba(119, 0, 0, 0.3), 1px -1px 0 rgba(119, 0, 0, 0.3), -1px -1px 0 rgba(119, 0, 0, 0.3);
  }
}
/*
    --
    --
*/
nav {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
nav a.logo {
  width: 125px;
  height: 50px;
  background: url("../deressos/logo.png") no-repeat;
  background-size: contain;
  filter: grayscale(100%);
  transition: all 1500ms ease-in-out;
}
nav a.logo:hover {
  filter: grayscale(0%);
}
nav #theme-toggle {
  width: 32px;
}
nav #theme-toggle #filter-slider {
  display: none;
  margin-left: 10px;
  vertical-align: middle;
}
nav #theme-toggle:active + #filter-slider,
nav #theme-toggle:hover + #filter-slider {
  display: none;
}
nav.sticky {
  background-color: rgba(211, 211, 211, 0.7333333333);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1921568627);
  position: sticky;
  top: 0;
  z-index: 50;
}
nav .subNav {
  position: relative;
  visibility: hidden;
  max-height: 0;
  background-color: rgba(211, 211, 211, 0.3215686275);
  border-top: 1px solid rgba(229, 231, 235, 0.3294117647);
  padding: 0;
  opacity: 0;
  transition: max-height 300ms ease-in-out, opacity 800ms ease-in-out, visibility 800ms ease-in-out;
  overflow: hidden;
}
nav .subNav.scrolled {
  visibility: visible;
  max-height: 40px; /* ou o valor que acomode seu conteúdo */
  opacity: 1;
  z-index: 50;
}
nav .subNav.scrolled ul {
  visibility: visible;
  opacity: 1;
}
nav .subNav ul {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 800ms ease-in-out, visibility 800ms ease-in-out;
  transition-delay: 900ms;
}
nav .subNav ul li.subNavLi {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  transition: all 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.02);
}
nav .subNav ul li.subNavLi:hover {
  background-color: rgba(241, 245, 249, 0.2549019608);
}
nav .subNav ul li.subNavLi.active {
  position: relative;
  background-color: rgba(163, 163, 163, 0.0941176471);
}
nav .subNav ul li.subNavLi.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background-color: rgb(78, 80, 209);
  border-radius: 1.5px;
  z-index: 999;
}
nav .subNav ul li.subNavLi:not(:last-child)::before {
  content: "|";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0a0a0;
  filter: contrast(1.1);
  font-weight: normal;
}
nav .subNav ul li.subNavLi a {
  display: block; /* ocupa toda a área do li */
  padding: 8px 12px;
  cursor: pointer;
}
nav:hover a.logo {
  filter: grayscale(0%);
}
nav #hamburgerBtn {
  display: block;
  z-index: 60;
  transition: transform 300ms ease-in-out;
}
nav #hamburgerBtn:active {
  transform: scale(0.95);
}
nav #mobileMenu {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  max-height: 100vh;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  animation: slideDown 400ms ease-in-out forwards;
  transform-origin: top center;
  padding: 0;
}
nav #mobileMenu .mobile-subnav {
  margin: 10px;
  padding: 0;
  z-index: 10000;
}
nav #mobileMenu .mobile-subnav li {
  height: 40px;
  background-color: rgba(243, 244, 246, 0.9607843137);
  padding: 8px 15px;
  border-radius: 6px;
  transition: background-color 300ms;
}
nav #mobileMenu .mobile-subnav li:hover {
  background-color: rgba(243, 244, 246, 0.4039215686);
}
nav #mobileMenu .mobile-auth {
  padding: 0 10px;
  margin-bottom: 10px;
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: scaleY(0.8);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

section {
  width: 100%;
  min-height: calc(100vh - 65px);
  height: auto;
  padding-bottom: 1em;
}
section.h-auto {
  min-height: auto !important;
}
section .oppa {
  width: 100%;
  max-height: 100%;
  height: auto;
  position: relative;
  margin-bottom: 40px;
}
section .oppa .coluna_esquerda {
  position: absolute;
  top: 32px;
  left: -270px;
  margin: 0;
  width: 280px;
  height: 100%;
}
section .oppa .coluna_esquerda::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(128, 128, 128, 0.1);
  z-index: -1;
}
section .oppa .coluna_esquerda.fixed {
  position: fixed;
  top: 200px;
}
section .oppa .coluna_esquerda.scrolled {
  position: fixed !important;
  top: 65px;
  left: -270px !important;
  height: calc(100vh - 65px);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 49;
}
section .oppa .coluna_esquerda.scrolled::-webkit-scrollbar {
  width: 6px;
}
section .oppa .coluna_esquerda.scrolled::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
section .oppa .coluna_esquerda.scrolled::-webkit-scrollbar-thumb {
  background-color: rgba(136, 136, 136, 0.5);
  border-radius: 4px;
}
section .oppa .coluna_esquerda.scrolled::-webkit-scrollbar-thumb:hover {
  background-color: rgba(136, 136, 136, 0.8);
}
section .oppa .coluna_direita {
  position: absolute;
  top: 32px;
  right: -270px;
  margin: 0;
  width: 280px;
  height: 100%;
}
section .oppa .coluna_direita::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(128, 128, 128, 0.1);
  z-index: -1;
}
section .oppa .coluna_direita.scrolled {
  position: fixed !important;
  top: 65px;
  right: -270px !important;
  height: calc(100vh - 65px);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 49;
}
section .oppa .coluna_direita.scrolled::-webkit-scrollbar {
  width: 6px;
}
section .oppa .coluna_direita.scrolled::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
section .oppa .coluna_direita.scrolled::-webkit-scrollbar-thumb {
  background-color: rgba(136, 136, 136, 0.5);
  border-radius: 4px;
}
section .oppa .coluna_direita.scrolled::-webkit-scrollbar-thumb:hover {
  background-color: rgba(136, 136, 136, 0.8);
}
section .oppa ul.columnIsta {
  width: 100%;
  height: 100%;
}
section .oppa ul.columnIsta li.columnItems {
  text-align: left;
  margin-bottom: 22px;
}
section .oppa ul.columnIsta li.columnItems:nth-child(1n+2) {
  border-top: 1px solid rgba(128, 128, 128, 0.37);
  padding-top: 10px;
}
section .oppa ul.columnIsta li.columnItems .wzh-coluna span.title {
  color: rgb(20, 20, 20);
  font-size: 1.75rem;
  line-height: 2rem;
  text-align: left;
  vertical-align: top;
}
section .oppa ul.columnIsta li.columnItems .wzh-coluna p.resume {
  font-family: "Courier New", Courier, monospace;
  margin-top: 20px;
  margin-bottom: 0px;
}
section .oppa ul.columnIsta li.columnItems .wzh-coluna span.stats {
  color: #888;
  font-size: 12px;
  font-weight: 500;
}
section .oppa ul.columnIsta li.columnItems .wzh-coluna span.stats a:hover {
  color: blue;
  text-decoration: underline;
}
section .oppa ul.columnIsta li.columnItems.profile {
  height: 66px;
}
section .oppa ul.columnIsta li.columnItems.profile .wzh-profile {
  justify-content: end;
  align-items: center;
  gap: 2px;
}
section .oppa ul.columnIsta li.columnItems.profile .wzh-profile img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
}
section .oppa ul.columnIsta li.columnItems.profile .wzh-profile span.name {
  width: 100%;
  max-width: 200px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
  text-align: right !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
section .oppa ul.columnIsta li.columnItems.profile .wzh-profile span.role {
  width: 100%;
  max-width: 200px;
  color: rgba(0, 0, 0, 0.9);
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
section .oppa .coluna_esquerda.scrolled ul.columnIsta,
section .oppa .coluna_direita.scrolled ul.columnIsta {
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
}
section .oppa .coluna_esquerda.scrolled ul.columnIsta::-webkit-scrollbar,
section .oppa .coluna_direita.scrolled ul.columnIsta::-webkit-scrollbar {
  width: 4px;
}
section .oppa .coluna_esquerda.scrolled ul.columnIsta::-webkit-scrollbar-track,
section .oppa .coluna_direita.scrolled ul.columnIsta::-webkit-scrollbar-track {
  background: transparent;
}
section .oppa .coluna_esquerda.scrolled ul.columnIsta::-webkit-scrollbar-thumb,
section .oppa .coluna_direita.scrolled ul.columnIsta::-webkit-scrollbar-thumb {
  background-color: rgba(136, 136, 136, 0.4);
  border-radius: 2px;
}
section .oppa .coluna_esquerda.scrolled ul.columnIsta::-webkit-scrollbar-thumb:hover,
section .oppa .coluna_direita.scrolled ul.columnIsta::-webkit-scrollbar-thumb:hover {
  background-color: rgba(136, 136, 136, 0.7);
}
section .oppa ul.me {
  margin-top: 32px !important;
  margin-left: 0 !important;
  width: 100%;
  height: auto;
}
section .oppa ul.me li.wzhItem {
  position: relative;
  height: auto;
  background: rgba(14, 14, 14, 0.03);
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
}
section .oppa ul.me li.wzhItem .wzh-promo {
  width: 100%;
  height: 272px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  border-radius: 5px;
}
section .oppa ul.me li.wzhItem .wzh-promo img {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
section .oppa ul.me li.wzhItem .wzh-text {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  position: relative;
  width: 100%;
  height: calc(100% - 272px);
  padding-top: 5px;
}
section .oppa ul.me li.wzhItem .wzh-text span.title {
  font-size: 32px;
  margin-top: 0px;
  margin-bottom: 0.5rem;
  color: rgb(20, 20, 20);
  line-height: 2.375rem;
  text-align: left;
  vertical-align: top;
}
section .oppa ul.me li.wzhItem .wzh-text span.title:first-letter {
  font-weight: 500;
  font-size: 38px;
}
section .oppa ul.me li.wzhItem .wzh-text span.resume {
  width: 100%;
  height: auto;
  max-height: 97px;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 30px;
  /* WebKit (Chrome, Edge, Safari) */
}
section .oppa ul.me li.wzhItem .wzh-text span.resume::-webkit-scrollbar {
  width: 5px;
}
section .oppa ul.me li.wzhItem .wzh-text span.resume::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2823529412);
  border-radius: 4px;
}
section .oppa ul.me li.wzhItem .wzh-text span.resume::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}
section .oppa ul.me li.wzhItem .wzh-text span.resume::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
section .oppa ul.me li.wzhItem .wzh-text span.stats {
  position: absolute;
  left: 0;
  bottom: 5px;
  height: 20px;
  font-size: 0.875rem;
  color: rgb(104, 101, 101);
}
section .oppa ul.me li.wzhItem.express {
  max-height: 258px;
}
section .oppa ul.me li.wzhItem.express .wzh-promo {
  height: 135px;
}
section .oppa ul.me li.wzhItem.express .wzh-promo img {
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}
section .oppa ul.me li.wzhItem.express .wzh-promo img:hover {
  filter: grayscale(0%);
}
section .oppa ul.me li.wzhItem.express .wzh-text {
  height: calc(100% - 140px);
}
section .oppa ul.me li.wzhItem.express .wzh-text span.title {
  height: 100%;
  font-size: 21px;
  color: rgb(20, 20, 20);
  line-height: 1.375rem;
  margin-bottom: 30px;
}
section .oppa ul.me li.wzhItem.express .wzh-text span.title:first-letter {
  font-weight: 500;
  font-size: 28px;
}
section .oppa ul.me li.wzhItem.express .wzh-text span.resume {
  color: rgb(104, 101, 101);
  font-size: 1rem;
  line-height: 1.375rem;
  height: 100%;
  max-height: 57px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limita a 2 linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
section .oppa ul.me li.wzhItem.express .wzh-text span.stats {
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 30px;
  font-size: 0.875rem;
  line-height: 37px;
  color: rgb(104, 101, 101);
}
section .oppa ul.me li.wzhItem.express.only {
  border-top: 1px solid grey;
}
section .oppa ul.me li.wzhItem {
  /* -- */
}
section .oppa ul.me li.wzhItem:hover {
  cursor: pointer;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
section .oppa ul.me li.wzhItem:hover .wzh-promo img {
  filter: grayscale(0%);
}
section .oppa ul.me li.wzhItem:hover .wzh-text span.title {
  text-decoration: underline;
}
section .oppa ul.me li.wzhItem {
  /*
          &:nth-child(2) {
              display: none!important;
          }
          */
}
section .oppa ul.me li.wzhItem:nth-last-child(4), section .oppa ul.me li.wzhItem:nth-last-child(3), section .oppa ul.me li.wzhItem:nth-last-child(2), section .oppa ul.me li.wzhItem:nth-last-child(1) {
  border-top: 1px solid rgba(128, 128, 128, 0.5);
  padding-top: 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
section .oppa ul.me li.wzhItem:nth-last-child(4) .wzh-promo, section .oppa ul.me li.wzhItem:nth-last-child(3) .wzh-promo, section .oppa ul.me li.wzhItem:nth-last-child(2) .wzh-promo, section .oppa ul.me li.wzhItem:nth-last-child(1) .wzh-promo {
  display: none;
}
section .oppa ul.me li.wzhItem:nth-last-child(4) .wzh-text, section .oppa ul.me li.wzhItem:nth-last-child(3) .wzh-text, section .oppa ul.me li.wzhItem:nth-last-child(2) .wzh-text, section .oppa ul.me li.wzhItem:nth-last-child(1) .wzh-text {
  height: calc(100% - 7px);
  margin: 10px auto;
}
section .oppa ul.me li.wzhItem:nth-last-child(4) .wzh-text span.title, section .oppa ul.me li.wzhItem:nth-last-child(3) .wzh-text span.title, section .oppa ul.me li.wzhItem:nth-last-child(2) .wzh-text span.title, section .oppa ul.me li.wzhItem:nth-last-child(1) .wzh-text span.title {
  min-height: 100% !important;
}
section .oppa .coluna_esquerda.fixed,
section .oppa .coluna_direita.fixed {
  position: fixed;
  top: 65px;
  /* se o submenu estiver visível, pode somar +40px */
  height: calc(100vh - 65px);
  z-index: 49;
}
section.wizahar {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}
section.wizahar.xtends {
  display: flex;
  flex-direction: column;
}
section.wizahar.refColumns {
  background-color: rgba(136, 136, 136, 0.0549019608);
  /* */
  width: 100%;
  min-height: auto;
  height: auto;
  padding: 40px;
  /* Haja saco, pras cosias simples da vida; */
}
section.wizahar.refColumns .fix-resMin-w-100 {
  width: 100%;
}
section.wizahar.refColumns {
  /* haja paixão para as coisas delicadas na lida. */
}
section.wizahar.refColumns .adornoLivrariaPresents {
  display: none;
}
section.wizahar.refColumns {
  /* Carrossel sendo construído */
}
section.wizahar.refColumns .cabess span.title {
  font-weight: 900;
  color: rgb(20, 20, 20);
  font-size: 1.75rem;
  line-height: 2rem;
  text-align: center;
  vertical-align: top;
}
section.wizahar.refColumns .cabess p.resume {
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0px;
}
section.wizahar.refColumns .cabess span.stats {
  color: #888;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}
section.wizahar.refColumns .cabess span.stats a:hover {
  color: blue;
  text-decoration: underline;
}
section.wizahar.refColumns .cabess h1 {
  margin-top: 0px;
  width: 100%;
  height: auto;
  font-size: 2em;
  text-align: left;
  line-height: 1.73rem;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
section.wizahar.refColumns .cabess p {
  width: 100%;
  height: auto;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  text-align: center;
  line-height: 1.375rem;
  font-weight: 100;
  margin-bottom: 30px;
}
section.wizahar.refColumns .rodapezes {
  position: relative;
}
section.wizahar.refColumns .rodapezes p {
  bottom: 0;
  margin-top: 20px;
  margin-bottom: -10px;
  width: 100%;
  height: 30px;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  text-align: center;
  line-height: 30px;
  font-weight: 100;
}
section.wizahar.refColumns .carroussel-container {
  display: flex;
  justify-content: space-between; /* ou conforme necessário */
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  overflow: visible;
}
section.wizahar.refColumns .carroussel-container .controladoresCarrossel {
  position: absolute;
  margin-top: -10px;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 50px;
  height: 100%;
  border-right: 3px solid black;
  overflow: hidden;
}
section.wizahar.refColumns .carroussel-container .controladoresCarrossel:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0 !important;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, rgba(87, 87, 87, 0.774) 25%, transparent 100%);
}
section.wizahar.refColumns .carroussel-container .controladoresCarrossel .dirBtnCrrs {
  width: 32px;
  height: 32px;
  outline: 3px solid black;
}
section.wizahar.refColumns .carroussel-container {
  /* Rapidinho, só pra não diexar esses coitados avulsos iguais bolas de um velho saco */
}
@media (min-width: 1400px) {
  section.wizahar.refColumns .carroussel-container .controladoresCarrossel {
    margin-right: -28px;
  }
  section.wizahar.refColumns .carroussel-container .controladoresCarrossel:before {
    background: linear-gradient(to left, rgba(87, 87, 87, 0.2) 25%, transparent 100%) !important;
  }
  section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems:nth-last-child(1) {
    margin-right: 30px !important;
  }
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel {
  display: flex;
  flex-wrap: nowrap; /* Impede quebra de linha */
  overflow-x: hidden;
  scroll-behavior: smooth;
  max-width: 90vw;
  width: 100%;
  /*perspective: 1000px; Efeito que da um tchan nos cards, mas eu preferi por desabilitar.. detalhes') */
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems {
  flex: 0 0 auto; /* Garante que cada item mantenha seu tamanho */
  min-width: 250px;
  max-height: 500px;
  min-height: 400px;
  height: auto;
  background-color: rgba(105, 105, 105, 0.315);
  border-radius: 10px;
  border: 1px solid rgba(105, 105, 105, 0.01);
  outline: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 40px 5px rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
  transition-delay: 3s;
  will-change: transform;
  perspective: 1000px;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems:nth-last-child(1) {
  background-color: rgba(61, 61, 61, 0.315);
  margin-right: 60px;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: space-between;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookScreen {
  display: flex;
  align-items: center !important;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 340px;
  padding: 10px 0;
  z-index: 1;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookScreen img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  opacity: 1;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-top: auto;
  width: 100%;
  min-height: 100px;
  height: auto;
  background-color: rgba(39, 39, 39, 0.05);
  padding: 10px 13px;
  box-sizing: border-box;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails p.title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 222.66px;
  color: rgb(34, 31, 23);
  font-size: 1.1em;
  font-weight: 600;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails p.author {
  opacity: 1;
  font-size: 12px;
  color: #424242;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails p.author strong {
  color: rgb(134, 134, 134);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails .infoRest {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails .infoRest span.dataPub {
  opacity: 1;
  font-size: 12px;
  color: #494949;
  position: relative;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails .infoRest span.dataPub.verificado::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-53%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='%230095f6'/><path d='M10.0 17.0l-5.0-5.0 1.41-1.41L10.0 14.17l7.59-7.59L19.0 8.0l-9.0 9.0z' fill='%23ffffff'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  border-radius: 10px;
  box-shadow: inset 0 0 5px 2px rgb(0, 89, 255), 0 0 5px 0 rgba(0, 0, 0, 0.5);
  outline: 1px solid rgba(255, 255, 255, 0.5);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails .infoRest div.restInfos {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  max-width: 150px;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails .infoRest div.restInfos.d-none {
  display: none;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails .infoRest div.restInfos .usados {
  position: relative;
  color: rgba(0, 0, 0, 0.8);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails .infoRest div.restInfos .usados span.a {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails .infoRest div.restInfos .usados:after {
  content: "/";
  position: absolute;
  right: -7px;
  top: -2px;
  width: -moz-fit-content;
  width: fit-content;
  height: 20px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails .infoRest div.restInfos .novos {
  position: relative;
  color: rgba(0, 0, 0, 0.8);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails .infoRest div.restInfos .novos span.a {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  visibility: hidden;
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: 398px;
  font-size: 1rem;
  line-height: 1.5rem;
  background: radial-gradient(circle, rgb(39, 114, 255) 0%, rgb(0, 89, 255) 51%);
  color: white;
  padding: 10px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  opacity: 0;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .header-resBookColRefer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 50px;
  height: auto;
  font-weight: bold;
  margin-bottom: 8px;
  box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.05);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .header-resBookColRefer .fecharResumoRecomendadoColunista {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 10px;
  height: 10px;
  color: rgb(11, 6, 56);
  font-size: 20px;
  font-weight: 900;
  z-index: 999;
  text-shadow: -3px 3px 0px rgb(0, 162, 255);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .header-resBookColRefer .fecharResumoRecomendadoColunista:hover {
  color: rgb(2, 12, 58);
  text-shadow: -3px 3px 0px rgba(255, 255, 255, 0.301);
  cursor: pointer;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .header-resBookColRefer .title {
  display: -webkit-box;
  margin: 0;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1rem;
  font-weight: 100;
  text-shadow: 0 -1px 0 rgb(0, 162, 255);
  padding-right: 10px;
  line-height: 1.4rem;
  overflow: hidden;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .header-resBookColRefer .author {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer {
  max-height: 55%;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  outline: 7px solid rgba(255, 255, 255, 0.03);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer.expanded {
  max-height: 55%;
  overflow-y: auto;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer.expanded .sobreOlivrim {
  -webkit-line-clamp: 50;
  -webkit-box-orient: vertical;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer.expanded::-webkit-scrollbar {
  width: 8px;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer.expanded::-webkit-scrollbar-track {
  background: transparent;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer.expanded::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer.expanded:hover::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.05);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer.expanded::-webkit-scrollbar-button:single-button {
  display: block;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer.expanded::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><polygon points='0,8 4,0 8,8' fill='white'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer.expanded::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><polygon points='0,0 4,8 8,0' fill='white'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer .sobreOlivrim {
  display: -webkit-box;
  margin: 0;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  font-size: 0.95rem;
  padding-right: 10px;
  padding-top: 2px;
  line-height: 1.4rem;
  overflow: hidden;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .container-resBookColRefer .leiaMaisBtn {
  display: block;
  margin-top: 6px;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.9rem;
  padding: 0;
  position: relative;
  z-index: 1;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .extra-resBookColRefer {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #f0f0f0;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .extra-resBookColRefer .stars {
  font-size: 1.2rem;
  color: gold;
  margin-bottom: 4px;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .extra-resBookColRefer .info {
  font-style: italic;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .action-resBookColRefer {
  margin-top: auto;
  text-align: center;
  width: 100%;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .resumeBookColumnRefer .action-resBookColRefer .btn-resBookColRefer {
  width: 100%;
  background-color: rgba(111, 157, 255, 0.397);
  border: 1px solid #fff;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.hover, section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.active {
  border-radius: 5px;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.hover .card-inner .bookDetails, section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.active .card-inner .bookDetails {
  opacity: 1;
  transition: opacity 1500ms ease-in-out;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.hover .card-inner .bookScreen img, section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.active .card-inner .bookScreen img {
  opacity: 0;
  transition: opacity 1400ms ease-in-out;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.hover .card-inner .bookDetails p.title,
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.hover .card-inner p.author, section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.active .card-inner .bookDetails p.title,
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.active .card-inner p.author {
  opacity: 0;
  transition: opacity 100ms ease-in-out;
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.hover .card-inner .resumeBookColumnRefer, section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.active .card-inner .resumeBookColumnRefer {
  visibility: visible;
  opacity: 1;
  transition: opacity 800ms ease-in-out;
  filter: grayscale(20%);
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.hover:after, section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.active:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  outline: 1px solid rgb(0, 89, 255);
  box-shadow: inset 0 0 0 2px rgba(250, 250, 250, 0.5);
  z-index: -1;
  animation: pablinLivroTeste 800ms linear infinite;
}
@keyframes pablinLivroTeste {
  0%, 100% {
    border-color: red;
  }
  50% {
    border-color: blue;
  }
}
section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems.active .resumeBookColumnRefer .header-resBookColRefer .title {
  padding-right: 28px;
  /*box-shadow: inset -28px 0 0 0 red!important;
                          outline: 1px solid red!important;*/
}
section {
  /* Cuidando melhor dos espaços de base em horizontes */
}
section .coluna_esquerda,
section .coluna_direita {
  display: none;
}
section .coluna_esquerda.scrolled,
section .coluna_direita.scrolled {
  display: none;
}
@media (min-width: 1900px) {
  section .coluna_esquerda,
  section .coluna_direita {
    display: block;
  }
  section .coluna_esquerda.scrolled,
  section .coluna_direita.scrolled {
    display: block;
  }
  section {
    /* Aproveitando que já se tornou um cenário haha */
  }
  section.wizahar.refColumns {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px;
    min-height: 660px;
  }
  section.wizahar.refColumns .adornoLivrariaPresents {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    position: absolute;
    top: 40px;
    left: 40px;
    width: calc(100% - 80px);
    max-height: calc(50vh + 100px);
    height: 90%;
    z-index: 1;
  }
  section.wizahar.refColumns .adornoLivrariaPresents .esquerdAdorno-topBot .lineMidTeste,
  section.wizahar.refColumns .adornoLivrariaPresents .direitAdorno-topBot .lineMidTeste {
    width: 100%;
    height: 15vh;
    background-image: url("../deressos/adornos/intercessor.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  section.wizahar.refColumns .adornoLivrariaPresents .esquerdAdorno-topBot .lineMidTeste.adrDir-mid,
  section.wizahar.refColumns .adornoLivrariaPresents .direitAdorno-topBot .lineMidTeste.adrDir-mid {
    transform: scale(-1, -1);
  }
  section.wizahar.refColumns .adornoLivrariaPresents .esquerdAdorno-topBot {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
  }
  section.wizahar.refColumns .adornoLivrariaPresents .esquerdAdorno-topBot .adrEsq-top,
  section.wizahar.refColumns .adornoLivrariaPresents .esquerdAdorno-topBot .adrEsq-bot {
    width: 100%;
    min-height: 22vh;
    height: auto;
    background-image: url("../deressos/adornos/canto_1.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  section.wizahar.refColumns .adornoLivrariaPresents .esquerdAdorno-topBot .adrEsq-bot {
    transform: scale(1, -1);
  }
  section.wizahar.refColumns .adornoLivrariaPresents .direitAdorno-topBot {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
  }
  section.wizahar.refColumns .adornoLivrariaPresents .direitAdorno-topBot .adrDir-top,
  section.wizahar.refColumns .adornoLivrariaPresents .direitAdorno-topBot .adrDir-bot {
    width: 100%;
    min-height: 22vh;
    height: auto;
    background-image: url("../deressos/adornos/canto_1.png");
    background-size: contain;
    background-repeat: no-repeat;
    transform: scale(-1, 1);
  }
  section.wizahar.refColumns .adornoLivrariaPresents .direitAdorno-topBot .adrDir-bot {
    transform: scale(-1, -1);
  }
  section.wizahar.refColumns .cabess {
    margin-top: -40px;
    margin-bottom: 12px;
    position: relative;
  }
  section.wizahar.refColumns .cabess h1 {
    font-size: 3em;
    text-align: center;
    color: rgb(53, 47, 31);
  }
  section.wizahar.refColumns .rodapezes {
    margin-top: 20px;
    margin-bottom: -30px;
  }
  section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems {
    background-color: rgba(177, 147, 97, 0.349) !important;
  }
  section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails p.title {
    color: rgb(39, 30, 5);
  }
  section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails p.author {
    color: rgb(32, 1, 28);
  }
  section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails p.author strong {
    color: rgb(32, 1, 28);
  }
  section.wizahar.refColumns .carroussel-container ul.wzh-carroussel li.wzh-carrousselItems .card-inner .bookDetails p.author:hover {
    cursor: pointer;
  }
  section.wizahar.refColumns .fix-resMin-w-100 {
    z-index: 2;
  }
}
section {
  /* some com isso pra resoluções onde o trampo é maior que o tempo HAHA */
}
@media (max-height: 900px) {
  section.wizahar.refColumns .adornoLivrariaPresents {
    display: none;
  }
}
@media (min-height: 1090px) {
  section.wizahar.refColumns .adornoLivrariaPresents {
    display: none;
  }
}

.card-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
.card-wrapper .ribbon-zebra {
  position: absolute;
  top: 40px;
  right: 8px;
  width: 100px;
  height: 10px;
  background: repeating-linear-gradient(135deg, #000, #000 5px, #ff0 5px, #ff0 10px);
  transform: rotate(45deg) translate(20%, -50%);
  transform-origin: top right;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  outline: 2px solid rgba(128, 128, 128, 0.315);
  z-index: 20;
}

/*
    -
    -   Progress-bar
    -
*/
.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #ccc;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  outline: 2px solid rgba(0, 0, 0, 0.1);
}
.progress-bar .progress-fill {
  height: 100%;
  width: 0%;
  position: relative;
  animation: fillProgress 3s ease-out forwards;
  overflow: hidden;
  border-radius: 10px;
}
.progress-bar .progress-fill.darkStripes:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(5, 5, 5);
  background-image: repeating-linear-gradient(-45deg, rgb(5, 5, 5), rgb(5, 5, 5) 25px, rgba(255, 255, 255, 0.5) 25px, rgba(255, 255, 255, 0.5) 50px);
  background-size: 150% 100%;
  animation: progressStripes 2s linear infinite;
  box-shadow: inset 0 0 15px 0px rgb(0, 0, 0);
  z-index: 1;
}
.progress-bar .progress-fill.blueStripes:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(78, 146, 209);
  background-image: repeating-linear-gradient(-45deg, rgb(78, 146, 209), rgb(78, 80, 209) 25px, rgba(255, 255, 255, 0.2) 25px, rgba(255, 255, 255, 0.2) 50px);
  background-size: 150% 100%;
  animation: progressStripes 2s linear infinite;
  box-shadow: inset 0 0 15px 0px rgb(78, 80, 209);
  z-index: 1;
}

@keyframes fillProgress {
  95% {
    border-radius: 10px;
  }
  to {
    width: 100%;
    border-radius: 0px;
  }
}
@keyframes progressStripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -70px 0px;
  }
}
/*
    -
    -   Rádio ou Player
    -
*/
nav span.divisorzeen {
  width: 3px;
  height: 30px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
nav #radioPlayer .flex-grow {
  position: relative;
  overflow: hidden;
}
nav #radioPlayer #radioSelector,
nav #radioPlayer #playerDisplay {
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}
nav #radioPlayer #radioSelector.hidden,
nav #radioPlayer #playerDisplay.hidden {
  display: none;
}
nav #radioPlayer .volume-control {
  -webkit-appearance: none;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
nav #radioPlayer .volume-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
nav #radioPlayer .volume-control::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
nav #playerControls {
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}
nav #playerControls:not(.hidden) {
  max-height: 200px; /* Altura máxima quando aberto */
}

/* 
    -
    - SHOP
    -
*/
.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
  padding-top: 15px;
}
.form-group input,
.form-group textarea,
.form-group chebkbox,
.form-group select {
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  color: rgb(0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 1em;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group chebkbox:focus,
.form-group select:focus {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid white;
  outline: 3px solid rgba(255, 255, 255, 0.2);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  flex: 1;
  height: 40px;
  background: rgba(255, 255, 255, 0.8) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E") no-repeat right 16px center;
  padding-right: 2.5rem;
  background-size: 20px;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  transition: border-color 0.3s;
}
.form-group select::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.875rem;
  color: #6b7280;
}
.form-group select:focus {
  background: rgba(255, 255, 255, 0.8) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 4.5C7.5 4.5 3.7 8 2 12c1.7 4 5.5 7.5 10 7.5s8.3-3.5 10-7.5c-1.7-4-5.5-7.5-10-7.5zM12 15a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='white'/%3E%3C/svg%3E") no-repeat right 16px center;
  padding-right: 2.5rem;
  background-size: 20px;
}

@media screen and (max-height: 335px) {
  .turntable-case,
  .container,
  .insta-badge,
  .pprtMn-badge,
  .modalPapoReto,
  .sobreNois,
  .redirect-banner,
  .slide-up-btn,
  .menu-btn {
    display: none !important;
  }
  .audio-controls {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, green 33.333%, yellow 33.333% 66.666%, red 66.666%);
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
  }
  body {
    overflow: hidden;
  }
}
/* Ocultar .audio-controls por padrão, mostrar apenas em mobile ou height baixa */
.audio-controls {
  display: none;
}/*# sourceMappingURL=wizahar.css.map */