/* =========================================================
   PORQUITOS — STYLESHEET
   Fonte: Exo 2 | Cores: vermelho #ff0000, amarelo #ffce00, preto
   ========================================================= */

/* ---------- 1. RESET & VARIÁVEIS ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --red: #ff0000;
  --red-dark: #c60000;
  --yellow: #ffce00;
  --yellow-dark: #e0b400;
  --black: #0d0d0d;
  --black-soft: #1a1a1a;
  --offwhite: #fbf6ea;
  --gray-text: #4a4a4a;

  --font-main: 'Exo 2', sans-serif;

  --container: 1240px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.12);
  --shadow-card-strong: 0 20px 45px rgba(0, 0, 0, 0.35);

  --header-height: 84px;
}

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--offwhite) url('../images/bg_cinza.jpg') center top / cover no-repeat fixed;
  overflow-x: hidden;
  scrollbar-color: var(--red) var(--offwhite);
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: var(--radius-pill);
  border: 3px solid var(--offwhite);
}
::-webkit-scrollbar-thumb:hover { background: var(--red-dark); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-red { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-white { color: #fff; }
.text-white-70 { color: rgba(255,255,255,0.75); }

/* ---------- 2. TIPOGRAFIA & SEÇÕES ---------- */
.section-eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 640px;
  line-height: 1.6;
}
.section-head--center { text-align: center; margin: 0 auto 50px; }
.section-head--center .section-subtitle { margin: 0 auto; }
.section-cta { text-align: center; margin-top: 46px; }

section { padding: 100px 0; position: relative; }

/* ---------- 3. BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn--red { background: var(--red); color: #fff; box-shadow: 0 10px 25px rgba(255,0,0,0.35); }
.btn--red:hover { background: var(--red-dark); box-shadow: 0 14px 30px rgba(255,0,0,0.45); }

.btn--yellow { background: var(--yellow); color: var(--black); box-shadow: 0 10px 25px rgba(255,206,0,0.35); }
.btn--yellow:hover { background: var(--yellow-dark); }

.btn--outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn--outline:hover { background: #fff; color: var(--black); }

.btn--outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn--outline-dark:hover { background: var(--black); color: #fff; }

.btn--yellow-outline { background: transparent; color: var(--yellow-dark); border: 2px solid var(--yellow); }
.btn--yellow-outline:hover { background: var(--yellow); color: var(--black); }

.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--block { display: flex; justify-content: center; width: 100%; margin-bottom: 14px; }

/* ---------- 4. HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(13, 13, 13, 0.25);
  backdrop-filter: blur(6px);
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}
.header.is-scrolled {
  background: rgba(13, 13, 13, 0.95);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  height: 74px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img { height: 56px; width: auto; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav__list { display: flex; align-items: center; gap: 30px; }
.nav__link {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__cta { padding: 12px 24px; font-size: 0.85rem; }

.header__burger {
  display: none;
  position: relative;
  z-index: 960;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
}
.header__burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__burger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__burger.is-active span:nth-child(2) { opacity: 0; }
.header__burger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}
.overlay.is-active { opacity: 1; pointer-events: auto; }

/* ---------- 5. HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  padding-top: var(--header-height);
  padding-bottom: 220px;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.hero__text {
  max-width: 780px;
  animation: heroTextoSurgir 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__seal-wrap {
  flex-shrink: 0;
  animation: heroSeloSurgir 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.5s;
}

@keyframes heroTextoSurgir {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroSeloSurgir {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__text,
  .hero__seal-wrap {
    animation: none;
  }
}
.hero__seal {
  width: 240px;
  filter: drop-shadow(0 12px 25px rgba(0,0,0,0.55));
}
.hero__eyebrow {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 6px 25px rgba(0,0,0,0.4);
  margin-bottom: 18px;
}
.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #f1f1f1;
  font-weight: 500;
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero__promo {
  position: absolute;
  left: 0; right: 0;
  bottom: -70px;
  z-index: 3;
}
.promo-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-strong);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.promo-banner__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 34px 26px;
}
.promo-banner__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.promo-banner__text h3 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.promo-banner__text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  line-height: 1.45;
  margin-bottom: 14px;
}
.promo-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: background 0.25s ease, color 0.25s ease;
}
.promo-banner__link i { font-size: 0.65rem; }
.promo-banner__link:hover { background: #fff; color: var(--red); }
.promo-banner__img {
  width: 180px;
  flex-shrink: 0;
  transform: rotate(-8deg);
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
}

/* ---------- 6. A PORQUITOS ---------- */
.about { padding-top: 190px; }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about__image { position: relative; }
.about__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about__text p { color: var(--gray-text); line-height: 1.75; margin-bottom: 18px; font-size: 1.02rem; }

