/* ---------- RESET BÁSICO ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- ESTILO GLOBAL ---------- */
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background-color: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ---------- CONTENEDOR ---------- */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 1.5s ease-out;
}

/* ---------- LOGO ---------- */
.logo {
  max-width: 60%;
  height: auto;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideIn 1s ease-out forwards;
}

/* ---------- TÍTULO ---------- */
h1 {
  font-size: 2rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 1s ease-out 0.3s forwards;
}

/* ---------- SUBTÍTULO ---------- */
p {
  margin-top: 10px;
  color: #8ab4f8;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 1s ease-out 0.6s forwards;
}

/* ---------- FOOTER ---------- */
footer {
  margin-top: 60px;
  font-size: 0.8rem;
  color: #666;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 1s ease-out 1s forwards;
}

/* ---------- ANIMACIONES ---------- */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---------- ESTILOS DEL BANNER DE COOKIES ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 22px;
  background: rgba(10,10,10,0.95);
  color: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.6);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, transform .3s ease, visibility .3s;
  z-index: 9999;
  max-width: 980px;
  margin: 0 auto;
}

/* cuando visible */
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* contenedor interno */
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* texto */
.cookie-text {
  flex: 1 1 60%;
  min-width: 220px;
}
.cookie-text p {
  margin-top: 6px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* acciones */
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

/* botones */
.btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-primary {
  background: #1f7fff;
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: #ddd;
  border: 1px solid rgba(255,255,255,0.08);
}

/* meta link (pequeño) */
.cookie-meta {
  margin-top: 10px;
  text-align: right;
}
.cookie-meta a {
  color: #98b2ff;
  text-decoration: none;
  font-size: 0.85rem;
}

/* botón "Gestionar cookies" en footer (pequeño) */
.manage-btn {
  background: none;
  border: none;
  color: #98b2ff;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.87rem;
  padding: 0;
}
