/* ========================================
   WRAP
======================================== */

.apoiadores-wrap{
  width:100% !important;
  max-width:1400px !important;
  margin:40px auto !important;
  position:relative !important;
  box-sizing:border-box !important;
  padding: 0 10px !important;
}

/* ========================================
   TRACK
======================================== */

.apoiadores-track{
  display:flex !important;
  gap:24px !important;
  align-items:stretch !important;
  box-sizing:border-box !important;
}

/* Desktop: 4 colunas */
.apoiadores-track .apoiador-card{
  flex: 0 0 calc((100% - 24px * 3) / 4) !important;
}

/* Static */
.apoiadores-wrap--static .apoiadores-track{
  overflow:hidden !important;
}

/* Slider */
.apoiadores-wrap--slider .apoiadores-track{
  overflow-x:auto !important;
  overflow-y:hidden !important;
  scroll-snap-type:x mandatory !important;
  -webkit-overflow-scrolling:touch !important;
  padding: 6px 2px 14px !important;
}

.apoiadores-wrap--slider .apoiador-card{
  scroll-snap-align:start !important;
}

/* ========================================
   SETAS (IMAGENS)
======================================== */

.apoiadores-nav{
  position:absolute !important;
  top:50% !important;
  transform: translateY(-50%) !important;

  width:32px !important;
  height:32px !important;

  border:none !important;
  background-color:transparent !important;
  background-repeat:no-repeat !important;
  background-position:center !important;
  background-size:100% 100% !important;

  cursor:pointer !important;
  padding:0 !important;

  z-index:999 !important;

  transition: transform .2s ease, opacity .2s ease !important;
}

/* Hover */
.apoiadores-nav:hover{
  transform: translateY(-50%) scale(1.08) !important;
}

/* Clique */
.apoiadores-nav:active{
  transform: translateY(-50%) scale(0.95) !important;
}

/* Desabilitado */
.apoiadores-nav:disabled{
  opacity:0 !important;
  pointer-events:none !important;
}

/* POSIÇÃO */
.apoiadores-nav--prev{ 
  left:-10px !important;
  background-image:url("https://boxlevel.com.br/wp-content/uploads/2026/01/5HyTzTZvEKYToqF2WkQZ.png") !important;
}

.apoiadores-nav--next{ 
  right:-10px !important;
  background-image:url("https://boxlevel.com.br/wp-content/uploads/2026/01/rLZrCNaLDeLroRG8tyIS.png") !important;
}

/* ========================================
   CARD
======================================== */

.apoiador-card{
  background:#fff !important;
  border-radius:20px !important;
  padding:40px 30px 30px !important;
  box-shadow:0 2px 8px rgba(0,0,0,0.06) !important;
  transition: all 0.3s ease !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  text-align:center !important;
}

.apoiador-card:hover{
  transform: translateY(-5px) !important;
  box-shadow:0 8px 20px rgba(0,0,0,0.1) !important;
}

/* Imagem */
.apoiador-card-imagem{
  width:120px !important;
  height:120px !important;
  margin-bottom:20px !important;
  border-radius:50% !important;
  overflow:hidden !important;
}

.apoiador-card-imagem img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  border-radius:50% !important;
}

/* Texto */
.apoiador-card-info{
  font-size:13px !important;
  color:#9ca3af !important;
  margin-bottom:8px !important;
}

.apoiador-card-titulo{
  font-size:24px !important;
  font-weight:700 !important;
  color:#1f2937 !important;
  margin-bottom:15px !important;
}

.apoiador-card-mensagem{
  font-size:14px !important;
  color:#6b7280 !important;
  line-height:1.6 !important;
}

/* ========================================
   TABLET
======================================== */

@media (max-width:1024px){
  .apoiadores-track{ gap:20px !important; }

  .apoiadores-track .apoiador-card{
    flex: 0 0 calc((100% - 20px * 3) / 4) !important;
  }

  .apoiadores-nav--prev{ left:-6px !important; }
  .apoiadores-nav--next{ right:-6px !important; }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width:768px){
  .apoiadores-track{ gap:16px !important; }

  .apoiadores-track .apoiador-card{
    flex: 0 0 calc((100% - 16px * 2) / 3) !important;
  }

  /* mantém setas no mobile */
  .apoiadores-nav{
    display:block !important;
    width:40px !important;
    height:40px !important;
  }
}

/* ========================================
   TELAS PEQUENAS
======================================== */

@media (max-width:480px){
  .apoiadores-nav{
    width:36px !important;
    height:36px !important;
  }
}
/* ZERA qualquer coisa interna do botão */
.apoiadores-nav{
  font-size:0 !important;
  color:transparent !important;
}

/* Remove pseudo-elementos antigos (caso existam) */
.apoiadores-nav::before,
.apoiadores-nav::after{
  content:none !important;
  display:none !important;
}

/* GARANTE que só a imagem apareça */
.apoiadores-nav{
  background-repeat:no-repeat !important;
  background-position:center !important;
  background-size:100% 100% !important;

  /* ✨ SOMBRA ATRÁS DA SETA */
  box-shadow: 0 8px 20px rgba(0,0,0,0.18) !important;
  border-radius:50% !important;
}

/* Hover mais bonito */
.apoiadores-nav:hover{
  box-shadow: 0 12px 26px rgba(0,0,0,0.18) !important;
}
/* Remove scrollbar horizontal do slider */
.apoiadores-wrap--slider .apoiadores-track{
  scrollbar-width: none !important;      /* Firefox */
  -ms-overflow-style: none !important;   /* IE / Edge antigo */
}

.apoiadores-wrap--slider .apoiadores-track::-webkit-scrollbar{
  display: none !important;              /* Chrome / Safari */
}

