/* ============================================================
   AVISO GLOBAL DE COOKIES
   Actualmente informativo: la web no carga cookies no esenciales.
   Si se añaden analítica/marketing, sustituir por CMP con bloqueo previo.
   ============================================================ */
.cookie-notice{
  position:fixed;
  left:50%;
  bottom:6px;
  transform:translate(-50%,24px);
  width:min(900px,calc(100% - 40px));
  z-index:5000;
  background:#0d1224;
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  opacity:0;
  visibility:hidden;
  transition:opacity .28s ease,transform .28s ease,visibility .28s ease;
}
.cookie-notice.is-visible{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
}
.cookie-notice__inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:12px;
  align-items:center;
  padding:11px 14px;
}
.cookie-notice__icon{
  width:36px;
  height:36px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:linear-gradient(135deg,var(--az),#2323d4);
  color:#fff;
  font-size:1.05rem;
  box-shadow:0 8px 24px rgba(0,0,153,.28);
}
.cookie-notice__text strong{
  display:block;
  font-size:.88rem;
  line-height:1.35;
  margin-bottom:4px;
  color:#fff;
}
.cookie-notice__text p{
  margin:0;
  max-width:590px;
  color:rgba(255,255,255,.68);
  font-size:.76rem;
  line-height:1.55;
}
.cookie-notice__text a{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:3px;
}
.cookie-notice__actions{
  display:flex;
  align-items:center;
  gap:9px;
  flex-wrap:nowrap;
}
.cookie-notice__policy,
.cookie-notice__accept{
  min-height:34px;
  border-radius:10px;
  padding:7px 12px;
  font-family:inherit;
  font-size:.78rem;
  font-weight:800;
  white-space:nowrap;
  cursor:pointer;
  transition:transform .15s ease,background .15s ease,border-color .15s ease,color .15s ease;
}
.cookie-notice__policy{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.22);
  background:transparent;
  color:#fff;
}
.cookie-notice__policy:hover{
  border-color:#fff;
  background:rgba(255,255,255,.08);
  color:#fff;
}
.cookie-notice__accept{
  border:1px solid var(--ro);
  background:var(--ro);
  color:#fff;
}
.cookie-notice__accept:hover{
  background:var(--ro2);
  border-color:var(--ro2);
  transform:translateY(-1px);
}
.cookie-notice__close{
  position:absolute;
  top:9px;
  right:10px;
  width:30px;
  height:30px;
  border:0;
  border-radius:50%;
  background:transparent;
  color:rgba(255,255,255,.5);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .15s,color .15s;
}
.cookie-notice__close:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}
@media(max-width:760px){
  .cookie-notice{
    width:calc(100% - 24px);
    bottom:6px;
    border-radius:16px;
  }
  .cookie-notice__inner{
    grid-template-columns:auto 1fr;
    gap:12px;
    padding:17px 16px 16px;
  }
  .cookie-notice__actions{
    grid-column:1 / -1;
    width:100%;
  }
  .cookie-notice__policy,
  .cookie-notice__accept{
    flex:1 1 0;
  }
}
@media(max-width:430px){
  .cookie-notice__icon{
    width:36px;
    height:36px;
    border-radius:10px;
  }
  .cookie-notice__text p{
    font-size:.76rem;
  }
  .cookie-notice__actions{
    flex-direction:column-reverse;
  }
  .cookie-notice__policy,
  .cookie-notice__accept{
    width:100%;
  }
}
