/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 650px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
  z-index: 10000;
  display: none; /* Controlado por JS */
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #F1F5F9;
}

.cookie-content {
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

.cookie-content a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 122, 0, 0.2);
  transition: border-bottom 0.2s;
}

.cookie-content a:hover {
  border-bottom: 2px solid #ff7a00;
}

.btn-accept {
  background: #ff7a00;
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25);
}

.btn-accept:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.35);
}

.btn-reject {
  background: transparent;
  color: #64748B;
  border: 1px solid #E2E8F0;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reject:hover {
  background: #F8FAFC;
  color: #0F172A;
  border-color: #CBD5E1;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 16px;
    padding: 24px;
    gap: 16px;
  }
  .btn-accept {
    width: 100%;
  }
}
