/* ===========================================================
   Dr. Rafael Menezes — Nutricionista | style.css
   Paleta: verde escuro + bege (orgânico / real food)
   =========================================================== */

:root {
  --verde-900: #346538;
  --verde-800: #39703d;
  --verde-700: #3c7641;
  --verde-600: #3e7a43;
  --verde-500: #4f9c55;
  --bege-100: #faf6ec;
  --bege-200: #f3ead4;
  --bege-300: #e9dcbd;
  --dourado: #c69a4d;
  /* variante clara do dourado p/ texto sobre verde-900/700 - contraste 4.8:1 (WCAG AA) */
  --dourado-contraste: #e8d6b7;
  --texto: #26291f;
  --texto-suave: #5b5f4e;
  --branco: #ffffff;
  --sombra: 0 20px 50px -20px rgba(19, 42, 32, 0.35);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --ff-display: 'Fraunces', 'Georgia', serif;
  --ff-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--texto);
  background: var(--bege-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  color: var(--verde-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
p {
  margin: 0 0 1em;
  color: var(--texto-suave);
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
section {
  padding: 96px 0;
}
.section-tight {
  max-width: var(--container);
  margin: auto;
  padding: 64px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde-600);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--dourado);
  display: inline-block;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}
.section-head p {
  font-size: 17px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--ff-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--verde-900);
  color: var(--bege-100);
  box-shadow: 0 12px 30px -10px rgba(52, 101, 56, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -8px rgba(52, 101, 56, 0.55);
  background: var(--verde-800);
}
.btn-light {
  background: var(--bege-100);
  color: var(--verde-900);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.35);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -8px rgba(0, 0, 0, 0.4);
  background: var(--bege-200);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--branco);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-ghost {
  background: transparent;
  border-color: var(--verde-800);
  color: var(--verde-800);
}
.btn-ghost:hover {
  background: var(--verde-800);
  color: var(--bege-100);
}
.btn-block {
  width: 100%;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(19, 42, 32, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--verde-900);
}
.brand .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--verde-800);
  color: var(--bege-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--ff-body);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-weight: 600;
  font-size: 15px;
  color: var(--verde-900);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--dourado);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-cta {
  display: none;
}
@media (min-width: 900px) {
  .nav-cta {
    display: inline-flex;
  }
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--verde-900);
  border-radius: 2px;
}
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}
@media (max-width: 899px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bege-100);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(19, 42, 32, 0.08);
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 0;
  position: relative;
}
.hero-green {
  background: linear-gradient(160deg, var(--verde-900), var(--verde-800));
  position: relative;
  overflow: hidden;
  padding: 88px 0 110px;
}
.hero-light-strip {
  background: var(--bege-100);
  /* height: clamp(90px, 14vw, 160px); */
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'copy' 'media' 'actions';
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .hero .container {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas: 'copy media' 'actions media';
    gap: 0 40px;
    align-items: center;
  }
}
.hero-copy {
  grid-area: copy;
  color: var(--bege-100);
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow {
  color: var(--dourado-contraste);
}
.hero-copy .eyebrow::before {
  background: var(--bege-100);
}
.hero-copy h1 {
  color: var(--bege-100);
  font-size: clamp(34px, 5vw, 58px);
  max-width: 15ch;
}
.hero-copy h1 em {
  color: var(--dourado-contraste);
  font-style: normal;
}
.hero-copy p {
  color: rgba(250, 246, 236, 0.82);
  font-size: 18px;
  max-width: 46ch;
}
.hero-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 960px) {
  .hero-actions {
    margin-top: 28px;
  }
}
.hero-stats {
  display: flex;
  margin-top: 44px;
  flex-wrap: wrap;
  gap: 20px 0;
}
.hero-stats div {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(250, 246, 236, 0.2);
}
.hero-stats div:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.hero-stats div strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 32px;
  line-height: 1.1;
  color: var(--dourado);
  margin-bottom: 6px;
}
.hero-stats div span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.8);
}

