:root {
  --green: #006b3f;
  --green-600: #007c49;
  --green-800: #004b2c;
  --green-950: #012a1a;
  --yellow: #ffc629;
  --yellow-700: #dfa500;
  --ink: #10231a;
  --muted: #65736d;
  --line: #dfe8e3;
  --soft: #f4f7f5;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 22px 55px rgba(0, 75, 44, 0.12);
  --deep-shadow: 0 30px 80px rgba(1, 42, 26, 0.2);
  --radius: 18px;
  --header-height: 78px;
  --container: min(1240px, calc(100vw - 42px));
  --slider-gap: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.is-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 198, 41, 0.88);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(0, 107, 63, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 75, 44, 0.18));
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  color: var(--green);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.brand small {
  color: #3b4e46;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 10px 8px;
  color: #22382f;
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 4px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 190ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--green);
}

.nav-social {
  display: flex;
  gap: 8px;
}

.nav-social a,
.social-row a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 107, 63, 0.14);
  border-radius: 12px;
  color: var(--green);
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-social a:hover,
.social-row a:hover {
  transform: translateY(-2px);
  background: rgba(0, 107, 63, 0.08);
  box-shadow: 0 12px 24px rgba(0, 75, 44, 0.12);
}

.associate-area {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-800));
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 75, 44, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.associate-area:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 75, 44, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--green);
}

.hero {
  position: relative;
  min-height: min(660px, calc(100svh - var(--header-height) - 96px));
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 75, 44, 0.94) 0%, rgba(0, 75, 44, 0.86) 38%, rgba(0, 75, 44, 0.26) 68%, rgba(0, 75, 44, 0.1) 100%),
    url("assets/hero-pessoas-supermercado.png") center right/cover;
  transform: scale(1.01);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 8%, transparent 0 110px, rgba(255, 198, 41, 0.35) 111px 112px, transparent 113px),
    radial-gradient(circle at 0 66%, transparent 0 120px, rgba(255, 198, 41, 0.24) 121px 122px, transparent 123px),
    linear-gradient(180deg, transparent 75%, rgba(255, 255, 255, 0.94) 75%);
  opacity: 0.92;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 28px;
  align-items: center;
  padding: 42px 0 82px;
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  max-width: 720px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(0, 75, 44, 0.34);
  border-color: rgba(255, 255, 255, 0.16);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
a,
button {
  overflow-wrap: anywhere;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: #1b261a;
  box-shadow: 0 18px 34px rgba(255, 198, 41, 0.27);
}

.btn-yellow:hover {
  background: #ffd65d;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(0, 75, 44, 0.25);
}

.btn-green:hover {
  background: var(--green-800);
}

.btn-outline {
  border-color: rgba(0, 107, 63, 0.22);
  background: var(--white);
  color: var(--green);
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  text-decoration: none;
}

.scroll-hint i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.hero-media {
  overflow: hidden;
  height: min(42vw, 430px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: var(--deep-shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.02);
}

.differentials {
  position: relative;
  z-index: 2;
  margin-top: -62px;
  padding-bottom: 42px;
}

.differentials-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 107, 63, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 62px rgba(0, 75, 44, 0.14);
}

.differentials article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 126px;
  padding: 22px;
  border-right: 1px solid var(--line);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.differentials article:last-child {
  border-right: 0;
}

.differentials article:hover {
  background: linear-gradient(135deg, rgba(0, 107, 63, 0.06), rgba(255, 198, 41, 0.09));
  transform: translateY(-2px);
}

.differentials span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3f7f4, #ffffff);
  color: var(--green);
}

.differentials h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.16;
}

.differentials p {
  grid-column: 2;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 88px 0;
}

.section-copy {
  max-width: 680px;
}

.section-copy.centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-copy h2,
.club-copy h2,
.felita-head h2,
.supplier-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.3rem, 4.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.associates-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 198, 41, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
}

.associates-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(480px, 1.08fr);
  gap: 26px;
  align-items: start;
}

.associates-grid > .section-copy {
  grid-column: 1;
}

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

