:root {
  --green-950: #042617;
  --green-900: #073b24;
  --green-800: #0b5634;
  --green-700: #107246;
  --gold: #f3c75f;
  --gold-2: #ffe49a;
  --cream: #fff8e8;
  --paper: #fffdf8;
  --muted: #667168;
  --text: #17231b;
  --line: rgba(4, 38, 23, .12);
  --shadow: 0 22px 65px rgba(4, 38, 23, .16);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(4, 38, 23, .94);
  display: grid;
  place-items: center;
  padding: 24px;
}

.age-gate.is-hidden {
  display: none;
}

.age-card {
  width: min(520px, 100%);
  border-radius: 34px;
  background: #fffdf8;
  padding: 38px;
  text-align: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .35);
  border: 1px solid rgba(243, 199, 95, .5);
}

.age-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 24px 24px 34px 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--green-800), var(--green-950));
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 36px;
  font-weight: 950;
}

.age-card h2 {
  margin-bottom: 12px;
}

.age-card p {
  color: var(--muted);
  line-height: 1.6;
}

.age-card button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ffe08a);
  color: var(--green-950);
  font-weight: 950;
  font-size: 16px;
  cursor: pointer;
  margin: 10px 0 16px;
}

.age-card small {
  display: block;
  color: #7a817b;
  line-height: 1.45;
}

.top-warning {
  background: var(--green-950);
  color: var(--gold-2);
  text-align: center;
  padding: 8px 12px;
  font-size: 13px;
}

.ticker {
  background: linear-gradient(90deg, var(--gold), #ffdf84);
  color: var(--green-950);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 24s linear infinite;
}

.ticker-track span {
  padding: 0 38px;
  white-space: nowrap;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-shield {
  width: 52px;
  height: 52px;
  border-radius: 18px 18px 24px 24px;
  background: linear-gradient(145deg, var(--green-800), var(--green-950));
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 28px;
  border: 2px solid rgba(243, 199, 95, .75);
  box-shadow: 0 10px 28px rgba(4, 38, 23, .2);
}

.brand strong {
  display: block;
  font-size: 20px;
  color: var(--green-950);
  letter-spacing: -.035em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
}

.search-box {
  background: #eef3ef;
  border: 1px solid rgba(4, 38, 23, .08);
  border-radius: 999px;
  height: 46px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  color: var(--muted);
}

.search-box button {
  width: 54px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: default;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-actions a {
  padding: 11px 16px;
  border-radius: 999px;
  background: #eef3ef;
  color: var(--green-950);
  font-weight: 800;
  font-size: 14px;
}

.header-actions .gold-link {
  background: var(--green-900);
  color: #fff;
}

.category-nav {
  border-top: 1px solid var(--line);
}

.nav-scroll {
  display: flex;
  justify-content: center;
  gap: 22px;
  overflow-x: auto;
  padding: 13px 0;
  font-weight: 800;
  font-size: 14px;
  color: var(--green-950);
}

.nav-scroll a {
  white-space: nowrap;
}

.hero {
  background:
    radial-gradient(circle at 85% 12%, rgba(243, 199, 95, .35), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #fff1c5 48%, #eaf4ec 100%);
  padding: 38px 0 58px;
}

.hero-slider {
  position: relative;
  min-height: 500px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--green-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease, transform .55s ease;
  transform: scale(1.015);
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  align-items: center;
  color: white;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.slide-wine {
  background:
    linear-gradient(90deg, rgba(4, 38, 23, .92), rgba(7, 59, 36, .72)),
    radial-gradient(circle at 78% 40%, rgba(243, 199, 95, .38), transparent 28%),
    var(--green-900);
}

.slide-beer {
  background:
    linear-gradient(90deg, rgba(77, 45, 7, .9), rgba(173, 119, 23, .72)),
    radial-gradient(circle at 80% 35%, rgba(255, 238, 180, .42), transparent 30%),
    #9f6b11;
}

.slide-gift {
  background:
    linear-gradient(90deg, rgba(4, 38, 23, .9), rgba(9, 96, 58, .72)),
    radial-gradient(circle at 75% 35%, rgba(243, 199, 95, .38), transparent 30%),
    #06412a;
}

.eyebrow {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: .92;
  letter-spacing: -.07em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--green-950);
  margin-bottom: 16px;
}

h3 {
  color: var(--green-950);
  font-size: 21px;
  margin-bottom: 10px;
}

.hero-slide p {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .84);
  max-width: 640px;
}

.hero-slide small {
  color: rgba(255, 255, 255, .68);
  margin-top: 18px;
  display: block;
}

.hero-art {
  justify-self: center;
  width: min(360px, 100%);
  aspect-ratio: .85;
  border-radius: 42px;
  border: 2px solid rgba(243, 199, 95, .55);
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: inset 0 0 60px rgba(255,255,255,.08);
}

.hero-art span {
  display: block;
  font-size: clamp(92px, 14vw, 150px);
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.22));
}

.hero-art strong {
  display: block;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 18px;
  margin-top: 8px;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ffe08a);
  color: var(--green-950);
  box-shadow: 0 16px 34px rgba(243, 199, 95, .28);
}

