:root {
  --bg: #1c2420;
  --bg-2: #24302a;
  --ink: #eef3ef;
  --muted: #a7b5ac;
  --accent: #8fbf6a;
  --line: rgba(238, 243, 239, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

a { color: inherit; }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(143, 191, 106, 0.18), transparent 55%),
    linear-gradient(160deg, #24302a 0%, #1c2420 50%, #15201b 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
  max-width: 36rem;
}

.brand-hero {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 28ch;
}

.hero-visual {
  background:
    linear-gradient(135deg, rgba(28, 36, 32, 0.2), rgba(28, 36, 32, 0.65)),
    url("imagens/arroz-doce.svg") center / cover no-repeat;
  min-height: 50vh;
}

.list {
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 44rem;
}

.list h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.list li a {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 0.2s ease;
}

.list li a:hover .t { color: var(--accent); }

.list .t {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.list .b {
  color: var(--muted);
  font-size: 0.95rem;
}

.top {
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(28, 36, 32, 0.92);
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  text-decoration: none;
}

.recipe {
  max-width: 40rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  margin: 0 auto;
  animation: rise 0.45s ease both;
}

.recipe h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.recipe h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--accent);
}

.recipe p { color: #d5ddd7; }

.recipe .fonte {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

.recipe a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.recipe a:hover {
  color: #b6d99a;
}

.recipe ul, .recipe ol {
  padding-left: 1.2rem;
  color: #d5ddd7;
}

.recipe li { margin: 0.35rem 0; }

.recipe-img {
  margin: 1.5rem 0;
}

.recipe-img img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual {
    order: -1;
    min-height: 42vh;
  }
  .hero-copy {
    padding-bottom: 3rem;
  }
}
