@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;600&display=swap');

/* ── RESET & VARIABLES ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark: #060e07;
  --dark-mid: #0c2210;
  --dark-card: rgba(255, 255, 255, .05);
  --green-dark: #0a3d17;
  --green-mid: #1a7a35;
  --green: #2db84a;
  --neon: #39ff6a;
  --gold: #f5c300;
  --gold-light: #ffe066;
  --red: #c0392b;
  --white: #fff;
  --off-white: #f2faf4;
  --text: #0d1f0d;
  --text-muted: rgba(255, 255, 255, .65);
  --radius: 20px;
  --shadow: 0 16px 48px rgba(0, 0, 0, .35);
  --transition: .3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── LAYOUT UTILITY ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── CANVAS ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

#confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  display: none;
}

/* ── SCROLLBAR ── */

/* ── TOP BAR ── */
#topbar {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, var(--green-dark), #0f5c24, var(--green-dark));
  background-size: 200% 100%;
  animation: shifter 4s linear infinite;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .5px;
}

#topbar span {
  color: var(--gold);
}

@keyframes shifter {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 200%
  }
}

/* ── FLOATING WHATSAPP ── */
#float-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  border-radius: 50%;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(37, 211, 102, .65);
  text-decoration: none;
  animation: waFloat 2.5s ease-in-out infinite;
}

#float-wa svg {
  width: 34px;
  height: 34px;
}

#float-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .4);
  animation: waPing 2s ease-out infinite;
}

@keyframes waFloat {

  0%,
  100% {
    transform: scale(1) translateY(0)
  }

  50% {
    transform: scale(1.12) translateY(-4px)
  }
}

@keyframes waPing {
  0% {
    transform: scale(1);
    opacity: .8
  }

  100% {
    transform: scale(1.6);
    opacity: 0
  }
}

/* ── HERO ── */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: linear-gradient(135deg, #040d05 0%, #0d4a1e 50%, #1a7a35 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 120px;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 195, 0, .14), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, .6)
  }

  50% {
    box-shadow: 0 0 0 14px rgba(192, 57, 43, 0)
  }
}

#hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
}

.highlight {
  color: var(--gold);
}

#typewriter {
  color: var(--neon);
}

#typewriter::after {
  content: '|';
  animation: blink .75s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0
  }
}

.hero-desc {
  color: rgba(255, 255, 255, .85);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-desc strong {
  color: var(--gold);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-pills span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 7px 16px;
  border-radius: 50px;
}

.hero-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6), 0 0 40px rgba(57, 255, 106, .12);
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg)
  }

  50% {
    transform: translateY(-14px) rotate(1deg)
  }
}

.hero-img::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 36px;
  border: 2px solid rgba(57, 255, 106, .2);
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6
  }

  50% {
    transform: scale(1.04);
    opacity: 1
  }
}

.scroll-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-arrow span {
  width: 11px;
  height: 11px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
  display: block;
  opacity: .8;
}

.scroll-arrow span:last-child {
  opacity: .4;
  margin-top: -7px;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* ── BTN-GLOW ── */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c50);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 17px 38px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(37, 211, 102, .55), 0 0 60px rgba(37, 211, 102, .25);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: glowPulse 2.5s ease-in-out infinite;
}

.btn-glow svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-glow:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 36px rgba(37, 211, 102, .9), 0 0 80px rgba(37, 211, 102, .4);
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(37, 211, 102, .55), 0 0 60px rgba(37, 211, 102, .25)
  }

  50% {
    box-shadow: 0 0 34px rgba(37, 211, 102, .9), 0 0 90px rgba(37, 211, 102, .35)
  }
}

/* ── TRUST BAR ── */
#trust {
  position: relative;
  z-index: 1;
  background: var(--gold);
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .83rem;
  color: var(--green-dark);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── COUNTERS ── */
#counters {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.counter-box {
  text-align: center;
}

.counter-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--gold), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.counter-label {
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(.85);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ── SECTION COMMONS ── */
.section-eyebrow {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 0;
}

.gold {
  color: var(--gold);
}

.green {
  color: var(--green);
}

.neon {
  color: var(--neon);
  text-shadow: 0 0 18px rgba(57, 255, 106, .45);
}

/* ── PROBLEM ── */
#problem {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 90px 20px;
  text-align: center;
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 52px auto 0;
  max-width: 960px;
}

.problem-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  width: 180px;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.problem-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  z-index: -1;
  background: linear-gradient(135deg, var(--green), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.problem-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.problem-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--green-dark);
}

.problem-cta {
  margin-top: 52px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
}

.problem-cta span {
  color: var(--green);
}

/* ── GALLERY SLIDER ── */
#gallery {
  position: relative;
  z-index: 1;
  background: var(--green-dark);
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

#gallery .section-eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

#gallery .section-title {
  color: #fff;
  margin-bottom: 44px;
  padding: 0 20px;
}

.slider-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.slider-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 4px 8px;
}

.slider-track.auto {
  animation: slideL 34s linear infinite;
}

.slider-track.auto:hover {
  animation-play-state: paused;
}

