/**
 * Carrossel de Logos - CONFUT Nordeste
 * CSS separado para não corromper o arquivo principal
 */

/* ========== CARROSSEL DE LOGOS - NORDESTE ========== */
.nordeste-site-brands {
  background: #ffffff !important;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.nordeste-site-brands::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.01) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.005) 0%, transparent 50%);
  pointer-events: none;
}

.ne-section-heading--brands {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.ne-section-heading__title {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.ne-section-heading__lead {
  color: #64748b;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  max-width: 28rem;
  margin: 0 auto;
}

.ne-section-heading__rule {
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #8b0000, #a52a2a);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Seções de Patrocinadores e Expositores */
.nordeste-brands__tier {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.nordeste-brands__tier:last-child {
  margin-bottom: 0;
}

.nordeste-brands__tier-title {
  color: #334155;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

/* Container do Carrossel */
.nordeste-brands__carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #fafbfc;
  border-radius: 12px;
  padding: 2.5rem 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.nordeste-brands__carousel::before,
.nordeste-brands__carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}

.nordeste-brands__carousel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
}

.nordeste-brands__carousel::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, #ffffff 100%);
}

/* Track do Carrossel */
.nordeste-brands__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1rem;
  animation: nordeste-marquee 15s linear infinite !important;
  will-change: transform;
}

.nordeste-brands__track:hover {
  animation-play-state: paused;
}

/* Patrocinadores - Layout Estático */
.nordeste-brands__sponsors-static {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: min(100%, 800px);
  margin: 0 auto;
}

/* Cards das Logos */
.nordeste-brands__card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 140px;
  background: #f8f9fa;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.01);
}

/* Cards maiores para patrocinadores estáticos */
.nordeste-brands__sponsors-static .nordeste-brands__card {
  width: 280px;
  height: 160px;
  padding: 1rem;
}

.nordeste-brands__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.02) 0%, rgba(165, 42, 42, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nordeste-brands__card:hover {
  background: #ffffff;
  border-color: rgba(139, 0, 0, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(139, 0, 0, 0.04);
}

.nordeste-brands__card:hover::before {
  opacity: 1;
}

.nordeste-brands__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.nordeste-brands__img {
  max-width: calc(100% - 4px);
  max-height: calc(100% - 4px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1) contrast(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nordeste-brands__card:hover .nordeste-brands__img {
  filter: brightness(1.02) contrast(1.02);
  transform: scale(1.03);
}

/* Ajustes individuais para logos com muito espaço interno */
[data-brand="investfut"] .nordeste-brands__img {
  max-width: 95%;
  max-height: 95%;
  transform: scale(1.15);
}

[data-brand="treeal"] .nordeste-brands__img {
  max-width: 92%;
  max-height: 92%;
  transform: scale(1.08);
}

[data-brand="fpssports"] .nordeste-brands__img {
  max-width: 94%;
  max-height: 94%;
  transform: scale(1.12);
}

[data-brand="touzonadvogados"] .nordeste-brands__img {
  max-width: 93%;
  max-height: 93%;
  transform: scale(1.10);
}

[data-brand="prematch"] .nordeste-brands__img {
  max-width: 94%;
  max-height: 94%;
  transform: scale(1.08);
}

[data-brand="focoradical"] .nordeste-brands__img {
  max-width: 92%;
  max-height: 92%;
  transform: scale(1.12);
}

[data-brand="2ticket"] .nordeste-brands__img {
  max-width: 93%;
  max-height: 93%;
  transform: scale(1.10);
}

/* Hover para logos ajustados */
[data-brand="investfut"]:hover .nordeste-brands__img {
  transform: scale(1.20);
}

[data-brand="treeal"]:hover .nordeste-brands__img {
  transform: scale(1.13);
}

[data-brand="fpssports"]:hover .nordeste-brands__img {
  transform: scale(1.17);
}

[data-brand="touzonadvogados"]:hover .nordeste-brands__img {
  transform: scale(1.15);
}

[data-brand="prematch"]:hover .nordeste-brands__img {
  transform: scale(1.13);
}

[data-brand="focoradical"]:hover .nordeste-brands__img {
  transform: scale(1.17);
}

[data-brand="2ticket"]:hover .nordeste-brands__img {
  transform: scale(1.15);
}

/* Animação do Marquee */
@keyframes nordeste-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Duplicação para loop infinito */
.nordeste-brands__track {
  display: flex;
}

.nordeste-brands__track-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nordeste-site-brands {
    padding: 3rem 0 2rem;
  }
  
  .ne-section-heading--brands {
    margin-bottom: 2rem;
  }
  
  .nordeste-brands__tier {
    margin-bottom: 2rem;
  }
  
  .nordeste-brands__carousel {
    padding: 2rem 0;
    border-radius: 12px;
  }
  
  .nordeste-brands__carousel::before,
  .nordeste-brands__carousel::after {
    width: 60px;
  }
  
  .nordeste-brands__card {
    width: 200px;
    height: 120px;
    padding: 0.5rem;
  }
  
  .nordeste-brands__sponsors-static .nordeste-brands__card {
    width: 240px;
    height: 140px;
    padding: 0.75rem;
  }
  
  .nordeste-brands__sponsors-static {
    gap: 2rem;
  }
  
  .nordeste-brands__track {
    gap: 1.5rem;
    animation-duration: 12s !important;
  }
}

@media (max-width: 480px) {
  .nordeste-brands__card {
    width: 180px;
    height: 110px;
    padding: 0.4rem;
  }
  
  .nordeste-brands__sponsors-static .nordeste-brands__card {
    width: 220px;
    height: 130px;
    padding: 0.6rem;
  }
  
  .nordeste-brands__sponsors-static {
    gap: 1.5rem;
  }
  
  .nordeste-brands__track {
    gap: 1rem;
    animation-duration: 10s !important;
  }
  
  .nordeste-brands__carousel::before,
  .nordeste-brands__carousel::after {
    width: 40px;
  }
}

/* Debug removido - todas as logos estão disponíveis */
