.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: #fff;
  border-top: 2px solid var(--azul);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 16px 20px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cookie-consent-text a {
  color: var(--azul-claro);
  text-decoration: underline;
  cursor: pointer;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: linear-gradient(180deg,var(--azul-medio) 0%,var(--azul) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), inset 0 -1px 0 rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.25);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.cookie-btn-accept:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.cookie-btn-reject {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: transparent;
  color: #6b7280;
  border: 1.5px solid #9ca3af;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.cookie-btn-reject:hover {
  border-color: #6b7280;
  color: #374151;
  background: #f9fafb;
}

@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    gap: 12px;
  }
  .cookie-consent-text {
    font-size: 12px;
  }
  .cookie-consent-actions {
    justify-content: stretch;
  }
  .cookie-btn-accept,
  .cookie-btn-reject {
    flex: 1;
    text-align: center;
  }
}
