/* ===============================
   DRIP WIDGET BRANDS
   =============================== */

.dw-brands-widget,
.dw-brands-widget * {
  box-sizing: border-box;
}

/* TÍTULO */
.dw-brands-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #222;
  text-transform: none;
}

/* CONTAINER - SCROLL HORIZONTAL */
.dw-brands-container {
  display: flex !important;
  flex-direction: row !important;
  gap: 30px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  list-style: none !important;
}

.dw-brands-container::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.dw-brand-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  text-decoration: none !important;
  color: inherit;
  flex-shrink: 0 !important;
  scroll-snap-align: start;
  transition: opacity 0.2s ease;
}

.dw-brand-item:hover {
  opacity: 0.7;
}

/* LOGO */
.dw-brand-logo {
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px;
}

.dw-brand-logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  padding: 10px !important;
}

/* PLACEHOLDER quando não tem imagem */
.dw-brand-placeholder {
  font-size: 24px;
  font-weight: 700;
  color: #999;
}

/* NOME */
.dw-brand-name {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===============================
   TAMANHOS - SMALL
   =============================== */
.dw-brand-size-small .dw-brand-item {
  width: 80px !important;
  min-width: 80px !important;
}

.dw-brand-size-small .dw-brand-logo {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  min-height: 80px !important;
}

.dw-brand-size-small .dw-brand-name {
  font-size: 12px;
}

.dw-brand-size-small .dw-brand-placeholder {
  font-size: 20px;
}

/* ===============================
   TAMANHOS - MEDIUM (default)
   =============================== */
.dw-brand-size-medium .dw-brand-item {
  width: 110px !important;
  min-width: 110px !important;
}

.dw-brand-size-medium .dw-brand-logo {
  width: 110px !important;
  height: 110px !important;
  min-width: 110px !important;
  min-height: 110px !important;
}

.dw-brand-size-medium .dw-brand-name {
  font-size: 13px;
}

.dw-brand-size-medium .dw-brand-placeholder {
  font-size: 24px;
}

/* ===============================
   TAMANHOS - LARGE
   =============================== */
.dw-brand-size-large .dw-brand-item {
  width: 140px !important;
  min-width: 140px !important;
}

.dw-brand-size-large .dw-brand-logo {
  width: 140px !important;
  height: 140px !important;
  min-width: 140px !important;
  min-height: 140px !important;
}

.dw-brand-size-large .dw-brand-name {
  font-size: 14px;
}

.dw-brand-size-large .dw-brand-placeholder {
  font-size: 32px;
}

/* ===============================
   RESPONSIVO
   =============================== */
@media (max-width: 768px) {
  .dw-brands-title {
    font-size: 32px;
    margin-bottom: 16px;
    padding: 0 15px;
  }

  .dw-brands-container {
    gap: 20px;
    padding: 15px;
  }

  /* Ajustes mobile para cada tamanho */
  .dw-brand-size-small .dw-brand-item {
    width: 70px;
  }

  .dw-brand-size-small .dw-brand-logo {
    width: 70px;
    height: 70px;
  }

  .dw-brand-size-medium .dw-brand-item {
    width: 90px;
  }

  .dw-brand-size-medium .dw-brand-logo {
    width: 90px;
    height: 90px;
  }

  .dw-brand-size-large .dw-brand-item {
    width: 110px;
  }

  .dw-brand-size-large .dw-brand-logo {
    width: 110px;
    height: 110px;
  }

  .dw-brand-name {
    font-size: 11px;
  }
}