.hero-media {
  grid-area: media;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-bottom: 0;
}
.video-card {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 9/16;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  border: 6px solid rgba(250, 246, 236, 0.15);
  transform: translateY(40px);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(19, 42, 32, 0) 55%,
    rgba(19, 42, 32, 0.55) 100%
  );
}
.video-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: var(--bege-100);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.video-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a5a;
  box-shadow: 0 0 0 4px rgba(255, 90, 90, 0.25);
}

/* ---------- Vídeo com play manual (Galeria) ---------- */
.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.video-thumb video {
  display: block;
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19, 42, 32, 0.2);
  transition: background 0.2s ease;
  pointer-events: none;
}
.video-thumb.is-playing::after {
  background: transparent;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  padding: 0;
  color: var(--bege-100);
  display: flex;
  cursor: pointer;
  filter: drop-shadow(0 6px 14px rgba(19, 42, 32, 0.6));
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.play-btn svg {
  width: 56px;
  height: 56px;
}
.video-thumb.is-playing .play-btn {
  opacity: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--verde-600), transparent 70%);
  opacity: 0.5;
  filter: blur(10px);
}
.hero-blob.b1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
}

/* ---------- Marquee / trust strip ---------- */
.trust-strip {
  background: var(--bege-100);
  padding: 28px 0;
  border-bottom: 1px solid var(--bege-300);
}
.trust-strip .swiper {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}
.trust-swiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}
.trust-swiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texto-suave);
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Cards genéricos ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 12px 30px -18px rgba(19, 42, 32, 0.25);
  border: 1px solid var(--bege-300);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra);
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bege-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-700);
  margin-bottom: 18px;
  font-size: 22px;
}
.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.card p {
  font-size: 15px;
  margin-bottom: 0;
}

/* ---------- About preview / split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.split.reverse .split-media {
  order: 2;
}
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra);
}
.split-media {
  position: relative;
}
.photo-frame {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--verde-700), var(--verde-900));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 236, 0.6);
  font-family: var(--ff-display);
  font-size: 18px;
  text-align: center;
  box-shadow: var(--sombra);
  padding: 24px;
}
.badge-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--branco);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--sombra);
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-float strong {
  display: block;
  font-family: var(--ff-display);
  color: var(--verde-900);
  font-size: 20px;
}
.badge-float span {
  font-size: 12px;
  color: var(--texto-suave);
}

/* ---------- Lista de canais de contato ---------- */
.channel-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--bege-300);
}
.channel-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--bege-300);
}
.channel-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bege-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-700);
  flex: none;
  margin-bottom: 0;
}
.channel-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
}
.channel-item p {
  font-size: 14px;
  color: var(--texto-suave);
  margin-bottom: 6px;
}
.channel-item .recipe-link {
  font-size: 14px;
}