.btn-outline {
  border-color: rgba(255,255,255,.36);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.btn-outline.dark {
  border-color: rgba(4, 38, 23, .18);
  color: var(--green-950);
  background: #fff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--green-950);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  cursor: pointer;
}

.hero-dots button.active {
  width: 28px;
  background: var(--gold);
}

.section {
  padding: 78px 0;
}

.section-title {
  margin-bottom: 28px;
}

.row-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.category-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
}

.category-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(4, 38, 23, .07);
  scroll-snap-align: start;
}

.category-card span {
  display: block;
  font-size: 42px;
  margin-bottom: 14px;
}

.category-card strong {
  display: block;
  color: var(--green-950);
  font-size: 17px;
}

.category-card small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.soft-section {
  background: #f4f1e8;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-950);
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(4, 38, 23, .08);
}

.product-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 4px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 38px rgba(4, 38, 23, .08);
  scroll-snap-align: start;
}

.product-visual {
  min-height: 190px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 72px;
  margin-bottom: 18px;
}

.product-visual.wine {
  background: linear-gradient(145deg, #f9efe8, #8d1e24);
}

.product-visual.beer {
  background: linear-gradient(145deg, #fff4ca, #d39a20);
}

.product-visual.whisky {
  background: linear-gradient(145deg, #fff2cf, #8b4d20);
}

.product-visual.gift {
  background: linear-gradient(145deg, #fff7df, var(--green-800));
}

.product-visual.sparkling {
  background: linear-gradient(145deg, #fff5c6, #d2b45c);
}

.product-visual.delivery {
  background: linear-gradient(145deg, #eef7ef, var(--green-700));
}

.product-card p {
  color: var(--muted);
  line-height: 1.55;
}

.product-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-900);
  font-weight: 950;
}

.split-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(243, 199, 95, .22), transparent 26%),
    #fffdf8;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
  align-items: center;
}

.split-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-box {
  background: var(--green-950);
  color: #fff;
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(243, 199, 95, .34);
}

.feature-box h3 {
  color: var(--gold-2);
}

.feature-box ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255,255,255,.82);
  line-height: 1.9;
}

.brand-section {
  background: #fff;
  padding: 78px 0;
}

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

.brand-grid article {
  background: #f6f3eb;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
}

.brand-grid span {
  font-size: 36px;
}

.brand-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.newsletter {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: #fff;
  padding: 64px 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.newsletter h2 {
  color: #fff;
}

.newsletter p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.6;
}

.contact-section {
  background: #fff;
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(243, 199, 95, .17), transparent),
    #fffdf8;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.floating-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--green-800), var(--green-950));
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(4, 38, 23, .28);
  border: 2px solid rgba(243, 199, 95, .65);
}

.site-footer {
  background: var(--green-950);
  color: rgba(255,255,255,.74);
  padding: 30px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.footer-grid strong {
  display: block;
  color: var(--gold-2);
  font-size: 18px;
}

.footer-grid span {
  color: rgba(255,255,255,.7);
}

.footer-grid p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 980px) {
  .header-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .nav-scroll {
    justify-content: flex-start;
  }

  .hero-slider {
    min-height: 680px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-art {
    width: min(260px, 100%);
    aspect-ratio: 1;
  }

  .split-grid,
  .newsletter-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 24px;
  }

  .hero-slider {
    min-height: 720px;
    border-radius: 26px;
  }

  .hero-slide {
    padding: 28px;
  }

  .hero-arrow {
    top: auto;
    bottom: 54px;
    transform: none;
  }

  .hero-prev {
    left: 18px;
  }

  .hero-next {
    right: 18px;
  }

  .section,
  .brand-section {
    padding: 58px 0;
  }

  .row-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-carousel {
    grid-auto-columns: minmax(250px, 86vw);
  }
}