.slider-track.reverse {
  animation: slideR 34s linear infinite;
}

.slider-track.reverse:hover {
  animation-play-state: paused;
}

.slider-track img {
  width: 210px;
  height: 310px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .5);
  filter: brightness(.85);
  transition: transform .4s, filter .4s;
}

.slider-track img:hover {
  transform: scale(1.07) rotate(-1deg);
  filter: brightness(1);
}

@keyframes slideL {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes slideR {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

/* ── FEATURED – MURURÉ EXTRA ── */
#featured12 {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #040a05 0%, #061a0a 55%, #0b2f12 100%);
  padding: 90px 20px;
  text-align: center;
  overflow: hidden;
}

#featured12::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(245, 195, 0, .07), transparent);
  pointer-events: none;
}

#featured12 .section-eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

#featured12 .section-title {
  color: #fff;
  margin-bottom: 48px;
}

/* CSS Grid – never wraps until 680px */
.spotlight-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(245, 195, 0, .22);
  border-radius: 28px;
  padding: 48px 52px;
  text-align: left;
}

.spot-img {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spot-img img {
  width: 220px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  box-shadow: 0 12px 44px rgba(0, 0, 0, .55), 0 0 0 3px rgba(245, 195, 0, .5);
  transition: transform .4s ease;
}

.spot-img:hover img {
  transform: scale(1.03) translateY(-4px);
}

.spot-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(245, 195, 0, .5);
  animation: tagBob 2.5s ease-in-out infinite;
}

@keyframes tagBob {

  0%,
  100% {
    transform: translateX(-50%)
  }

  50% {
    transform: translateX(-50%) translateY(-4px)
  }
}

.spot-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.spot-body h3 em {
  font-style: normal;
  color: var(--gold);
  font-size: .65em;
  font-weight: 700;
}

.spot-desc {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.spot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.spot-list li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .87rem;
  color: rgba(255, 255, 255, .9);
  padding: 10px 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  transition: background var(--transition), border-color var(--transition);
}

.spot-list li::before {
  content: '✅ ';
  margin-right: 6px;
}

.spot-list li:hover {
  background: rgba(245, 195, 0, .07);
  border-color: rgba(245, 195, 0, .3);
}

/* ── INGREDIENTS ── */
#ingredients {
  position: relative;
  z-index: 1;
  background: var(--off-white);
  padding: 90px 20px;
  text-align: center;
}

.ing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 52px auto 0;
  max-width: 960px;
}

.ing-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  width: 230px;
  text-align: left;
  border-left: 4px solid var(--green);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .13);
  border-color: var(--gold);
}

.ing-card strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .92rem;
  color: var(--green-dark);
  display: block;
  margin-bottom: 5px;
}

.ing-card span {
  font-size: .82rem;
  color: #555;
}

.ing-bar-wrap {
  margin-top: 12px;
  height: 4px;
  background: #e8f5e9;
  border-radius: 2px;
  overflow: hidden;
}

.ing-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  width: 0;
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(.25, .8, .25, 1);
}

/* ── FOR WHOM ── */
#forwhom {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #040a05, var(--dark-mid), #143d20);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

#forwhom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2339ff6a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.forwhom-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

.fw-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 32px 24px;
  width: 200px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.fw-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  border-color: rgba(57, 255, 106, .4);
}

.fw-card .icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(57, 255, 106, .4));
}

.fw-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
}

/* ── BEFORE / AFTER ── */
#beforeafter {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 90px 20px;
  text-align: center;
}

.ba-hint {
  text-align: center;
  color: #777;
  font-size: .88rem;
  margin-top: 10px;
}

.ba-container {
  max-width: 680px;
  margin: 44px auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  user-select: none;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before {
  z-index: 2;
}

.ba-after {
  z-index: 1;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  width: 4px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, .5);
  cursor: ew-resize;
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
  font-size: 1.2rem;
}

.ba-label {
  position: absolute;
  bottom: 16px;
  z-index: 6;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  padding: 5px 14px;
  border-radius: 6px;
  color: #fff;
}

.ba-label.before {
  left: 16px;
  background: var(--red);
}

.ba-label.after {
  right: 16px;
  background: var(--green-mid);
}

.ba-img-wrap {
  width: 100%;
  height: 440px;
  position: relative;
}

.ba-disclaimer {
  margin-top: 18px;
  text-align: center;
  font-size: .76rem;
  color: #aaa;
}

/* ── PRODUCTS ── */
#products {
  position: relative;
  z-index: 1;
  background: var(--off-white);
  padding: 90px 20px;
  text-align: center;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 52px;
}

.product-card {
  background: #fff;
  border-radius: 26px;
  padding: 36px 28px;
  width: 300px;
  text-align: center;
  box-shadow: 0 8px 36px rgba(0, 0, 0, .10);
  transition: transform .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
}

.product-card img {
  width: 150px;
  margin-bottom: 20px;
  border-radius: 12px;
  transition: transform .4s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.product-card:hover img {
  transform: scale(1.08) rotate(-2deg);
}

.product-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.product-card p {
  font-size: .85rem;
  color: #555;
  margin-bottom: 22px;
  line-height: 1.65;
}

.badge-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-mid), var(--green));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .73rem;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ── TESTIMONIALS ── */
#testimonials {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  padding: 90px 20px;
  text-align: center;
  overflow: hidden;
}

