/* Estilos para el banner de cookies */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  color: #ffffff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 250px;
}

.cookie-consent-text h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: bold;
}

.cookie-consent-text p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.cookie-consent-text a:hover {
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-accept,
.btn-reject {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-accept {
  background-color: #FFD700;
  color: #000000;
}

.btn-accept:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.btn-reject {
  background-color: transparent;
  color: white;
  border: 2px solid #ffffff;
}

.btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 15px;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-buttons {
    justify-content: stretch;
  }

  .btn-accept,
  .btn-reject {
    flex: 1;
  }

  .cookie-consent-text {
    font-size: 13px;
  }

  .cookie-consent-text h3 {
    font-size: 16px;
  }
}
.powered-by {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #999;
  letter-spacing: 0.5px;
}