/* === AJUSTE VITRINE LARGA / ESTILO E-COMMERCE === */
:root {
  --page-max-wide: 1540px;
  --page-max-ultra: 1680px;
}

.container {
  width: min(var(--page-max-wide), calc(100% - 32px));
}

.hero .container,
.promo-showcase .container,
.soft-section .container {
  width: min(var(--page-max-ultra), calc(100% - 28px));
}

.hero {
  padding-top: 26px;
}

.hero-slider {
  min-height: 560px;
  border-radius: 24px;
}

.hero-slide {
  grid-template-columns: .9fr 1.1fr;
}

.hero-art {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 1.65;
  border-radius: 34px;
}

.hero-art span {
  font-size: clamp(120px, 13vw, 190px);
}

.promo-showcase {
  padding: 58px 0 68px;
  background:
    radial-gradient(circle at 10% 0%, rgba(243, 199, 95, .18), transparent 30%),
    #fffdf8;
}

.promo-wide-container {
  max-width: var(--page-max-ultra);
}

.promo-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}

.promo-head h2 {
  max-width: 820px;
}

.wide-promo-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 22px;
  scrollbar-width: thin;
}

.wide-promo-card {
  flex: 0 0 255px;
  min-height: 330px;
  scroll-snap-align: start;
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 15%, rgba(255,255,255,.42), transparent 28%),
    linear-gradient(145deg, #fff7dc, #f3c75f);
  border: 1px solid rgba(4, 38, 23, .1);
  box-shadow: 0 18px 48px rgba(4, 38, 23, .12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wide-promo-feature {
  flex-basis: 520px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(4, 38, 23, .94), rgba(7, 59, 36, .78)),
    radial-gradient(circle at 85% 38%, rgba(243, 199, 95, .42), transparent 30%),
    var(--green-900);
}

.wide-promo-card h3 {
  font-size: 25px;
  line-height: 1.05;
  margin: 12px 0 8px;
}

.wide-promo-feature h3 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  max-width: 390px;
}

.wide-promo-card p {
  color: rgba(4, 38, 23, .72);
  line-height: 1.55;
  margin-bottom: 0;
}

.wide-promo-feature p {
  color: rgba(255,255,255,.78);
  max-width: 420px;
}

.wide-promo-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-2);
  font-weight: 950;
}

.promo-badge {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(4, 38, 23, .12);
  color: var(--green-950);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.wide-promo-feature .promo-badge {
  background: rgba(243, 199, 95, .18);
  color: var(--gold-2);
}

.promo-emoji {
  display: block;
  font-size: 86px;
  text-align: center;
  filter: drop-shadow(0 18px 22px rgba(4, 38, 23, .18));
}

.wide-promo-feature .promo-emoji {
  position: absolute;
  right: 34px;
  bottom: 26px;
  font-size: 150px;
  opacity: .96;
}

.wide-promo-feature {
  position: relative;
  overflow: hidden;
}

.product-carousel {
  grid-auto-columns: minmax(215px, 16vw);
}

.product-visual {
  min-height: 150px;
  font-size: 62px;
}

.product-card h3 {
  font-size: 18px;
}

.product-card p {
  font-size: 14px;
}

@media (min-width: 1400px) {
  .wide-promo-card {
    flex-basis: 275px;
  }

  .wide-promo-feature {
    flex-basis: 560px;
  }

  .product-carousel {
    grid-auto-columns: minmax(210px, 14vw);
  }
}

@media (max-width: 980px) {
  .promo-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-slider {
    min-height: 720px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .wide-promo-feature,
  .wide-promo-card {
    flex-basis: min(82vw, 360px);
  }

  .wide-promo-feature .promo-emoji {
    position: static;
    font-size: 96px;
  }
}

@media (max-width: 560px) {
  .hero .container,
  .promo-showcase .container,
  .soft-section .container {
    width: min(100% - 20px, var(--page-max-ultra));
  }

  .hero-slider {
    min-height: 760px;
  }

  .wide-promo-card {
    min-height: 300px;
  }
}

/* === AJUSTE DO BANNER PRINCIPAL: FULL WIDTH, SEM SETAS, SLIDE HORIZONTAL === */

.hero {
  padding: 0 0 42px !important;
  background: #fffdf8 !important;
}

.hero .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.hero-slider {
  width: 100% !important;
  height: clamp(285px, 22vw, 380px) !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  position: relative !important;
  background: var(--green-950) !important;
}

.hero-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 1 !important;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 680ms ease !important;
  padding: 0 clamp(42px, 8vw, 150px) !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 680px) 1fr !important;
  gap: clamp(28px, 5vw, 80px) !important;
  align-items: center !important;
}

