/* ============================================================
   Feira Criativa Jurerê — stylesheet reconstruído (rebuild limpo)
   Paleta: bege + verde natural · Fontes: Fraunces / Cormorant / Montserrat
   ============================================================ */

:root {
  --green-deep: #34503b;
  --green: #4f7250;
  --green-soft: #7a9b78;
  --sand: #e7ddc9;
  --beige: #efe7d6;
  --beige-light: #f5efe3;
  --cream: #faf6ee;
  --earth: #a98a63;
  --wood: #8a6b48;
  --gold: #b6925a;
  --text: #2b2a24;
  --text-muted: #6f6a5b;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(40, 50, 35, 0.14);
  --radius: 16px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
svg { max-width: 100%; }
ul { list-style: none; }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--green-deep); }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--earth); font-weight: 600; margin-bottom: 14px;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 14px 30px; border-radius: 999px; font-family: var(--font-body);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--green-deep); color: var(--cream); }
.btn--primary:hover { background: var(--green); box-shadow: 0 14px 30px rgba(52,80,59,.35); }
.btn--outline { background: transparent; border-color: var(--green-deep); color: var(--green-deep); }
.btn--outline:hover { background: var(--green-deep); color: var(--cream); }
.btn--white { background: var(--cream); color: var(--green-deep); }
.btn--light { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--green-deep); }

