/* Fondo oscuro semitransparente */
#overlayCookie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 998;
  display: none;
}

/* Modal de cookies centrado */
#mensajeCookie {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2C2C2E;
  color: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  z-index: 999;
  max-width: 90%;
  width: 400px;
  text-align: center;
  display: none;
  animation: aparecer 0s ease;
  /*animation: aparecer 0.4s ease;*/
}

@keyframes aparecer {
  from {
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

#mensajeCookie p {
  margin-bottom: 15px;
  font-size: 16px;
}

.botones-cookie {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center;     /* alinea verticalmente */
  gap: 15px;               /* espacio entre botones */
  flex-wrap: nowrap;       /* evita que se apilen */
}

.botones-cookie button {
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  transition: 0s;
  /*transition: 0.3s;*/
}