
/* ====== SISTEMA DE COOKIES BANNER ====== */
.thinscen-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  color: var(--text-white);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(4, 2, 59, 0.3);
  z-index: 999999;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  backdrop-filter: blur(10px);
}

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

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

.thinscen-cookie-text {
  flex: 1;
  min-width: 300px;
}

.thinscen-cookie-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
}

.thinscen-cookie-description {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
  font-size: 0.95rem;
}

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

.thinscen-btn {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-hover));
  color: var(--text-white);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  white-space: nowrap;
}

.thinscen-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98, 81, 211, 0.4);
  color: var(--text-white);
  text-decoration: none;
}

.thinscen-btn-reject {
  background: linear-gradient(135deg, #6c757d, #495057);
}

.thinscen-btn-reject:hover {
  box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.thinscen-cookie-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.thinscen-cookie-link:hover {
  color: var(--text-white);
  text-decoration: underline;
}