.about__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.about__gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.about__gallery-item:hover { transform: scale(1.05); }

/* ---------- 7. FAIXA DE NÚMEROS ---------- */
.stats {
  background: var(--black);
  padding: 60px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat__number { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1; }
.stat__label {
  color: #d9d9d9;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ---------- 8. PRODUTOS ---------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-card-strong); }
.product-card img { height: 220px; margin: 0 auto 18px; object-fit: contain; }
.product-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.product-card p { color: var(--gray-text); font-size: 0.9rem; }

/* ---------- 9. GALERIA MARQUEE / PESSOAS ---------- */
.mosaic { overflow: hidden; }
.mosaic__marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.mosaic__row {
  display: flex;
  width: max-content;
  will-change: transform;
}
.mosaic__row--left { animation: marquee-left 38s linear infinite; }
.mosaic__row--right { animation: marquee-right 34s linear infinite; }
.mosaic__set { display: flex; gap: 16px; padding-right: 16px; }
.mosaic__set img {
  width: clamp(250px, 25vw, 390px);
  height: 190px;
  flex: none;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.mosaic__row:hover { animation-play-state: paused; }
@keyframes marquee-left { to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .mosaic__row { animation-play-state: paused; } }

/* ---------- 10. RECEITAS ---------- */
.recipes {
  background-size: cover;
  background-position: center;
}
.recipes .container { position: relative; z-index: 2; }
.recipes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.recipe-card {
  background: var(--black-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-strong);
  transition: transform 0.3s ease;
}
.recipe-card:hover { transform: translateY(-8px); }
.recipe-card__img { height: 220px; background-size: cover; }
.recipe-card__body { padding: 26px; }
.recipe-card__body h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.recipe-card__body p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }

/* ---------- 11. FORNECEDORES ---------- */
.partners__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.partners__text p { color: var(--gray-text); line-height: 1.75; margin-bottom: 20px; font-size: 1.02rem; }
.partners__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }
.partners__logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 18px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  background: #fff;
  border: 2px solid var(--yellow);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.partner-logo:hover { transform: translateY(-5px); border-color: var(--red); }
.partner-logo img { max-width: 100%; max-height: 60px; object-fit: contain; }

/* ---------- 12. MISSÃO (VERMELHO/PRETO) ---------- */
.mission {
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 52vw;
  display: flex;
  align-items: center;
}
.mission__grid {
  display: flex;
}
.mission__text { max-width: 620px; }
.mission__text p { color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; }

.mission__lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 0 0 28px;
}
.mission__lista li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
.mission__lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

@media (max-width: 560px) {
  .mission__lista { grid-template-columns: 1fr; }
}

/* ---------- 13. EVENTOS ---------- */
.events {
  background-size: cover;
  background-position: center bottom;
  position: relative;
  margin-top: -80px;
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.event-card:hover { transform: translateY(-8px); border-color: var(--yellow); }
.event-card__capa { display: block; height: 170px; background: rgba(255,255,255,0.06); }
.event-card__capa img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-card__capa--vazia {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 2rem;
}
.event-card__body { padding: 26px 22px; }
.event-card__body h3 { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.event-card__local { color: var(--yellow); font-size: 0.8rem; font-weight: 700; margin-bottom: 10px; }
.event-card__descricao {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card__body .btn { margin-top: 4px; }

/* ---------- 14. CTA EVENTOS ---------- */
.event-cta__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
}
.event-cta__text p { color: var(--gray-text); line-height: 1.75; margin-bottom: 28px; font-size: 1.05rem; }
.event-cta__image {
  display: flex;
  justify-content: center;
  align-self: stretch;
  align-items: flex-end;
}
.event-cta__image img {
  width: 100%;
  max-width: 480px;
  margin-top: -220px;
  margin-bottom: -100px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.3));
}

