.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  padding: 18px 24px;
  background: #fff;
  border-top: 3px solid var(--verde);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .1);
  transform: translateY(100%);
  transition: transform .35s ease;
}

.cookie-banner.show { display: block; }
.cookie-banner.in { transform: translateY(0); }

.cookie-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 320px;
  color: var(--texto);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--verde-escuro);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.cookie-btn:focus-visible,
.footer-cookie-settings:focus-visible {
  outline: 3px solid rgba(45, 127, 76, .35);
  outline-offset: 3px;
}

.cookie-btn-accept {
  color: #fff;
  background: var(--verde);
}

.cookie-btn-accept:hover { background: var(--verde-escuro); }

.cookie-btn-decline {
  color: var(--cinza);
  background: transparent;
  border: 1px solid #ddd;
}

.cookie-btn-decline:hover { background: #f3f3f3; }

.footer-cookie-settings {
  padding: 0;
  color: #cfd8e0;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 14.5px;
  text-align: left;
}

.footer-cookie-settings:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 560px) {
  .cookie-banner { padding: 16px 18px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}
