/* =======================
   CAOTIZE LOADING STYLE
   ======================= */
.logo {
  width: 50%;
  text-align: center;
  margin-left: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0); /* posição normal */
  transition: all 1s ease;
  height: 60px;
}
.logo img {
  height: 100%;
  object-fit: contain;
  transition: all 1s ease;
}
/* ====== TEXTO "CARREGANDO" ====== */
#carregando {
  top: 10%;
}
#slogan {
    bottom: 10%;
}
#carregando, #slogan{
  width: 100%;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  position: absolute;  
  font-family: "Lexend Deca", sans-serif;
}
header.loaded #carregando, header.loaded #slogan {
  display: none;
}
/* ====== HEADER ESTADOS ====== */
header {
  transition: all 0.5s ease;
  background: #000 !important;
}
header.loading {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh !important;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
header.loaded {
  height: 60px !important;
}
header.loading .logo img {
  animation: logoPulse 1.8s ease-in-out infinite; /* só o scale */
}
/* ====== MENUS ====== */
header.loading .abreMenu, header.loading .busca, header.loading .login {
  display: none !important;
}
/* ====== ANIMAÇÃO PULSANTE ====== */
@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.96);
    opacity: 0.6;
  }
}
/* ============================================
   SETAS LATERAIS FIXAS
   ============================================ */
.cao-arrow {
  position: fixed;
  top: 60%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  z-index: 999;
  user-select: none;
  transition: all 0.3s ease;
  font-family: monospace;
  transition: all 0.5s ease;
  opacity: 1;
  text-shadow: 0 0 10px #000;
}
.cao-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.cao-arrow:not(.visible) {
  opacity: 0;
  pointer-events: none;
}
.cao-arrow-left {
  left: -20px;
  padding-left: 10px;
}
.cao-arrow-left:not(.visible) {
  transform: translate(-80%, -50%);
}
.cao-arrow-right:not(.visible) {
  transform: translate(80%, -50%);
}
.cao-arrow-right {
  right: -20px;
  padding-right: 10px;
}
/* Opcional: esconder em telas muito pequenas */
@media (max-width: 480px) {
  .cao-arrow {
    width: 45px;
    height: 45px;
    font-size: 30px;
    line-height: 45px;
  }
}
@media screen and (min-width: 700px) {
  .cao-arrow {
    top: 50%;
  }