.stats-grid article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 112px;
  border: 1px solid rgba(0, 107, 63, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(0, 75, 44, 0.08);
}

.stats-grid svg {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 13px;
  border-radius: 15px;
  color: var(--green);
  background: rgba(0, 107, 63, 0.08);
}

.stats-grid strong {
  color: var(--green);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1;
}

.stats-grid article:nth-child(even) strong {
  color: var(--yellow-700);
}

.stats-grid span {
  color: var(--muted);
  font-weight: 750;
}

.associate-panel {
  grid-column: 1;
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.store-tools,
.offer-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 900;
}

label span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 18px rgba(0, 75, 44, 0.04);
}

textarea {
  min-height: 128px;
  padding-block: 12px;
  resize: vertical;
}

.store-list {
  display: grid;
  gap: 10px;
  max-height: 360px;
  margin-top: 16px;
  overflow: auto;
  padding-right: 4px;
}

.store-card {
  border: 1px solid rgba(0, 107, 63, 0.11);
  border-radius: 14px;
  padding: 14px;
  background: var(--white);
}

.store-card h3 {
  margin: 0 0 6px;
  color: var(--green-950);
  font-size: 1rem;
}

.store-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.store-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.store-card a,
.store-card button,
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 107, 63, 0.22);
  border-radius: 10px;
  background: rgba(0, 107, 63, 0.08);
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.store-card a,
.mini-link {
  background: var(--green);
  color: var(--white);
}

.map-shell {
  grid-column: 2;
  grid-row: 1 / span 3;
  overflow: hidden;
  border: 1px solid rgba(0, 107, 63, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.map-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.map-heading h3 {
  margin: 0;
  color: var(--green-950);
}

.map-heading .eyebrow {
  margin-bottom: 4px;
  color: var(--green);
}

.map {
  position: relative;
  width: 100%;
  min-height: 660px;
  background:
    linear-gradient(135deg, rgba(0, 107, 63, 0.08), rgba(255, 198, 41, 0.17)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px 72px),
    #dceadf;
}

.fallback-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 52px;
  height: 62px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -100%);
}

.fallback-marker span,
.central-pin span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 6px;
  border: 3px solid var(--yellow);
  border-radius: 50% 50% 50% 12px;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(0, 75, 44, 0.25);
  transform: rotate(-45deg);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.fallback-marker:hover span,
.central-pin:hover span {
  transform: rotate(-45deg) translateY(-5px) scale(1.05);
  box-shadow: 0 20px 36px rgba(0, 75, 44, 0.32);
}

.fallback-marker img,
.central-pin img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transform: rotate(45deg);
}

.map-popup h3 {
  margin: 0 0 6px;
  color: var(--green-950);
}

.map-popup p {
  margin: 2px 0;
  color: var(--muted);
}

.map-popup a {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.club-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 198, 41, 0.22), transparent 32%),
    linear-gradient(135deg, var(--green-950), var(--green));
  color: var(--white);
}

.club-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(330px, 1.05fr);
  gap: 46px;
  align-items: center;
}

.club-copy h2,
.supplier-copy h2 {
  color: var(--white);
}

.club-copy p,
.supplier-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.club-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.club-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 850;
}

.phone-mockup {
  position: relative;
  min-height: 560px;
}

.phone-frame {
  width: min(310px, 82vw);
  margin-inline: auto;
  border: 12px solid #0c2017;
  border-radius: 42px;
  background: #0c2017;
  box-shadow: var(--deep-shadow);
}

.phone-top {
  width: 92px;
  height: 22px;
  margin: 0 auto 6px;
  border-radius: 0 0 14px 14px;
  background: #0c2017;
}

.phone-screen {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 510px;
  padding: 28px 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 198, 41, 0.25), transparent 30%),
    linear-gradient(180deg, #ffffff, #eff6f1);
  color: var(--green-950);
}

.phone-screen img {
  width: 76px;
  height: 76px;
}

.phone-screen p,
.phone-screen h3,
.phone-screen span {
  margin: 0;
}

.phone-screen h3 {
  color: var(--green);
  font-size: 2.6rem;
}

