#smart-lgpd-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #121212;
  color: #fff;
  padding: 20px;
  font-size: 14px;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.smart-lgpd-hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.smart-lgpd-container {
  max-width: 960px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.smart-lgpd-container p {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

.smart-lgpd-container a {
  color: #4eaaff;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.smart-lgpd-container a:hover {
  color: #66b8ff;
}

.smart-lgpd-categorias {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.smart-lgpd-categorias label {
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.smart-lgpd-categorias label:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.smart-lgpd-categorias input[type="checkbox"] {
  cursor: pointer;
  margin: 0;
}

.smart-lgpd-categorias input[type="checkbox"]:disabled {
  opacity: 0.7;
}

.smart-lgpd-buttons {
  display: flex;
  justify-content: center;
}

.smart-lgpd-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease;
  min-width: 160px;
  background-color: #1cad1a;
}

.smart-lgpd-buttons button:hover {
  background-color: #189018;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.smart-lgpd-buttons button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
  #smart-lgpd-banner {
    padding: 15px;
  }
  
  .smart-lgpd-container {
    gap: 12px;
  }
  
  .smart-lgpd-container p {
    font-size: 14px;
  }
  
  .smart-lgpd-categorias {
    gap: 15px;
  }
  
  .smart-lgpd-categorias label {
    font-size: 12px;
  }
  
  .smart-lgpd-buttons {
    gap: 8px;
  }
  
  .smart-lgpd-buttons button {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  #smart-lgpd-banner {
    padding: 12px;
  }
  
  .smart-lgpd-container p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .smart-lgpd-categorias {
    flex-direction: column;
    gap: 8px;
  }
  
  .smart-lgpd-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .smart-lgpd-buttons button {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 120px;
  }
}