.hero-slide.active {
  pointer-events: auto;
}

.hero-slide h1 {
  font-size: clamp(34px, 3.7vw, 62px) !important;
  line-height: .96 !important;
  max-width: 680px;
}

.hero-slide p {
  font-size: clamp(15px, 1.15vw, 19px) !important;
  max-width: 580px;
}

.hero-slide .eyebrow {
  font-size: 12px !important;
  margin-bottom: 12px !important;
}

.hero-buttons {
  margin-top: 22px !important;
}

.hero-slide small {
  font-size: 12px !important;
}

.hero-art {
  width: min(680px, 100%) !important;
  max-width: none !important;
  height: clamp(210px, 16vw, 285px) !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: grid !important;
  place-items: center !important;
}

.hero-art span {
  font-size: clamp(105px, 10vw, 165px) !important;
}

.hero-art strong {
  font-size: 15px !important;
}

.hero-arrow {
  display: none !important;
}

.hero-dots {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 14px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 9px !important;
  z-index: 3 !important;
}

.hero-dots button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: rgba(255,255,255,.48) !important;
  cursor: pointer !important;
  transition: width .25s ease, background .25s ease !important;
}

.hero-dots button.active {
  width: 30px !important;
  background: var(--gold) !important;
}

@media (max-width: 980px) {
  .hero-slider {
    height: 560px !important;
  }

  .hero-slide {
    grid-template-columns: 1fr !important;
    padding: 38px 28px 66px !important;
    gap: 20px !important;
  }

  .hero-art {
    height: 170px !important;
  }

  .hero-art span {
    font-size: 98px !important;
  }
}

@media (max-width: 560px) {
  .hero-slider {
    height: 620px !important;
  }

  .hero-slide h1 {
    font-size: 38px !important;
  }
}

/* === INSTAGRAM NO TOPO E WHATSAPP FIXO === */

.instagram-top {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: #ffffff !important;
  border: 1.5px solid rgba(225, 48, 108, .28) !important;
  color: var(--green-950) !important;
}

.instagram-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: inline-block;
  position: relative;
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0 12%, #fdf497 13%, #fd5949 38%, #d6249f 62%, #285AEB 100%);
  box-shadow: 0 6px 16px rgba(214, 36, 159, .2);
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid #fff;
  border-radius: 6px;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  right: 5px;
  top: 5px;
  border-radius: 50%;
  background: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  background: #25D366;
  color: #073b24;
  box-shadow: 0 18px 42px rgba(37, 211, 102, .32);
  border: 2px solid rgba(255,255,255,.82);
  font-weight: 900;
}

.whatsapp-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: #128C7E;
  font-size: 23px;
  line-height: 1;
}

.whatsapp-text {
  display: grid;
  line-height: 1.1;
}

.whatsapp-text strong {
  font-size: 15px;
}

.whatsapp-text small {
  font-size: 11px;
  font-weight: 800;
  opacity: .82;
}

@media (max-width: 620px) {
  .whatsapp-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    padding: 10px 14px;
  }

  .whatsapp-text strong {
    font-size: 14px;
  }

  .whatsapp-text small {
    font-size: 10px;
  }
}

/* === WHATSAPP FIXO EM BARRA INFERIOR - ESTILO SOPRO LIFE === */

body {
  padding-bottom: 48px;
}

.whatsapp-float {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 999 !important;
  width: 100% !important;
  min-height: 46px !important;
  height: 46px !important;
  border-radius: 0 !important;
  padding: 0 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #25D366 !important;
  color: #073b24 !important;
  border: 0 !important;
  box-shadow: 0 -8px 28px rgba(4, 38, 23, .18) !important;
  font-weight: 800 !important;
  text-align: center !important;
  line-height: 1.2 !important;
}

.whatsapp-float:hover {
  filter: brightness(.98);
}

.whatsapp-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.whatsapp-float strong {
  font-weight: 950;
}

.whatsapp-icon,
.whatsapp-text {
  display: none !important;
}

@media (max-width: 620px) {
  body {
    padding-bottom: 54px;
  }

  .whatsapp-float {
    min-height: 54px !important;
    height: 54px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    border-radius: 0 !important;
  }
}

/* === BUSCA, MENU E CATÁLOGO FUNCIONAL === */

.site-header {
  overflow: visible !important;
}