.coupon-card {
  width: 100%;
  display: grid;
  gap: 2px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-800));
  color: var(--white);
  box-shadow: 0 16px 36px rgba(0, 75, 44, 0.2);
}

.coupon-card strong {
  color: var(--yellow);
  font-size: 2rem;
}

.coupon-card em {
  font-style: normal;
  opacity: 0.86;
}

.app-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.app-grid span {
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 8px;
  background: var(--white);
  color: var(--green);
  font-weight: 900;
}

.floating-coupon {
  position: absolute;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  font-weight: 950;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.coupon-a {
  top: 80px;
  left: 8%;
}

.coupon-b {
  right: 8%;
  bottom: 110px;
}

.felita-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 198, 41, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7faf8);
}

.felita-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}

.felita-head p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.felita-head img {
  width: min(270px, 44vw);
  filter: drop-shadow(0 18px 28px rgba(0, 75, 44, 0.16));
}

.product-slider {
  --visible: 4;
  position: relative;
  padding: 24px 56px 58px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: var(--slider-gap);
  will-change: transform;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card {
  flex: 0 0 calc((100% - (var(--visible) - 1) * var(--slider-gap)) / var(--visible));
  display: grid;
  grid-template-rows: 260px auto auto;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(0, 107, 63, 0.1);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(0, 75, 44, 0.09);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 75, 44, 0.14);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(0, 75, 44, 0.15));
}

.product-card h3 {
  min-height: 48px;
  margin: 0;
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.18;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.slider-button {
  position: absolute;
  top: 168px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 107, 63, 0.16);
  border-radius: 14px;
  background: var(--white);
  color: var(--green);
  box-shadow: 0 14px 28px rgba(0, 75, 44, 0.13);
  cursor: pointer;
}

.slider-button:hover {
  background: var(--yellow);
  color: var(--green-950);
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  inset: auto 56px 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(0, 107, 63, 0.24);
  cursor: pointer;
}

.slider-dots button[aria-current="true"] {
  width: 28px;
  background: var(--green);
}

.offers-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 198, 41, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #f5f8f6);
}

.instagram-offers-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 34px;
}

.instagram-highlight-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border-radius: 24px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(0, 107, 63, 0.94), rgba(0, 75, 44, 0.9)),
    url("assets/hero-pessoas-supermercado.png") center/cover;
  color: var(--white);
  box-shadow: var(--deep-shadow);
}

.instagram-highlight-card::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 198, 41, 0.34);
  border-radius: 999px;
}

.instagram-highlight-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background: rgba(255, 198, 41, 0.14);
}

.instagram-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
  font-weight: 950;
}

.instagram-highlight-card h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 12px;
  font-size: clamp(1.9rem, 3.3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.instagram-highlight-card p,
.instagram-highlight-card li {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
}

.instagram-highlight-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.instagram-highlight-card .btn {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
}

.instagram-feed-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(0, 107, 63, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 107, 63, 0.07), rgba(255, 198, 41, 0.13)),
    var(--white);
  box-shadow: var(--shadow);
}

.instagram-feed-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(0, 107, 63, 0.12);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.instagram-feed-header h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.35rem;
}

.instagram-feed-header .eyebrow {
  margin-bottom: 4px;
  color: var(--green);
}

.instagram-feed-header a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 107, 63, 0.16);
  border-radius: 14px;
  background: var(--white);
  color: var(--green);
  text-decoration: none;
}

.instagram-feed-card iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 464px;
  border: 0;
  background: transparent;
}

