:root {
  --primary: #16a34a;
  --primary-dark: #0f7a36;
  --primary-soft: #eaf8ef;
  --secondary: #facc15;
  --secondary-dark: #d5a900;
  --text: #17211b;
  --text-soft: #647067;
  --surface: #ffffff;
  --background: #f7faf8;
  --border: #e4ebe6;
  --danger: #dc2626;
  --shadow-sm: 0 8px 24px rgba(22, 52, 32, 0.08);
  --shadow-md: 0 18px 50px rgba(22, 52, 32, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

ul {
  list-style: none;
}

::selection {
  background: var(--secondary);
  color: #1d2500;
}
/* Etapa 15: controles compartilhados de favoritos */
.promotion-quick-actions{display:flex;gap:8px;margin-top:10px}.favorite-button,.share-button{flex:1;border:1px solid #e5e7eb;background:#fff;border-radius:10px;padding:9px 10px;cursor:pointer;font-weight:700;color:#374151}.favorite-button:hover,.share-button:hover{border-color:#ef4444;color:#b91c1c}.favorite-button.is-favorite{background:#fff1f2;border-color:#fb7185;color:#be123c}

/* Utilitário global de visibilidade — obrigatório para estados de carregamento/erro/conteúdo. */
.is-hidden {
  display: none !important;
}
