/* ===== UTILIDADES / STICKY CTA ===== */
.sticky-cta{
  position:fixed; bottom:16px; left:16px; right:16px;
  display:none;
  color: orange;
}
@media(max-width:780px){
  .sticky-cta{ display:flex; justify-content:center; }
}


/* ============================================================
   BANNER COOKIES – PSF CORPORATIVO
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface, #fff);
  padding: 22px;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.10);
  border-top: 1px solid rgba(0,0,0,0.06);
  display: none;
  animation: cookieSlideUp .45s ease-out;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.cookie-banner__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.cookie-banner__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink, #1f2a33);
}

.cookie-banner__text {
  font-size: .95rem;
  color: var(--ink-soft, #4b5a64);
  margin-bottom: 18px;
  line-height: 1.55;
}

/* Botones */
.cookie-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
}

/* Botón aceptar */
.cookie-btn--accept {
  background: var(--brand, #f36a10);
  color: white;
  box-shadow: 0 6px 18px rgba(243,106,16,0.35);
}
.cookie-btn--accept:hover {
  background: #d85f10;
}

/* Botón rechazar */
.cookie-btn--reject {
  background: #eef1f3;
  color: var(--ink, #1f2a33);
}
.cookie-btn--reject:hover {
  background: #dee1e4;
}

/* Botón configurar */
.cookie-btn--config {
  background: transparent;
  border: 1px solid rgba(0,0,0,.15);
  color: var(--ink, #1f2a33);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.cookie-btn--config:hover {
  background: #f5f6f6;
}

/* ----------- Responsive ----------- */
@media (max-width: 520px) {
  .cookie-banner {
    padding: 18px;
  }

  .cookie-banner__title {
    font-size: 1.2rem;
  }

  .cookie-banner__text {
    font-size: .9rem;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}
