*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: #0f0a06;
  color: #f5ede0;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2.5rem;
  background: rgba(15, 10, 6, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,146,10,0.2);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: #e8920a;
  text-shadow: 0 0 18px rgba(232,146,10,0.5);
}
.nav-logo span { color: #f5ede0; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c9b89a;
  transition: color 0.2s;
}
.nav-links a:hover { color: #e8920a; }
.nav-cta {
  background: #e8920a;
  color: #0f0a06 !important;
  padding: 0.5rem 1.05rem;
  border-radius: 4px;
}

.recipe-hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 8rem 2.5rem 4.5rem;
}
.recipe-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,6,3,0.96) 0%, rgba(12,7,3,0.84) 42%, rgba(12,7,3,0.36) 100%),
    linear-gradient(180deg, rgba(9,6,3,0.1), rgba(9,6,3,0.85)),
    var(--recipe-image) center / cover no-repeat;
}
.recipe-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,146,10,0.15);
  border: 1px solid rgba(232,146,10,0.35);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8920a;
  margin-bottom: 1.3rem;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  font-weight: 700;
  line-height: 0.96;
  max-width: 760px;
  margin-bottom: 1.2rem;
}
.hero-sub {
  max-width: 680px;
  color: #c9b89a;
  font-size: clamp(1rem, 1.7vw, 1.17rem);
  line-height: 1.75;
}

main {
  background:
    radial-gradient(ellipse 70% 45% at 85% 20%, rgba(232,146,10,0.08), transparent 65%),
    #0f0a06;
}
.recipe-wrap {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 4.5rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}
.recipe-card,
.aside-card {
  background: #1a1008;
  border: 1px solid rgba(232,146,10,0.14);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}
.recipe-card { padding: clamp(1.4rem, 4vw, 2.4rem); }
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
  color: #7a6a58;
  font-size: 0.82rem;
  font-weight: 700;
}
.breadcrumb a {
  color: #e8920a;
  transition: color 0.2s;
}
.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: #f5ede0;
}
.breadcrumb span[aria-hidden="true"] {
  color: #5a4a38;
}
.featured-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(232,146,10,0.16);
  margin-bottom: 1.8rem;
}
.aside-card {
  position: sticky;
  top: 5.8rem;
  overflow: hidden;
}
.aside-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.aside-body { padding: 1.4rem; }
.aside-kicker,
.section-kicker {
  color: #e8920a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.aside-card h2,
.recipe-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.aside-card p,
.recipe-card p,
.recipe-card li {
  color: #c9b89a;
  line-height: 1.78;
  font-size: 1rem;
}
.recipe-intro {
  font-size: 1.08rem;
  color: #d9ccb8 !important;
  margin-bottom: 2.1rem;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
}
.meta-pill {
  border: 1px solid rgba(232,146,10,0.22);
  color: #c9b89a;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.content-section + .content-section { margin-top: 2.4rem; }
.ingredients {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}
.ingredients li {
  position: relative;
  padding-left: 1.4rem;
}
.ingredients li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #e8920a;
  font-size: 1.2rem;
  line-height: 1.5;
}
.tip {
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  background: rgba(232,146,10,0.1);
  border: 1px solid rgba(232,146,10,0.24);
  border-radius: 14px;
}
.tip strong { color: #e8920a; }
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  width: 100%;
  margin-top: 1.2rem;
  background: linear-gradient(135deg, #e8920a 0%, #c4700a 100%);
  color: #0f0a06;
  padding: 0.9rem 1rem;
  box-shadow: 0 4px 24px rgba(232,146,10,0.35);
}
.btn-secondary {
  margin-top: 1.7rem;
  border: 1.5px solid rgba(232,146,10,0.42);
  color: #e8920a;
  padding: 0.8rem 1.2rem;
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,146,10,0.25);
}
.disclaimer {
  margin-top: 1rem;
  font-size: 0.76rem !important;
  color: #6f5d47 !important;
}

/* ── PRODUTOS RECOMENDADOS ── */
.meli-section {
  background: #0a0603;
  border-top: 1px solid rgba(232,146,10,0.1);
  padding: 4rem 2.5rem;
}
.meli-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.meli-section .section-label {
  color: #e8920a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.meli-section .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 0.6rem;
}
.meli-section .section-desc {
  color: #c9b89a;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}
.meli-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.4rem;
  align-items: start;
}
.meli-card {
  background: #120903;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.meli-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,146,10,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}
.meli-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #fff;
}
.meli-img-wrap img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: contain;
  max-width: none;
  box-sizing: border-box;
  transition: transform 0.35s;
  padding: 0.5rem;
}
.meli-card:hover .meli-img-wrap img { transform: scale(1.04); }
.meli-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ffe600;
  color: #1a1200;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 1.4rem;
  transition: background 0.2s;
  text-decoration: none;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.meli-cta:hover { background: #ffd000; transform: none; box-shadow: none; }
.meli-cta svg { flex-shrink: 0; }
.meli-body {
  padding: 1.1rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
}
.meli-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,230,0,0.1);
  border: 1px solid rgba(255,230,0,0.22);
  color: #ffe600;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.7rem;
  width: fit-content;
}
.meli-product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5ede0;
  line-height: 1.35;
  margin: 0;
}
@media (max-width: 768px) {
  .meli-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .meli-section { padding: 3rem 1.5rem; }
}

footer {
  background: #080503;
  padding: 2.4rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(232,146,10,0.1);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #e8920a;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.footer-fine {
  color: #4a3a2a;
  font-size: 0.76rem;
}

@media (max-width: 900px) {
  nav { padding: 0.8rem 1.2rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .recipe-hero {
    min-height: 68vh;
    padding: 7rem 1.5rem 3rem;
  }
  .recipe-hero::before {
    background:
      linear-gradient(180deg, rgba(9,6,3,0.52) 0%, rgba(9,6,3,0.82) 48%, rgba(9,6,3,0.98) 100%),
      var(--recipe-image) center / cover no-repeat;
  }
  .recipe-wrap {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
  .aside-card { position: static; }
}

@media (max-width: 560px) {
  .nav-logo { font-size: 1.55rem; }
  .nav-cta { padding: 0.45rem 0.75rem; font-size: 0.72rem !important; }
  h1 { font-size: clamp(2.8rem, 16vw, 4.2rem); }
  .aside-card img { height: 190px; }
}