.instagram-feed-fallback {
  position: absolute;
  inset: 98px 20px 20px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.instagram-feed-fallback span {
  display: grid;
  place-items: center;
  min-height: 120px;
  border: 1px solid rgba(0, 107, 63, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-950);
  font-weight: 950;
  text-align: center;
  backdrop-filter: blur(10px);
}

.offer-filters {
  max-width: 900px;
  margin: 26px auto 28px;
  padding: 16px;
  border-radius: 18px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.offer-card {
  overflow: hidden;
  border: 1px solid rgba(0, 107, 63, 0.1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 75, 44, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 75, 44, 0.13);
}

.offer-card figure {
  display: grid;
  place-items: center;
  height: 220px;
  margin: 0;
  background: linear-gradient(135deg, #f7faf8, #ffffff);
}

.offer-card img {
  width: 80%;
  height: 180px;
  object-fit: contain;
}

.offer-card div {
  padding: 16px;
}

.offer-card h3 {
  min-height: 46px;
  margin: 0 0 8px;
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.18;
}

.offer-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.offer-price {
  display: block;
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 950;
}

.offer-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 950;
  text-decoration: none;
}

.supplier-section {
  background:
    linear-gradient(135deg, rgba(0, 43, 26, 0.93), rgba(0, 107, 63, 0.86)),
    url("assets/hero-pessoas-supermercado.png") center/cover;
  color: var(--white);
}

.supplier-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: 36px;
  align-items: center;
}

.supplier-copy {
  max-width: 680px;
}

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

.supplier-benefits article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.supplier-benefits svg {
  color: var(--yellow);
}

.contact-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 198, 41, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f7f5);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(340px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-copy a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.social-row {
  display: flex;
  gap: 10px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.contact-map {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(0, 107, 63, 0.12);
  border-radius: 22px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.map-fallback-card {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  gap: 5px;
  max-width: 320px;
  border: 1px solid rgba(0, 107, 63, 0.14);
  border-radius: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.map-fallback-card strong {
  color: var(--green-950);
}

.map-fallback-card span {
  color: var(--muted);
}

.map-fallback-card a {
  color: var(--green);
  font-weight: 950;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(0, 75, 44, 0.28);
  text-decoration: none;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.footer {
  background: var(--green-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 54px 0 34px;
}

.footer .brand strong,
.footer .brand small {
  color: var(--white);
}

.footer-phrase {
  max-width: 340px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.footer h2 {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer a,
.footer span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .nav {
    gap: 14px;
  }

  .nav-social {
    display: none;
  }

  .differentials-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .differentials article {
    border-bottom: 1px solid var(--line);
  }

  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-slider {
    --visible: 3;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 32px, 760px);
    --header-height: 72px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    margin: 0;
    padding: 12px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 42px rgba(0, 75, 44, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .associate-area {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 48px 0 110px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 75, 44, 0.94) 0%, rgba(0, 75, 44, 0.86) 46%, rgba(0, 75, 44, 0.28) 100%),
      url("assets/hero-pessoas-supermercado.png") center/cover;
  }

  .hero-copy {
    padding: 22px;
  }

  .hero-media {
    display: none;
  }

  .differentials {
    margin-top: -52px;
  }

  .differentials-card,
  .associates-grid,
  .club-grid,
  .instagram-offers-grid,
  .supplier-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .associates-grid > *,
  .map-shell {
    grid-column: auto;
    grid-row: auto;
  }

  .map {
    min-height: 520px;
  }

  .product-slider {
    --visible: 2;
  }

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

  .contact-copy {
    position: static;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 26px, 460px);
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 3.45rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .differentials-card,
  .stats-grid,
  .store-tools,
  .offer-filters,
  .offers-grid,
  .instagram-feed-fallback,
  .supplier-benefits,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .differentials article {
    border-right: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-copy h2,
  .club-copy h2,
  .felita-head h2,
  .supplier-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.15rem, 12vw, 3.05rem);
  }

  .felita-head {
    display: grid;
  }

  .felita-head img {
    width: min(240px, 72vw);
  }

  .instagram-highlight-card {
    min-height: auto;
    padding: 24px;
  }

  .instagram-highlight-card .btn {
    width: 100%;
  }

  .instagram-feed-card,
  .instagram-highlight-card {
    border-radius: 20px;
  }

  .instagram-feed-card iframe {
    height: 420px;
  }

  .product-slider {
    --visible: 1;
    padding-inline: 0;
  }

  .slider-button {
    top: 154px;
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  .slider-dots {
    inset-inline: 0;
  }

  .product-card {
    grid-template-rows: 250px auto auto;
  }

  .product-card img {
    height: 250px;
  }

  .phone-mockup {
    min-height: 520px;
  }

  .floating-coupon {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