.checklist li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--verde-900);
}
.checklist li::before {
  content: '\2713';
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 50%;
  background: var(--verde-700);
  color: var(--bege-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ---------- Recipe cards ---------- */
.recipe-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bege-300);
  box-shadow: 0 12px 30px -18px rgba(19, 42, 32, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra);
}
.recipe-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.recipe-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--verde-900);
  color: var(--bege-100);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.recipe-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.recipe-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--texto-suave);
  margin-bottom: 12px;
  font-weight: 600;
}
.recipe-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.recipe-body p {
  font-size: 14px;
  flex: 1;
}
.recipe-link {
  font-weight: 700;
  color: var(--verde-700);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

/* ---------- Filter bar (blog) ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--bege-300);
  background: var(--branco);
  font-weight: 700;
  font-size: 14px;
  color: var(--texto-suave);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover {
  border-color: var(--verde-600);
  color: var(--verde-800);
}
.filter-btn.active {
  background: var(--verde-800);
  color: var(--bege-100);
  border-color: var(--verde-800);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--verde-900);
  color: var(--bege-100);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.testimonial-card p {
  color: rgba(250, 246, 236, 0.85);
  font-size: 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.avatar-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--verde-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bege-100);
  overflow: hidden;
  flex: none;
}
.avatar-dot.has-logo {
  background: var(--bege-100);
  padding: 6px;
}
.avatar-dot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stars {
  color: var(--dourado);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--verde-800);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  color: var(--bege-100);
  margin: 0 24px;
}
.cta-band h2 {
  color: var(--bege-100);
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
}
.cta-band p {
  color: rgba(250, 246, 236, 0.8);
  margin-bottom: 0;
}

/* ---------- Page hero (páginas internas) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--verde-900), var(--verde-700));
  color: var(--bege-100);
  padding: 90px 0 70px;
  text-align: center;
}
.page-hero .eyebrow {
  color: var(--dourado-contraste);
  justify-content: center;
}
.page-hero .eyebrow::before {
  background: var(--bege-100);
}
.page-hero h1 {
  color: var(--bege-100);
  font-size: clamp(30px, 4.4vw, 48px);
}
.page-hero p {
  color: rgba(250, 246, 236, 0.82);
  max-width: 56ch;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(250, 246, 236, 0.7);
  margin-bottom: 18px;
}
.breadcrumb a {
  color: var(--dourado-contraste);
  font-weight: 700;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}
label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--verde-900);
}
input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bege-300);
  background: var(--bege-100);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--texto);
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--verde-600);
  outline-offset: 1px;
}
textarea {
  resize: vertical;
  min-height: 130px;
}

/* ---------- Steps (processo) ---------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  position: relative;
  padding-top: 8px;
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--ff-display);
  font-size: 36px;
  color: var(--dourado);
  display: block;
  margin-bottom: 10px;
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--bege-300);
  box-shadow: 0 12px 30px -18px rgba(19, 42, 32, 0.25);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--verde-900);
  color: var(--bege-100);
  transform: scale(1.03);
  box-shadow: var(--sombra);
}
.price-card.featured h3,
.price-card.featured .price {
  color: var(--bege-100);
}
.price-card.featured p {
  color: rgba(250, 246, 236, 0.8);
}
.price-card.featured .checklist li {
  color: var(--bege-100);
}
.price {
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--verde-900);
  margin: 12px 0;
}
.price span {
  font-size: 14px;
  color: var(--texto-suave);
  font-family: var(--ff-body);
}
.price-card ul {
  margin: 20px 0;
  flex: 1;
}

/* ---------- Recipe detail ---------- */
.recipe-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  margin-bottom: 36px;
}
.recipe-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  background: var(--bege-200);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.recipe-info-bar div {
  text-align: center;
  flex: 1;
  min-width: 110px;
}
.recipe-info-bar strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--verde-900);
}
.recipe-info-bar span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--texto-suave);
  font-weight: 700;
}
.recipe-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .recipe-content {
    grid-template-columns: 0.9fr 1.4fr;
  }
}
.ingredients-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--bege-300);
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--texto);
}
.method-list {
  counter-reset: m;
  list-style: none;
  margin: 0;
  padding: 0;
}
.method-list li {
  counter-increment: m;
  position: relative;
  padding-left: 44px;
  margin-bottom: 22px;
  color: var(--texto);
}
.method-list li::before {
  content: counter(m);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--verde-800);
  color: var(--bege-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--verde-900);
  color: rgba(250, 246, 236, 0.75);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
.footer-grid h3 {
  color: var(--bege-100);
  font-size: 15px;
  margin-bottom: 16px;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-grid li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-grid a:hover {
  color: var(--dourado-contraste);
}
.footer-brand p {
  color: rgba(250, 246, 236, 0.65);
  font-size: 14px;
  max-width: 38ch;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 236, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.social-row a:hover {
  background: var(--dourado);
  color: var(--verde-900);
  border-color: var(--dourado);
}
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 236, 0.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(250, 246, 236, 0.55);
}

/* ---------- Utilities ---------- */
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.hide-mobile {
  display: none;
}
@media (min-width: 900px) {
  .hide-mobile {
    display: block;
  }
}

/* placeholder image blocks (sem fotos reais ainda) */
.ph-img {
  background: repeating-linear-gradient(
    135deg,
    var(--bege-200),
    var(--bege-200) 10px,
    var(--bege-300) 10px,
    var(--bege-300) 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-suave);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  height: 100%;
}
