/* ========================================
   BANNER DE COOKIES
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-top: 3px solid #1354ed;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner-content {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e7eb;
}

.cookie-banner-content a {
  color: #60a5fa;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-banner-content a:hover {
  color: #93c5fd;
}

.cookie-banner-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner-btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.cookie-banner-btn-accept {
  background: linear-gradient(135deg, #1354ed 0%, #0d3eb2 100%);
  color: white;
}

.cookie-banner-btn-accept:hover {
  background: linear-gradient(135deg, #0d3eb2 0%, #082a7a 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(19, 84, 237, 0.4);
}

.cookie-banner-btn-decline {
  background: transparent;
  color: #9ca3af;
  border: 2px solid #4b5563;
}

.cookie-banner-btn-decline:hover {
  background: #374151;
  color: white;
  border-color: #6b7280;
}

/* Ícone de cookie */
.cookie-icon {
  font-size: 1.5rem;
  margin-right: 5px;
  vertical-align: middle;
}

/* Animação de entrada */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner.show {
  animation: slideUp 0.4s ease-out;
}

/* Responsividade */
@media (max-width: 992px) {
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .cookie-banner-content {
    text-align: center;
    min-width: 100%;
  }

  .cookie-banner-actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 15px 0;
  }

  .cookie-banner-content p {
    font-size: 0.9rem;
  }

  .cookie-banner-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cookie-banner-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner-btn {
    width: 100%;
    text-align: center;
  }
}