.search-box {
  position: relative !important;
}

.search-box input:not(:disabled) {
  color: var(--green-950) !important;
}

.search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 1200;
  display: none;
  max-height: 380px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(4, 38, 23, .13);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(4, 38, 23, .18);
  padding: 8px;
}

.search-results.is-open {
  display: block;
}

.search-result-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 13px;
  text-align: left;
  cursor: pointer;
  color: var(--green-950);
}

.search-result-item:hover {
  background: #f3f5f0;
}

.search-result-item span:first-child {
  font-size: 24px;
}

.search-result-item strong {
  display: block;
  font-size: 14px;
}

.search-result-item small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.search-result-item em {
  font-style: normal;
  font-size: 12px;
  color: var(--green-800);
  font-weight: 900;
}

.nav-scroll {
  position: relative;
  align-items: center;
}

.nav-scroll a {
  position: relative;
  padding: 2px 0 10px;
}

.nav-scroll a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transition: left .18s ease, right .18s ease;
}

.nav-scroll a:hover::after,
.nav-scroll a.is-active::after {
  left: 0;
  right: 0;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1100;
  display: none;
  background: rgba(255,255,255,.98);
  border-top: 1px solid rgba(4, 38, 23, .08);
  border-bottom: 1px solid rgba(4, 38, 23, .12);
  box-shadow: 0 24px 50px rgba(4, 38, 23, .18);
}

.mega-menu.is-open {
  display: block;
}

.mega-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 26px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  min-height: 310px;
}

.mega-left h3,
.mega-products h3 {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--green-950);
}

.mega-list {
  display: grid;
  gap: 4px;
}

.mega-list button {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 850;
  color: var(--green-950);
  cursor: pointer;
}

.mega-list button:hover {
  background: #f3f5f0;
}

.mega-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 16px;
}

.mega-product {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(4, 38, 23, .1);
  border-radius: 18px;
  padding: 14px;
  background: #fffdf8;
  cursor: pointer;
  min-height: 160px;
}

.mega-product:hover {
  box-shadow: 0 14px 34px rgba(4, 38, 23, .1);
}

.mega-product .emoji {
  font-size: 42px;
}

.mega-product strong {
  font-size: 14px;
  color: var(--green-950);
}

.mega-product small {
  color: var(--muted);
}

.catalog-section {
  background: #fffdf8;
}

.catalog-note {
  color: var(--muted);
  line-height: 1.55;
  max-width: 760px;
  margin-bottom: 0;
}

.catalog-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.catalog-filter-pills button {
  border: 1px solid rgba(4, 38, 23, .14);
  background: #fff;
  color: var(--green-950);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.catalog-filter-pills button.is-active {
  background: var(--green-900);
  color: #fff;
  border-color: var(--green-900);
}

.catalog-status {
  color: var(--muted);
  margin: -8px 0 18px;
  font-weight: 700;
}

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

.catalog-card {
  background: #fff;
  border: 1px solid rgba(4, 38, 23, .1);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(4, 38, 23, .07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-card-visual {
  height: 128px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 56px;
  background: linear-gradient(145deg, #fff8e8, #f3c75f);
}

.catalog-card h3 {
  font-size: 18px;
  line-height: 1.12;
  margin: 0;
}

.catalog-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  font-size: 14px;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.catalog-meta span {
  border-radius: 999px;
  background: #eef3ef;
  color: var(--green-950);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
}

.catalog-card a {
  margin-top: 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  background: #25D366;
  color: #073b24;
  font-weight: 950;
}

.business-info {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .mega-product-grid,
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .mega-menu {
    position: static;
  }

  .mega-inner {
    grid-template-columns: 1fr;
  }

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

  .catalog-filter-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .mega-product-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .search-results {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 150px;
  }
}

/* === CORREÇÃO: MENU SUPERIOR APONTA PARA SUBPÁGINAS E DESATIVA MEGA-MENU ANTIGO === */

.mega-menu {
  display: none !important;
}

.category-nav .nav-scroll a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 4px 8px !important;
}

.category-nav .nav-scroll a:hover {
  color: var(--green-800);
}


/* === CORREÇÃO DE LINKS DO CARROSSEL/CARDS DE CATEGORIA === */

.category-card {
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(4, 38, 23, .12);
}

.category-strip {
  grid-auto-columns: minmax(160px, 1fr);
}

@media (min-width: 1200px) {
  .category-strip {
    grid-auto-columns: minmax(150px, 1fr);
  }
}