/* ---------- 15. INSTAGRAM ---------- */
.instagram {
  background: #fff;
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.instagram-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-card);
}
.instagram-card img, .instagram-card__bg {
  width: 100%; height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.instagram-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 0, 0.55);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram-card:hover .instagram-card__overlay { opacity: 1; }

/* ---------- 16. CONTATO ---------- */
.contato { background: var(--offwhite) url('../images/bg_cinza.jpg') center top / cover no-repeat; }
.contato__alerta {
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}
.contato__alerta--sucesso { background: #eaf7ec; color: #1e6b2e; border: 1px solid #b7e0be; }
.contato__alerta--erro { background: #fdecea; color: #a30000; border: 1px solid #f5b8b1; }
.contato__form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.contato__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contato__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.contato__campo--full { grid-column: 1 / -1; }
.contato__campo label { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; color: var(--black); }
.contato__campo input,
.contato__campo select,
.contato__campo textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--red);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--black);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contato__campo input::placeholder,
.contato__campo textarea::placeholder { color: #b3b0ac; }
.contato__campo input:focus,
.contato__campo select:focus,
.contato__campo textarea:focus {
  outline: none;
  border-color: var(--red-dark);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.08);
}
.contato__campo select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23ff0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.contato__campo textarea { resize: vertical; min-height: 130px; padding-right: 60px; }
.contato__mensagem-wrap { position: relative; }
.contato__anexo-botao {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contato__anexo-botao:hover { background: var(--red-dark); transform: scale(1.06); }
.contato__anexo-nome {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  padding: 8px 14px;
  background: var(--offwhite);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--black);
  width: fit-content;
}
.contato__anexo-nome i.fa-paperclip { color: var(--red); }
.contato__anexo-nome span { max-width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contato__anexo-nome button { color: var(--gray-text); font-size: 0.8rem; line-height: 1; margin-left: 4px; }
.contato__anexo-botao[hidden],
.contato__anexo-nome[hidden] { display: none; }
.contato__anexo-nome button:hover { color: var(--red); }
.contato__ajuda { font-size: 0.8rem; color: var(--red-dark); margin-top: 8px; margin-bottom: 0; font-weight: 600; }
.contato__form > .btn { padding-left: 40px; padding-right: 40px; }

/* ---------- 17. FOOTER ---------- */
.footer {
  background-color: var(--red);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}
.footer__slogan { font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer__social a:hover { background: #fff; color: var(--red); transform: translateY(-3px); }

.footer h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer__contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 0.95rem; }
.footer__actions .btn--yellow { color: var(--black); }
.footer__actions .btn--outline { border-color: #fff; }

.footer__bottom { padding: 26px 0; }
.footer__bottom .container { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer__bottom p { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.footer__namaste { display: inline-block; opacity: 0.85; transition: opacity 0.25s ease; }
.footer__namaste:hover { opacity: 1; }
.footer__namaste img { height: 22px; width: auto; filter: brightness(0) invert(1); }

/* ---------- 17. BOTÃO VOLTAR AO TOPO ---------- */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(255,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 800;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); }

/* ---------- 18. BANNER DE COOKIES ---------- */
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: min(380px, calc(100% - 48px));
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.cookie-banner.is-visivel { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner__card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(13,13,13,0.2);
  padding: 28px;
}
.cookie-banner__cabecalho { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.cookie-banner__icone {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 0, 0, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.cookie-banner__titulo {
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  margin: 0;
}
.cookie-banner__texto { font-size: 0.86rem; color: var(--gray-text); line-height: 1.6; margin: 0 0 22px; }
.cookie-banner__texto a { color: var(--red); font-weight: 700; text-decoration: underline; }
.cookie-banner__texto a:hover { color: var(--red-dark); }
.cookie-banner__botao {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
}

/* ---------- 19. PÁGINA LEGAL (Política de Privacidade) ---------- */
.legal { padding: 70px 0 100px; background: #fff; }
.legal__conteudo { max-width: 820px; margin: 0 auto; color: var(--gray-text); line-height: 1.75; }
.legal__conteudo p { margin-bottom: 18px; }
.legal__conteudo h2 { color: var(--black); font-size: 1.25rem; font-weight: 800; margin: 40px 0 16px; }
.legal__conteudo h2:first-child { margin-top: 0; }
.legal__conteudo ul { margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.legal__conteudo li { margin-bottom: 8px; }
.legal__conteudo a { color: var(--red); font-weight: 700; }
.legal__conteudo a:hover { text-decoration: underline; }
.legal__conteudo strong { color: var(--black); }

/* ---------- 20. LOCALIZADOR "ONDE ENCONTRAR PORQUITOS" ---------- */
.store-locator-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(13, 13, 13, 0.72);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.store-locator-modal.is-aberto { display: flex; }
.store-locator-modal__cartao {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-strong);
  width: min(480px, 100%);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.store-locator-modal__cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(13,13,13,0.08);
  flex-shrink: 0;
}
.store-locator-modal__titulo { font-size: 1.25rem; font-weight: 800; margin: 0; }
.store-locator-modal__fechar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.store-locator-modal__fechar:hover { background: rgba(13,13,13,0.06); color: var(--black); }
.store-locator-modal__corpo { padding: 24px; overflow-y: auto; }

.store-locator__subtitulo { color: var(--gray-text); margin: 0 0 18px; }
.store-locator__label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; }
.store-locator__campo-busca { display: flex; gap: 10px; }
.store-locator__input {
  flex: 1;
  min-width: 0;
  padding: 13px 18px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(13,13,13,0.12);
  font-family: var(--font-main);
  font-size: 0.95rem;
}
.store-locator__input:focus { outline: none; border-color: var(--red); }
.store-locator__campo-busca .btn { flex-shrink: 0; }

.store-locator__separador {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gray-text);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 20px 0;
}
.store-locator__separador::before, .store-locator__separador::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(13,13,13,0.1);
}

.store-locator__btn-geo { width: 100%; justify-content: center; }
.store-locator__privacidade { font-size: 0.78rem; color: var(--gray-text); line-height: 1.6; margin: 12px 0 0; }

.store-locator__estado { text-align: center; padding: 32px 12px; color: var(--gray-text); }
.store-locator__estado i { font-size: 1.4rem; color: var(--red); margin-bottom: 8px; display: block; }
.store-locator__estado--erro p { color: var(--red-dark); font-weight: 600; margin: 0; }
.store-locator__estado--vazio p { margin: 0 0 16px; }

.store-locator__resultados { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.store-locator__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(13,13,13,0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.store-locator__card-info { min-width: 0; }
.store-locator__card h3 { font-size: 1.02rem; font-weight: 800; margin: 0 0 2px; }
.store-locator__card-unidade { font-size: 0.82rem; font-weight: 700; color: var(--red); margin: 0 0 4px; }
.store-locator__badge {
  display: inline-block;
  background: rgba(255,206,0,0.18);
  color: var(--yellow-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 4px;
}
.store-locator__card-linha { font-size: 0.85rem; color: var(--gray-text); margin: 2px 0; }
.store-locator__card-linha i { width: 16px; color: var(--red); }
.store-locator__distancia { font-weight: 700; color: var(--black); font-size: 0.85rem; margin: 4px 0; }
.store-locator__aprox { font-weight: 400; color: var(--gray-text); font-size: 0.74rem; }
.store-locator__card-acoes { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.store-locator__card-acoes .btn { padding: 8px 16px; white-space: nowrap; }

.onde-encontrar { padding: 60px 0 100px; }
.onde-encontrar__widget {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

/* ----- Tablets (≤ 1024px) ----- */
@media (max-width: 1024px) {
  .hero { align-items: flex-start; padding-top: calc(var(--header-height) + 48px); }
  .hero__content { flex-direction: column; }
  .hero__seal-wrap { order: -1; align-self: flex-end; margin-bottom: 20px; }
  .hero__seal { width: 120px; }
  .hero__promo { bottom: -200px; }
  .promo-banner { grid-template-columns: 1fr; }
  .promo-banner__item:not(:last-child)::after { top: auto; bottom: 0; left: 26px; right: 26px; width: auto; height: 1px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image { max-width: 460px; margin: 0 auto; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .recipes__grid { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: 1fr; }
  .partners__logos { margin-top: 20px; }
  .events__grid { grid-template-columns: repeat(2, 1fr); }
  .event-cta__grid { grid-template-columns: 1fr; }
  .event-cta__image { order: -1; }
  .event-cta__image img { margin-bottom: 0; }
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .contato__form { padding: 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__actions { grid-column: span 2; }
}

/* ----- Menu mobile + ajustes gerais (≤ 900px) ----- */
@media (max-width: 900px) {
  .header__burger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 85%);
    height: 100vh;
    background: var(--black-soft);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 36px;
    gap: 40px;
    transition: right 0.35s ease;
    z-index: 950;
  }
  .nav.is-active { right: 0; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav__link { font-size: 1.1rem; }
  .nav__cta { width: 100%; justify-content: center; }
}

/* ----- Mobile (≤ 640px) ----- */
@media (max-width: 640px) {
  section { padding: 70px 0; }

  .cookie-banner { right: 16px; bottom: 16px; left: 16px; width: auto; }
  .cookie-banner__card { padding: 22px; }
  .legal { padding: 50px 0 70px; }

  .store-locator-modal { padding: 0; align-items: flex-end; }
  .store-locator-modal__cartao { width: 100%; max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .store-locator-modal__cabecalho { padding: 18px 20px; }
  .store-locator-modal__corpo { padding: 20px; }
  .store-locator__campo-busca { flex-direction: column; }
  .store-locator__campo-busca .btn { width: 100%; justify-content: center; }
  .onde-encontrar { padding: 40px 0 70px; }
  .onde-encontrar__widget { padding: 22px; }

  .hero { padding-bottom: 320px; }
  .hero__seal-wrap { margin-bottom: 14px; }
  .hero__seal { width: 92px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__promo { bottom: -340px; }
  .promo-banner__item { padding: 24px 20px; gap: 16px; }
  .promo-banner__img { width: 130px; }
  .promo-banner__text h3 { font-size: 0.85rem; }

  .about { padding-top: 380px; }
  .about__gallery { grid-template-columns: repeat(2, 1fr); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .products__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-card { padding: 20px 12px; }
  .product-card img { height: 140px; }

  .mosaic__marquee { gap: 12px; }
  .mosaic__set { gap: 12px; padding-right: 12px; }
  .mosaic__set img { width: 230px; height: 145px; }

  .recipes__grid { grid-template-columns: 1fr; }

  .events__grid { grid-template-columns: 1fr; }

  .event-cta__image img { max-width: 300px; margin-top: -140px; }

  .instagram__grid { grid-template-columns: 1fr 1fr; }

  .contato__form { padding: 24px; }
  .contato__grid { grid-template-columns: 1fr; gap: 18px; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__contact p { justify-content: center; }
  .footer__actions { grid-column: span 1; }

  .partners__logos { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .back-to-top { right: 16px; bottom: 16px; width: 46px; height: 46px; }
}

/* =========================================================
   PÁGINAS PÚBLICAS DINÂMICAS — produtos (listagem e detalhe)
   Reaproveita os tokens e componentes definidos acima.
   ========================================================= */

/* .product-card agora também é usado como <a> (produtos vindos do banco) */
.product-card { display: block; text-decoration: none; color: inherit; }

.page-header {
  position: relative;
  padding: 160px 0 60px;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.page-header::before {
  /* Escurece a imagem de fundo para o texto branco ficar sempre legível,
     independente da foto usada em cada página. */
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.6);
}
.page-header > .container {
  position: relative;
  z-index: 1;
}
.page-header__breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.page-header__breadcrumb a { color: #fff; font-weight: 600; }
.page-header__breadcrumb a:hover { color: var(--yellow); }
.page-header .section-title,
.page-header .section-subtitle { color: #fff; }
.page-header .section-subtitle { color: rgba(255,255,255,0.75); }

.filtros-publicos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.filtros-publicos__campo {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,0,0,0.12);
  font-family: inherit;
  font-size: 0.9rem;
}
.filtros-publicos__campo[type="text"] { flex: 1; min-width: 200px; }

.products__vazio {
  text-align: center;
  color: var(--gray-text);
  padding: 60px 0;
  font-size: 1.05rem;
}

.product-card__preco {
  margin-top: 8px;
  font-weight: 800;
  color: var(--red);
}

.paginacao-publica {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.paginacao-publica__link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-card);
  font-weight: 700;
}
.paginacao-publica__link.is-ativo { background: var(--red); color: #fff; }

/* ---------- Detalhe do produto ---------- */
.produto-detalhe { padding: 70px 0; }
.produto-detalhe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.produto-detalhe__imagem-principal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.produto-detalhe__imagem-principal img { max-height: 420px; object-fit: contain; }
.produto-detalhe__imagem-principal--vazia { color: var(--gray-text); font-size: 3rem; }

.produto-detalhe__seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-card);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.produto-detalhe__seta:hover { background: var(--red); color: #fff; }
.produto-detalhe__seta--anterior { left: 14px; }
.produto-detalhe__seta--proxima { right: 14px; }

.produto-detalhe__miniaturas {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.produto-detalhe__miniatura {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.produto-detalhe__miniatura:hover { border-color: var(--yellow); }
.produto-detalhe__miniatura.is-ativa { border-color: var(--red); transform: translateY(-2px); }
.produto-detalhe__miniatura img { width: 100%; height: 100%; object-fit: cover; }

.produto-detalhe__categoria {
  display: inline-block;
  background: rgba(255, 0, 0, 0.08);
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.produto-detalhe__categoria:hover { background: var(--red); color: #fff; }

.produto-detalhe__sku { color: var(--gray-text); font-size: 0.85rem; margin-bottom: 4px; }

.produto-detalhe__preco {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  margin: 10px 0;
}
.produto-detalhe__preco-original {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: line-through;
}
.produto-detalhe__preco-desconto {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.produto-detalhe__descricao {
  color: var(--gray-text);
  line-height: 1.7;
  margin: 20px 0 28px;
}
.produto-detalhe__descricao img { border-radius: var(--radius-md); margin: 12px 0; }

.produto-detalhe__acoes { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }

.produto-detalhe__compartilhar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--gray-text);
  font-size: 0.9rem;
}
.produto-detalhe__compartilhar a,
.produto-detalhe__compartilhar button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--offwhite);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.produto-detalhe__compartilhar a:hover,
.produto-detalhe__compartilhar button:hover { background: var(--red); color: #fff; }

.produto-detalhe__tabela-nutricional {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 340px;
  background: var(--offwhite);
  border: 1px solid var(--pk-border, rgba(0,0,0,0.08));
  border-radius: var(--radius-md);
  padding: 10px;
  margin-bottom: 24px;
  text-align: left;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.produto-detalhe__tabela-nutricional:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.produto-detalhe__tabela-nutricional img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm, 8px);
  flex-shrink: 0;
  background: #fff;
}
.produto-detalhe__tabela-nutricional span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}
.produto-detalhe__tabela-nutricional span i { color: var(--red); margin-right: 6px; }

.mt-produtos-relacionados { margin-top: 80px; }

@media (max-width: 860px) {
  .produto-detalhe__grid { grid-template-columns: 1fr; gap: 30px; }
  .page-header { padding: 130px 0 40px; }
}

/* ---------- Receitas (listagem e detalhe públicos) ---------- */
.recipe-card__img { display: block; }
.recipe-card__body h3 a { color: inherit; }
.recipe-card__body h3 a:hover { color: var(--yellow); }
.recipe-card__meta {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* Nas páginas públicas de receitas (listagem e "veja mais" no detalhe), o
   card fica sobre fundo claro — mantém a estrutura, mas troca o cartão
   escuro (pensado para a faixa escura da home) por um cartão branco. */
.recipes__grid--publica .recipe-card { background: #fff; box-shadow: var(--shadow-card); }
.recipes__grid--publica .recipe-card__meta { color: var(--red); }
.recipes__grid--publica .recipe-card__body h3 { color: var(--black); }
.recipes__grid--publica .recipe-card__body p { color: var(--gray-text); }
.recipes__grid--publica .btn--yellow-outline { color: var(--black); border-color: var(--black); }
.recipes__grid--publica .btn--yellow-outline:hover { background: var(--black); color: #fff; }

.receita-detalhe { padding: 70px 0; }
.receita-detalhe__topo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}
.receita-detalhe__imagem {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.receita-detalhe__imagem img { width: 100%; height: 380px; object-fit: cover; }

.receita-detalhe__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}
.receita-detalhe__badge {
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.receita-detalhe__badge i { color: var(--red); }

.receita-detalhe__colunas {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}
.receita-detalhe__ingredientes {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px;
  height: fit-content;
}
.receita-detalhe__ingredientes h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; }
.receita-detalhe__ingredientes ul { list-style: none; margin: 0; padding: 0; }
.receita-detalhe__ingredientes li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--gray-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.receita-detalhe__ingredientes li:last-child { border-bottom: none; }
.receita-detalhe__ingredientes li i { color: var(--red); margin-top: 4px; }

.receita-detalhe__passos h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; }
.receita-detalhe__passo {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}
.receita-detalhe__passo-numero {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.receita-detalhe__passo-texto { color: var(--gray-text); line-height: 1.7; padding-top: 6px; }

.receita-detalhe__extra {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 30px;
  margin-top: 30px;
}
.receita-detalhe__extra h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.receita-detalhe__extra p { color: var(--gray-text); line-height: 1.7; }

.receita-detalhe__video { margin-top: 30px; }
.receita-detalhe__video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-card);
}

.receita-detalhe__localizador {
  margin-top: 40px;
  background: rgba(255,0,0,0.06);
  border: 2px solid rgba(255,0,0,0.18);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.receita-detalhe__localizador-texto h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.receita-detalhe__localizador-texto h3 i { color: var(--red); }
.receita-detalhe__localizador-texto p { color: var(--gray-text); margin: 0; font-size: 1.02rem; }
.receita-detalhe__localizador .btn { flex-shrink: 0; }

@media (max-width: 860px) {
  .receita-detalhe__topo,
  .receita-detalhe__colunas { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  .receita-detalhe__localizador { padding: 24px; }
  .receita-detalhe__localizador .btn { width: 100%; justify-content: center; }

  /* Card de receita fica apertado no mobile (ainda mais dentro do
     carrossel, com o "pedaço" do próximo card à mostra) — some a
     descrição e mantém só meta, título e botão. */
  .recipe-card__body p:not(.recipe-card__meta) { display: none; }
}

/* ---------- Galerias (listagem e detalhe públicos) ---------- */
.galerias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.galeria-card-publica {
  display: block;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.galeria-card-publica:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-strong); }
.galeria-card-publica__capa { position: relative; height: 220px; background: var(--offwhite); }
.galeria-card-publica__capa img { width: 100%; height: 100%; object-fit: cover; }
.galeria-card-publica__capa--vazia {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-text); font-size: 2rem;
}
.galeria-card-publica__contador {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(13,13,13,0.75); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.galeria-card-publica__corpo { padding: 20px; }
.galeria-card-publica__corpo h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; color: var(--black); }
.galeria-card-publica__corpo p { color: var(--gray-text); font-size: 0.85rem; margin: 0; }

.galeria-fotos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.galeria-fotos__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  padding: 0;
  border: none;
  background: var(--offwhite);
  cursor: pointer;
}
.galeria-fotos__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.galeria-fotos__item:hover img { transform: scale(1.08); }
.galeria-fotos__legenda {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff; font-size: 0.78rem; padding: 20px 10px 8px;
  text-align: left;
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.is-aberta { display: flex; }
.lightbox__conteudo { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox__conteudo img { max-width: 90vw; max-height: 75vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox__legenda { color: #fff; margin-top: 14px; font-weight: 600; }
.lightbox__creditos { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-top: 4px; }
.lightbox__fechar {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.1); color: #fff; border: none;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); color: #fff; border: none;
  width: 50px; height: 50px; border-radius: 50%; font-size: 1.3rem;
}
.lightbox__nav--anterior { left: 24px; }
.lightbox__nav--proxima { right: 24px; }

@media (max-width: 860px) {
  .galerias__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .galeria-fotos__grid { grid-template-columns: 1fr 1fr; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox__nav--anterior { left: 8px; }
  .lightbox__nav--proxima { right: 8px; }
}

/* ---------- Faixa de pré-visualização (item ainda não publicado) ---------- */
.faixa-preview {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
}

/* ---------- Carrossel de produtos (home, quando há mais de 4 destaques) ----------
   Referência de comportamento: seara.com.br, seção "Pratonistas da mesa"
   — vários cards visíveis por vez, com uma "espiadinha" do próximo grupo,
   setas nas laterais e bolinhas de paginação por página (não por item). */
.products__carrossel {
  display: flex;
  align-items: center;
  gap: 14px;
}
.products__carrossel-trilho {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* overflow-x: auto corta também no eixo vertical (o navegador força os
     dois eixos a se comportarem como "auto"), então a sombra do card e o
     levantar no hover precisam desse respiro extra para não serem cortados.
     A margem negativa compensa o padding para não abrir um vão na página. */
  padding: 24px 6px 50px;
  margin: -24px -6px -50px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.products__carrossel-trilho::-webkit-scrollbar { display: none; }
.products__carrossel-trilho .product-card {
  flex: 0 0 clamp(220px, 23%, 270px);
  scroll-snap-align: start;
}
/* "Veja mais receitas" (detalhe de receita) reaproveita o mesmo carrossel,
   com 3 cards por vez em vez de 4 — acompanha a grade .recipes__grid de 3
   colunas usada quando não há carrossel. */
.products__carrossel-trilho .recipe-card {
  flex: 0 0 clamp(260px, 31.5%, 380px);
  scroll-snap-align: start;
}
.products__carrossel-seta {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.products__carrossel-seta:hover { background: var(--red-dark); transform: scale(1.06); }
.products__carrossel-seta:disabled { opacity: 0.35; pointer-events: none; transform: none; }

/* ---------- Paginação por bolinhas (uma bolinha = uma "página" de cards) ---------- */
.products__carrossel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.products__carrossel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.15);
  padding: 0;
  border: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.products__carrossel-dot:hover { background: rgba(255, 0, 0, 0.4); }
.products__carrossel-dot.is-ativo { background: var(--red); transform: scale(1.2); }

@media (max-width: 980px) {
  .products__carrossel-trilho .product-card,
  .products__carrossel-trilho .recipe-card { flex-basis: 46%; }
}

@media (max-width: 700px) {
  .products__carrossel { gap: 8px; }
  .products__carrossel-seta { width: 40px; height: 40px; font-size: 0.95rem; }
  .products__carrossel-trilho { gap: 16px; }
  .products__carrossel-trilho .product-card { flex-basis: 78%; padding: 20px 12px; }
  .products__carrossel-trilho .product-card img { height: 140px; }
  .products__carrossel-trilho .recipe-card { flex-basis: 78%; }
}

/* =========================================================
   REVELAR AO ROLAR — sistema genérico, usado em toda a página
   (JS: main.js observa [data-scroll-reveal] e [data-scroll-reveal-grupo]
   e adiciona a classe "is-visivel" quando o elemento entra na tela)
   ========================================================= */

/* Padrão simples: o próprio elemento some/aparece */
[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-scroll-reveal].is-visivel {
  opacity: 1;
  transform: translateY(0);
}

/* Padrão em grupo: os filhos diretos aparecem em cascata (efeito escalonado) */
[data-scroll-reveal-grupo] > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-scroll-reveal-grupo].is-visivel > * {
  opacity: 1;
  transform: translateY(0);
}
[data-scroll-reveal-grupo].is-visivel > *:nth-child(1) { transition-delay: 0s; }
[data-scroll-reveal-grupo].is-visivel > *:nth-child(2) { transition-delay: 0.12s; }
[data-scroll-reveal-grupo].is-visivel > *:nth-child(3) { transition-delay: 0.24s; }
[data-scroll-reveal-grupo].is-visivel > *:nth-child(4) { transition-delay: 0.36s; }
[data-scroll-reveal-grupo].is-visivel > *:nth-child(5) { transition-delay: 0.48s; }
[data-scroll-reveal-grupo].is-visivel > *:nth-child(n+6) { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  [data-scroll-reveal],
  [data-scroll-reveal-grupo] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