/* ===== LOADING ===== */
#loadingScreen {
  position: fixed; inset: 0; z-index: 9999; background: var(--green-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transition: opacity .7s ease, visibility .7s ease;
}
#loadingScreen.hidden, .no-loading #loadingScreen { opacity: 0; visibility: hidden; pointer-events: none; }
.loading__logo { width: 150px; height: auto; filter: brightness(0) invert(1); opacity: .95; }
.loading__line { width: 60px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.4); overflow: hidden; position: relative; }
.loading__line::after { content:""; position:absolute; inset:0; width:40%; background:#fff; animation: loadbar 1.1s infinite ease-in-out; }
@keyframes loadbar { 0%{left:-40%} 100%{left:100%} }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 18px 0; transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header.scrolled { background: var(--cream); padding: 10px 0; box-shadow: 0 6px 24px rgba(40,50,35,.10); }
.header__logo-img { height: 52px; width: auto; transition: filter .3s ease; filter: brightness(0) invert(1); }
.header.scrolled .header__logo-img { filter: none; }
.nav { display: flex; gap: 30px; }
.nav__link { color: #fff; font-weight: 500; font-size: .92rem; position: relative; transition: color .2s ease; }
.nav__link::after { content:""; position:absolute; left:0; bottom:-5px; width:0; height:2px; background: var(--gold); transition: width .25s ease; }
.nav__link:hover::after { width: 100%; }
.header.scrolled .nav__link { color: var(--green-deep); }
.header__cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px;
  background: rgba(255,255,255,.16); color: #fff; font-weight: 600; font-size: .85rem;
  border: 1px solid rgba(255,255,255,.4); transition: background .25s ease, color .25s ease;
}
.header__cta:hover { background: #fff; color: var(--green-deep); }
.header.scrolled .header__cta { background: var(--green-deep); color: #fff; border-color: transparent; }
.header__cta svg { width: 17px; height: 17px; flex-shrink: 0; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.header.scrolled .nav__toggle span { background: var(--green-deep); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950; background: var(--green-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu__logo { width: 130px; filter: brightness(0) invert(1); margin-bottom: 10px; }
.mobile-menu a { color: #fff; font-family: var(--font-display); font-size: 1.6rem; }
.mobile-menu svg { width: 22px; height: 22px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 1; }
.hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease; }
.hero__slide.active { opacity: 1; }
.hero__overlay { position: absolute; inset: 0; z-index: 2; background:
  radial-gradient(115% 90% at 50% 44%, rgba(18,28,18,.34) 0%, rgba(18,28,18,.56) 58%, rgba(18,28,18,.8) 100%),
  linear-gradient(180deg, rgba(18,28,18,.46) 0%, rgba(18,28,18,.3) 42%, rgba(18,28,18,.72) 100%); }
.hero__content { position: relative; z-index: 3; width: 100%; max-width: 880px; margin: 0 auto; padding: 120px 28px 90px; text-align: center; text-shadow: 0 2px 16px rgba(12,18,12,.5); }
.hero__eyebrow { color: rgba(255,255,255,.92); }
.hero__content h1 { color: #fff; margin-bottom: 22px; text-shadow: 0 4px 28px rgba(10,16,10,.6), 0 1px 3px rgba(10,16,10,.5); }
.hero__content h1 em { color: #f1d79c; font-style: italic; }
.hero__subtitle { font-size: 1.15rem; color: rgba(255,255,255,.95); max-width: 620px; margin: 0 auto 34px; }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__buttons .btn--outline { border-color: rgba(255,255,255,.75); color: #fff; }
.hero__buttons .btn--outline:hover { background: #fff; color: var(--green-deep); border-color: #fff; }
.hero__meta { position: absolute; z-index: 3; bottom: 40px; right: 28px; display: flex; gap: 30px; color: rgba(255,255,255,.85); font-size: .85rem; }
.hero__scroll { position: absolute; z-index: 3; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 46px; background: rgba(255,255,255,.6); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

section { padding: 100px 0; }

/* ===== SOBRE ===== */
.sobre { background: var(--beige-light); }
.sobre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sobre__image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.sobre__image img, .sobre__image video { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }
.sobre__eyebrow { color: var(--earth); }
.sobre__text h2 { margin-bottom: 22px; }
.sobre__text p { color: var(--text-muted); margin-bottom: 16px; }
.sobre__tag { display: inline-block; margin-top: 8px; font-family: var(--font-accent); font-style: italic; font-size: 1.3rem; color: var(--green); }
.sobre__pilares { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.pilar { text-align: center; }
.pilar__icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--green-deep); color: var(--cream); margin-bottom: 12px; }
.pilar__icon svg { width: 30px; height: 30px; }
.pilar h4 { font-size: 1rem; }

/* ===== FEIRANTES ===== */
.feirantes { background: var(--cream); }
.feirantes__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.feirantes__grid .feirante-card { flex: 0 0 calc((100% - 60px) / 3); max-width: calc((100% - 60px) / 3); }
.feirante-card {
  display: block; background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 30px rgba(40,50,35,.08); transition: transform .3s ease, box-shadow .3s ease;
}
.feirante-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
/* card = barraquinha de feira: guarda-sol (imagem) + moldura + balcão de madeira */
.feirante-card { padding-top: 124px; background: transparent; box-shadow: none; position: relative; z-index: 0; overflow: visible; }
/* guarda-sol grande ATRÁS do card — só a cúpula aparece por cima (asset real, responsivo) */
.feirante-card::before {
  content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 116%; max-width: 460px; aspect-ratio: 1 / 1; z-index: -1; pointer-events: none;
  background: url('../midia/elementos/guarda-sol.webp') no-repeat center top;
  background-size: contain;
  filter: drop-shadow(0 8px 14px rgba(40,50,35,.2));
}
/* no desktop o guarda-sol sobe um pouco */
@media (min-width: 993px) {
  .feirante-card::before { top: -22px; }
}
.feirante-card__placeholder {
  position: relative; height: 270px; margin: 0 14px; overflow: hidden;
  border-radius: 8px 8px 6px 6px;
  border: 7px solid #6e4d2e;
  box-shadow: inset 0 0 0 2px #8a6b48, 0 14px 30px rgba(40,50,35,.18);
  background: var(--green-soft); font-size: 0;
}
.feirante-card__placeholder--green { background: var(--green-soft); }
.feirante-card__placeholder--earth { background: var(--earth); }
.feirante-card__slideshow { font-size: 0; }
.feirante-card__slideshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .9s ease; }
.feirante-card__slideshow img.is-active { opacity: 1; }
/* (balcão de madeira da frente removido — mantida só a moldura em volta) */
.feirante-card__body { background: var(--white); border-radius: 0 0 var(--radius) var(--radius); box-shadow: 0 10px 30px rgba(40,50,35,.08); margin: 0 0 0 0; }
.feirante-card__body { padding: 24px 24px 28px; }
.feirante-card__category { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--earth); font-weight: 700; }
.feirante-card__name { font-size: 1.45rem; margin: 8px 0 4px; }
.feirante-card__marca { font-family: var(--font-accent); font-style: italic; font-size: 1.1rem; color: var(--green); }
.feirante-card__desc { color: var(--text-muted); font-size: .92rem; margin: 12px 0 16px; }
.feirante-card__insta { font-size: .82rem; color: var(--earth); font-weight: 600; }
.feirante-card__btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 9px 20px; border-radius: 999px; background: var(--green-deep); color: #fff; font-weight: 600; font-size: .85rem; white-space: nowrap; }
.feirante-card__btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.feirante-card__btn:hover { background: var(--green); }

/* ===== LOCAIS ===== */
.locais { background: var(--beige-light); }
.locais__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 400px)); justify-content: center; gap: 26px; align-items: stretch; }
.local-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid rgba(52,80,59,.08); border-radius: var(--radius); padding: 30px 26px; box-shadow: 0 8px 24px rgba(40,50,35,.07); position: relative; transition: transform .3s ease, box-shadow .3s ease; }
.local-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(40,50,35,.12); }
.local-card__number { font-family: var(--font-display); font-size: 2.4rem; color: var(--sand); line-height: 1; margin-bottom: 6px; }
.local-card h3 { margin-bottom: 4px; }
.local-card__ref { color: var(--earth); font-size: .82rem; font-weight: 600; letter-spacing: .01em; }
.local-card__address { color: var(--text-muted); font-size: .9rem; margin-top: 4px; }
.local-card__horario { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; margin-top: 16px; padding: 7px 14px; border-radius: 999px; background: rgba(79,114,80,.1); font-weight: 600; font-size: .82rem; color: var(--green-deep); }
.local-card__map { width: 100%; height: 190px; margin-top: 18px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(52,80,59,.1); background: var(--beige); }
.local-card__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.92); }
.local-card__maplink { display: inline-flex; align-items: center; justify-content: center; gap: 8px; align-self: flex-start; margin-top: 18px; padding: 10px 20px; border-radius: 999px; background: var(--green-deep); color: #fff; font-weight: 600; font-size: .82rem; transition: background .25s ease; }
.local-card__maplink:hover { background: var(--green); }
.locais__nota { text-align: center; color: var(--text-muted); margin-top: 36px; font-family: var(--font-accent); font-style: italic; font-size: 1.2rem; }

/* Seja feirante */
.feirante-cta { padding: 100px 0; background: #fff; text-align: center; }
.feirante-cta h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 14px 0 16px; }
.feirante-cta__text { color: var(--text-muted); max-width: 620px; margin: 0 auto 30px; font-size: 1.06rem; }
.feirante-cta__links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== GALERIA ===== */
.galeria { background: var(--cream); }
.galeria__header { text-align: center; margin-bottom: 48px; }
.galeria__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.galeria__item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.galeria__item:first-child { grid-column: span 2; grid-row: span 2; }
.galeria__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.galeria__item:hover img { transform: scale(1.07); }
.galeria__item::after { content:""; position:absolute; inset:0; background: rgba(40,50,35,0); transition: background .3s ease; }
.galeria__item:hover::after { background: rgba(40,50,35,.18); }

/* ===== VITRINE / CTA ===== */
.vitrine { background: var(--green-deep); color: #fff; }
.vitrine__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.vitrine__content h2 { color: #fff; margin-bottom: 18px; }
.vitrine__content p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 1.05rem; }
.cta-final { text-align: center; }
.cta-final__subtitle { color: var(--text-muted); margin-bottom: 26px; }
.cta-final__secondary { margin-top: 18px; }
.cta-final__micro { font-size: .8rem; color: var(--text-muted); margin-top: 16px; }
.cta-final .btn--light { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.cta-final .btn--light:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ===== FOOTER ===== */
.footer { background: #20281f; color: rgba(255,255,255,.75); padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer__brand p { margin-top: 16px; font-size: .9rem; max-width: 320px; }
.footer__logo-img { height: 56px; width: auto; filter: brightness(0) invert(1); }
.footer h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer a:hover { color: var(--gold); }
.footer__socials { display: flex; gap: 14px; margin-top: 12px; }
.footer__social { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); transition: background .25s ease; }
.footer__social:hover { background: var(--green); }
.footer__social svg, .footer svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; text-align: center; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ===== LIGHTBOX ===== */
#lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(20,26,18,.92); display: none; align-items: center; justify-content: center; padding: 40px; }
#lightbox.active { display: flex; }
#lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 10px; }
.lightbox__close { position: absolute; top: 26px; right: 32px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.15); color: #fff; font-size: 1.6rem; cursor: pointer; }

/* ===== REVEAL ===== */
.reveal { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.no-loading .reveal { opacity: 1; transform: none; }

.ico { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; flex-shrink: 0; }
.ico svg { width: 16px; height: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .locais__grid { grid-template-columns: repeat(2, 1fr); }
  .feirantes__grid .feirante-card { flex: 0 0 calc((100% - 30px) / 2); max-width: calc((100% - 30px) / 2); }
  .sobre__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .galeria__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav, .header__cta { display: none; }
  .nav__toggle { display: flex; }
  .locais__grid, .footer__grid { grid-template-columns: 1fr; }
  .feirantes__grid .feirante-card { flex: 0 0 100%; max-width: 100%; }
  .galeria__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .galeria__item:first-child { grid-column: span 2; grid-row: span 1; }
  .hero__meta { display: none; }
  .sobre__pilares { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   PÁGINAS DE FEIRANTE (detalhe do stande)
   ============================================================ */
.feirante-hero { position: relative; min-height: 70vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.feirante-hero__bg { position: absolute; inset: 0; z-index: 1; }
.feirante-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.feirante-hero__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(30,42,30,.25) 0%, rgba(30,42,30,.78) 100%); }
.feirante-hero__content { position: relative; z-index: 3; max-width: var(--container); margin: 0 auto; width: 100%; padding: 0 28px 70px; }
.feirante-hero__category { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sand); font-weight: 700; margin-bottom: 12px; }
.feirante-hero__content h1 { color: #fff; margin-bottom: 8px; }
.feirante-hero__marca { font-family: var(--font-accent); font-style: italic; font-size: 1.5rem; color: rgba(255,255,255,.92); margin-bottom: 22px; }
.feirante-hero__content .feirante-link, .stande-intro__links .feirante-link { margin-right: 12px; }

.feirante-link { display: inline-flex; align-items: center; gap: 9px; padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: .9rem; transition: transform .25s ease, background .25s ease; }
.feirante-link:hover { transform: translateY(-3px); }
.feirante-link svg { width: 18px; height: 18px; }
.feirante-link--insta { background: #fff; color: var(--green-deep); }
.feirante-link--whats { background: #25d366; color: #fff; }
.feirante-link--whats:hover { background: #1ebe5b; }

.feirante-back { position: fixed; top: 90px; left: 28px; z-index: 800; display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--green-deep); font-weight: 600; font-size: .85rem; box-shadow: 0 6px 18px rgba(40,50,35,.15); }
.feirante-back:hover { background: #fff; }

.stande-intro { background: var(--beige-light); text-align: center; padding: 80px 0; }
.stande-intro .container { max-width: 760px; }
.stande-intro__frase { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--green-deep); margin-bottom: 18px; line-height: 1.25; }
.stande-intro__desc { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 26px; }
.stande-intro__links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.stande-section { padding: 90px 0; }
.stande-section__title { text-align: center; margin-bottom: 48px; }

.produtos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 34px; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.produto-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(40,50,35,.08); transition: transform .3s ease, box-shadow .3s ease; }
.produto-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.produto-card__image { height: 260px; overflow: hidden; background: var(--beige); }
.produto-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.produto-card:hover .produto-card__image img { transform: scale(1.05); }
.produto-card__body { padding: 26px 24px 30px; }
.produto-card__tag { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--earth); font-weight: 700; }
.produto-card__name { font-size: 1.25rem; margin: 10px 0 10px; }
.produto-card__desc { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 20px; }
.produto-card__whatsapp { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px; background: #25d366; color: #fff; font-weight: 600; font-size: .82rem; }
.produto-card__whatsapp:hover { background: #1ebe5b; }
.produto-card__whatsapp svg { width: 16px; height: 16px; }

.stande-galeria { background: var(--cream); padding: 90px 0; }
.stande-galeria__title { text-align: center; margin-bottom: 44px; }
.stande-galeria__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.stande-galeria__item { overflow: hidden; border-radius: 12px; cursor: pointer; }
.stande-galeria__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.stande-galeria__item:hover img { transform: scale(1.07); }

.stande-footer { text-align: center; padding: 70px 0; background: var(--green-deep); color: #fff; }
.stande-footer h2 { color: #fff; margin-bottom: 18px; }

@media (max-width: 992px) { .produtos-grid { grid-template-columns: repeat(2,1fr); gap: 28px 26px; } .stande-galeria__grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) { .produtos-grid { grid-template-columns: 1fr; gap: 24px; } .stande-galeria__grid { grid-template-columns: repeat(2,1fr); } .feirante-back { top: 76px; left: 14px; } }
/* Mobile: imagens de produto quadradas 1:1 em todas as paginas de feirantes (object-fit cover mantem a qualidade, sem distorcer) */
@media (max-width: 768px) {
  .produto-card__image { height: auto; aspect-ratio: 1 / 1; }
  .produto-card__image img { width: 100%; height: 100%; object-fit: cover; }
  .stande-galeria__item { aspect-ratio: 1 / 1; }
  .stande-galeria__item img { width: 100%; height: 100%; object-fit: cover; }
}
