/* =========================
   RESET BÁSICO
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

/* =========================
   VARIÁVEIS DE TEMA
========================= */
:root {
  /* Fundo e texto */
  --bg-color: #faf7f2; /* off-white quente */
  --text-color: #1f2933; /* quase preto, mais suave */
  --muted-text: #6b7280; /* cinza médio */

  /* Destaques (fogo / carne) */
  --primary: #b91c1c; /* vermelho queimado */
  --primary-dark: #7f1d1d; /* vermelho mais escuro */

  /* Cards e bordas */
  --card-bg: #ffffff;
  --border-color: #e5e7eb;

  --max-width: 1100px;
}

/* =========================
   BASE
========================= */
html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
}

/* =========================
   CONTAINERS
========================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* =========================
   TIPOGRAFIA
========================= */
h1,
h2,
h3,
h4 {
  color: #111827;
  line-height: 1.3;
  margin-bottom: 0.6em;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

small {
  color: var(--muted-text);
}

/* =========================
   LINKS
========================= */
a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   LISTAS
========================= */
ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.5rem;
}

/* =========================
   IMAGENS
========================= */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* =========================
   BOTÕES
========================= */
.button {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.1s ease;
}

.button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* =========================
   CARDS (reviews, listas)
========================= */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

/* =========================
   FOOTER AJUSTES
========================= */
footer {
  border-top: 1px solid var(--border-color);
  background: #f5f3ef;
}

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2.5rem 0;
}

blockquote {
  border-left: 4px solid #d35400; /* cor quente, combina com churrasco */
  background: #fff7f0;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  border-radius: 6px;
}

blockquote p {
  margin: 0;
}