.testi-slider-outer {
  overflow: hidden;
  margin-top: 52px;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.testi-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testiSlide 60s linear infinite;
}

.testi-slider-track:hover {
  animation-play-state: paused;
}

@keyframes testiSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── WHATSAPP TESTIMONIALS ── */
.wa-phone {
  width: 300px;
  min-width: 300px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-phone:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .6), 0 0 0 1px rgba(37, 211, 102, .3);
}

.wa-header {
  background: #075e54;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.wa-contact {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wa-contact strong {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
}

.wa-contact span {
  color: rgba(255, 255, 255, .6);
  font-size: .7rem;
}

.wa-chat {
  background: #0b141a;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='wa' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Crect width='40' height='40' fill='none'/%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' opacity='0.03'/%3E%3Ccircle cx='8' cy='8' r='.6' fill='%23ffffff' opacity='0.02'/%3E%3Ccircle cx='32' cy='12' r='.8' fill='%23ffffff' opacity='0.025'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='200' height='200' fill='url(%23wa)'/%3E%3C/svg%3E");
  padding: 20px 14px 16px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wa-bubble {
  position: relative;
  background: #005c4b;
  color: #e9edef;
  font-size: .86rem;
  line-height: 1.55;
  padding: 10px 12px 22px 12px;
  border-radius: 10px 10px 2px 10px;
  max-width: 92%;
  align-self: flex-end;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
  word-break: break-word;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #005c4b transparent;
}

.wa-meta {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
  white-space: nowrap;
}

.wa-check {
  color: #53bdeb;
  font-size: .7rem;
  letter-spacing: -2px;
  margin-left: 2px;
}

/* ── GUARANTEE ── */
#guarantee {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.guarantee-box {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  background: linear-gradient(135deg, #f2faf4, #e4f5e8);
  border: 2px solid var(--green);
  border-radius: 26px;
  padding: 40px 48px;
  max-width: 720px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(45, 184, 74, .15);
  margin-top: 36px;
}

.g-icon {
  font-size: 4.5rem;
  animation: shieldBob 3s ease-in-out infinite;
}

@keyframes shieldBob {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg)
  }

  50% {
    transform: translateY(-8px) rotate(3deg)
  }
}

.g-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.g-text p {
  font-size: .88rem;
  color: #444;
  line-height: 1.7;
  max-width: 420px;
}

/* ── CTA FINAL ── */
#cta-final {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--dark), var(--dark-mid) 50%, var(--dark));
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 110%, rgba(245, 195, 0, .2), transparent);
  pointer-events: none;
}

#cta-final .section-inner {
  position: relative;
  z-index: 1;
}

#cta-final h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 14px;
}

#cta-final h2 span {
  color: var(--gold);
}

#cta-final p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.06rem;
  margin-bottom: 36px;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.cta-btn {
  font-size: 1.25rem !important;
  padding: 20px 50px !important;
  margin-top: 8px;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: #020806;
  color: rgba(255, 255, 255, .45);
  text-align: center;
  padding: 44px 20px;
  line-height: 1.9;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: .5px;
}

.footer-brand span {
  color: var(--gold);
}

.footer-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
}

.footer-disc {
  font-size: .74rem;
  color: rgba(255, 255, 255, .3);
  margin-top: 16px;
}

.footer-copy {
  font-size: .7rem;
  color: rgba(255, 255, 255, .2);
  margin-top: 4px;
}

/* ── FEATURED – RHEUMO DOR ── */
#featuredRD {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #0c1f10 0%, #173a1e 55%, #1f5228 100%);
  padding: 90px 20px;
  text-align: center;
  overflow: hidden;
}

#featuredRD::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(45, 184, 74, .1), transparent);
  pointer-events: none;
}

#featuredRD .section-eyebrow {
  color: var(--gold-light);
  margin-bottom: 10px;
}

#featuredRD .section-title {
  color: #fff;
  margin-bottom: 48px;
}

.spotlight-card--rd {
  border-color: rgba(45, 184, 74, .35);
}

.spot-tag--rd {
  background: linear-gradient(135deg, var(--red), #e74c3c) !important;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(192, 57, 43, .5) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 52px;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-img {
    justify-content: center;
  }

  .hero-img img {
    max-width: 300px;
  }

  .hero-pills {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .spotlight-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    text-align: center;
    gap: 32px;
  }

  .spot-img {
    align-items: center;
  }

  .spot-img img {
    width: 200px;
  }

  .spot-body {
    text-align: center;
  }

  .spot-list {
    text-align: left;
  }

  .ba-img-wrap {
    height: 300px;
  }

  .guarantee-box {
    padding: 28px 20px;
  }

  .cta-btn {
    font-size: 1.05rem !important;
    padding: 16px 32px !important;
  }
}

@media (max-width: 480px) {
  #float-wa {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  #float-wa svg {
    width: 26px;
    height: 26px;
  }
}