.premium-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.anunciantes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

/* .anunciante-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e1e4e8;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
} */

.anunciante-card {
  background: white;
  border-radius: 8px;
  padding: 14px;
  border: 1px solid #e1e4e8;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: none;
  opacity: 0;
}

.anunciante-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: #667eea;
}

.anunciante-card.visible {
  display: flex;       /* mostra */
  opacity: 1;
  transform: translateY(0);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.anunciante-logo {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  background: #f0f2f5;
  flex-shrink: 0;
}

.company-info {
  flex: 1;
  min-width: 0;
}

.company-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.company-category {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 8px;
}

.premium-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #667eea;
}

.produtos-container {
  margin-bottom: 20px;
  position: relative;
}

.produtos-label {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.produtos-scroll {
  position: relative;
  overflow: hidden;
}

.produtos-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 10px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e0 #f0f2f5;
}

.produtos-wrapper::-webkit-scrollbar {
  height: 6px;
}

.produtos-wrapper::-webkit-scrollbar-track {
  background: #f0f2f5;
  border-radius: 3px;
}

.produtos-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.produtos-wrapper::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

.produto-tag {
  background: #f0f2f5;
  color: #4a5568;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.produto-tag:hover {
  background: #e2e8f0;
  border-color: #cbd5e0;
}

.scroll-indicator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, white, transparent);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.produtos-container:hover .scroll-indicator {
  opacity: 1;
}

.scroll-arrow {
  color: #667eea;
  font-size: 16px;
}

.btn-primary {
  flex: 1;
  background: #667eea;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #5a67d8;
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: #4a5568;
  border: 1px solid #e1e4e8;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
}

.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #cbd5e0;
}

.contact-info {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 14px;
}

.contact-info.show {
  display: block;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-weight: 500;
  color: #6c757d;
  min-width: 60px;
}

.contact-value {
  color: #2c3e50;
}

.contact-value a {
  color: #667eea;
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0;
  }

  .header {
    margin: 0;
    padding: 16px;
  }

  .header h1 {
    font-size: 20px;
  }

  .anunciantes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .anunciante-card {
    border-radius: 8px;
    padding: 16px;
  }

  .card-header {
    gap: 12px;
  }

  .anunciante-logo {
    width: 60px;
    height: 60px;
  }

  .company-name {
    font-size: 16px;
  }

  .company-category {
    font-size: 13px;
  }

  .produtos-wrapper {
    padding-bottom: 8px;
  }

  .produto-tag {
    font-size: 12px;
    padding: 5px 12px;
  }

  .card-actions {
    flex-direction: column;
  }

  .btn-secondary {
    min-width: auto;
    flex: 1;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 18px;
    gap: 6px;
  }

  .premium-badge {
    padding: 3px 8px;
    font-size: 11px;
  }

  .anunciante-card {
    padding: 14px;
  }

  .company-name {
    font-size: 15px;
  }

  .btn-primary {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anunciante-card {
  animation: fadeIn 0.5s ease-out;
}

.anunciante-card:nth-child(2) {
  animation-delay: 0.1s;
}

.anunciante-card:nth-child(3) {
  animation-delay: 0.2s;
}

.anunciante-card:nth-child(4) {
  animation-delay: 0.3s;
}

/* Empty State */
.empty-state {
  background: white;
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  border: 1px solid #e1e4e8;
  grid-column: 1 / -1;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
}

.empty-description {
  font-size: 14px;
  color: #6c757d;
  max-width: 400px;
  margin: 0 auto;
}