/* Banner de cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0e1413;
  color: #fff;
  padding: 1rem;
  z-index: 1050;
  box-shadow: 0 -4px 12px rgba(0,0,0,.2);
  font-size: 0.95rem;
}

.cookie-banner p {
  margin: 0;
  color: #f1f5f3;
}

.cookie-banner a {
  color: var(--brand);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--brand-2);
}

.cookie-actions .btn {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
}
/* ===== Página: Política de cookies (estilo card limpio) ===== */
.cookies-page-wrap{
  background: #eef5f0;              /* fondo suave */
  padding: 60px 0;
}
.cookies-card{
  max-width: 920px;                 /* ancho de lectura cómodo */
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 48px 36px;
}
.cookies-card h1{
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: .75rem;
  color: #0e1b17;
  text-align: center;
}
.cookies-card .sublead{
  text-align: center;
  color: #566760;
  margin-bottom: 2rem;
  font-size: 1.08rem;
}
.cookies-card h2{
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #0e1b17;
  position: relative;
}
.cookies-card h2::after{
  content: "";
  display: block;
  width: 56px; height: 3px;
  background: var(--brand, #8BC34A);
  border-radius: 2px;
  margin-top: .5rem;
}
.cookies-card p{
  font-size: 1.06rem;
  line-height: 1.8;
  color: #2d3a36;
  margin-bottom: 1rem;
}
.cookies-card ul{
  margin: .25rem 0 1.25rem 1.25rem;
}
.cookies-card li{
  margin-bottom: .6rem;
}
.cookies-card li strong{
  color: #0e1b17;
}
.cookies-card a{
  color: var(--brand, #8BC34A);
  text-decoration: none;
  border-bottom: 1px solid rgba(139,195,74,.35);
}
.cookies-card a:hover{
  border-bottom-color: transparent;
}
