/* Banner de cookies */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #131313;
  border-top: 1px solid rgba(232, 93, 31, 0.3);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 1.25rem 1.5rem;
  display: none;
  animation: slideUp 0.4s ease;
}
#cookieBanner.visible { display: block; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 700px) {
  .cookie-content { flex-direction: row; gap: 2rem; }
}
.cookie-text {
  flex: 1;
  color: #b0b0b0;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 700px) { .cookie-text { text-align: left; } }
.cookie-text a { color: #E85D1F; text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: #E85D1F;
  color: white;
}
.cookie-btn-accept:hover { background: #FF7A2E; }
.cookie-btn-reject {
  background: transparent;
  color: #999;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cookie-btn-reject:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }

/* Checkbox de consentimiento en el formulario */
.consent-group {
  margin: 1rem 0 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #b0b0b0;
  line-height: 1.5;
}
.consent-item:last-child { margin-bottom: 0; }
.consent-item input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #E85D1F;
}
.consent-item a { color: #E85D1F; text-decoration: none; }
.consent-item a:hover { text-decoration: underline; }
.consent-required { color: #E85D1F; font-weight: 600; }
.consent-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: none;
}
.consent-error.visible { display: block; }

/* Footer con links legales */
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 1.5rem 0 1rem;
}
.legal-links a {
  color: #999;
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.legal-links a:hover { color: #E85D1F; }
