/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --pink: #ffb3d9;
  --pink-hot: #f567b0;
  --pink-deep: #d94d94;
  --pink-pale: #fff0f7;
  --gold: #c9a84c;
  --text-dark: #1a0812;
  --text-mid: #5c2845;
  --text-light: #a06080;

  --gb: rgba(255, 255, 255, 0.28);
  --gb2: rgba(255, 255, 255, 0.42);
  --gbd: rgba(255, 255, 255, 0.72);
  --gbs: rgba(255, 255, 255, 0.5);
  --gsh:
    0 8px 32px rgba(200, 50, 130, 0.24),
    0 1.5px 0 rgba(255, 255, 255, 0.8) inset;
  --gsl:
    0 24px 64px rgba(200, 50, 130, 0.4), 0 2px 0 rgba(255, 255, 255, 0.88) inset;
  --blur: blur(20px);
  --blur-s: blur(10px);

  /* SPACING — mobile-first compact */
  --sec: 32px; /* section padding y */
  --gap: 10px; /* grid gap */
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Quicksand", sans-serif;
  background: #fff4fa;
  color: var(--text-dark);
  overflow-x: hidden !important;
  line-height: 1.5;
}

/* ── Animated mesh BG (fixed so it flows behind everything) ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      ellipse 80% 55% at 8% 4%,
      rgba(240, 80, 160, 0.32) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 45% at 92% 14%,
      rgba(217, 77, 148, 0.2) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 55% at 50% 64%,
      rgba(255, 180, 220, 0.4) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 4% 84%,
      rgba(217, 77, 148, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 75% 55% at 94% 90%,
      rgba(240, 80, 160, 0.26) 0%,
      transparent 60%
    );
  background-color: #fce4f2;
}

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}
h1 {
  font-size: clamp(1.9rem, 5.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.07;
  color: var(--text-dark);
}
h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-dark);
}
h3 {
  font-size: clamp(0.96rem, 1.9vw, 1.22rem);
  font-weight: 700;
  color: var(--text-dark);
}
p {
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  color: var(--text-mid);
  font-weight: 500;
}
em {
  font-style: italic;
  color: var(--pink-deep);
}

/* ══════════════════════════════════════════
   IMAGES
══════════════════════════════════════════ */
img {
  /* mix-blend-mode: multiply; */
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
/* .container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
} */
.tc {
  text-align: center;
}

/* ── Top Bar ── */
.top-bar {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f050a8, #c2186e);
  color: #fff;
  padding: 10px 0;
  font-size: 15px;
  line-height: normal;
}

.top-bar-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.top-bar-track span {
  white-space: nowrap;
  font-weight: 500;
}

.top-bar-track:hover {
  animation-play-state: paused;
}

/* animação */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .top-bar {
    font-size: 13px;
    padding: 8px 0;
  }

  .top-bar-track {
    gap: 25px;
    animation: scroll 25s linear infinite;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .top-bar {
    font-size: 12px;
    padding: 6px 0;
  }

  .top-bar-track {
    gap: 20px;
    animation: scroll 30s linear infinite;
  }
}

/* Section — compact */
.sec {
  padding: var(--sec) 0;
}
.sec-sm {
  padding: calc(var(--sec) * 0.6) 0;
}
.sec-hdr {
  margin-bottom: 20px;
}
.sec-hdr p {
  max-width: 460px;
  margin: 5px auto 0;
  font-size: 0.88rem;
}

/* ── Glass ── */
.g {
  background: var(--gb);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--gbd);
  box-shadow: var(--gsh);
}
.gs {
  background: var(--gb);
  backdrop-filter: var(--blur-s);
  -webkit-backdrop-filter: var(--blur-s);
  border: 1px solid var(--gbs);
  box-shadow: var(--gsh);
}

/* ── Tag ── */
.tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: var(--blur-s);
  -webkit-backdrop-filter: var(--blur-s);
  border: 1px solid rgba(200, 50, 130, 0.36);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  box-shadow:
    0 2px 12px rgba(200, 50, 130, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

/* ══════════════════════════════════════════
   REVEAL / FADE SYSTEM
══════════════════════════════════════════ */
[data-r] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 0.68, 0, 1.2),
    transform 0.65s cubic-bezier(0.22, 0.68, 0, 1.2);
}
[data-r].on {
  opacity: 1;
  transform: none;
}
[data-r][data-d="1"] {
  transition-delay: 0.1s;
}
[data-r][data-d="2"] {
  transition-delay: 0.2s;
}
[data-r][data-d="3"] {
  transition-delay: 0.3s;
}
[data-r][data-d="4"] {
  transition-delay: 0.4s;
}
[data-r][data-d="5"] {
  transition-delay: 0.5s;
}

/* Stagger grids */
[data-sg] > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
[data-sg].on > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.04s;
}
[data-sg].on > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.13s;
}
[data-sg].on > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}
[data-sg].on > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.31s;
}
[data-sg].on > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}
[data-sg].on > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.49s;
}

/* ══════════════════════════════════════════
   SECTION TRANSITIONS — visual continuity
   Sections bleed into each other via pseudo overlaps
══════════════════════════════════════════ */
.flow-section {
  position: relative;
  /* Each section is rendered above the previous for overlap */
}
/* Top bleed — gradient that dissolves the top edge */
.bleed-top::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 244, 250, 0.65) 100%
  );
  pointer-events: none;
}
/* Bottom bleed */
.bleed-bot::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  background: linear-gradient(
    to top,
    transparent 0%,
    rgba(255, 244, 250, 0.65) 100%
  );
  pointer-events: none;
}

/* ══════════════════════════════════════════
   BUTTON
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #f567b0 0%, #d94d94 100%);
  backdrop-filter: var(--blur-s);
  -webkit-backdrop-filter: var(--blur-s);
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 38px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 10px 36px rgba(217, 77, 148, 0.52),
    0 1.5px 0 rgba(255, 255, 255, 0.4) inset;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    filter 0.25s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent);
  border-radius: inherit;
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 24px 56px rgba(217, 77, 148, 0.62),
    0 1.5px 0 rgba(255, 255, 255, 0.5) inset;
  filter: brightness(1.08);
  animation: none;
}
.btn:active {
  transform: scale(0.97);
}
.btn-lg {
  font-size: 1.06rem;
  padding: 19px 50px;
}
.btn-xl {
  font-size: 1.15rem;
  padding: 23px 66px;
}

/* Subtle pulse — main CTAs only (not sticky nav / bottom bar) */
@keyframes btnpulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 10px 36px rgba(217, 77, 148, 0.52),
      0 1.5px 0 rgba(255, 255, 255, 0.4) inset;
  }
  50% {
    transform: scale(1.028);
    box-shadow:
      0 18px 52px rgba(217, 77, 148, 0.72),
      0 1.5px 0 rgba(255, 255, 255, 0.5) inset;
  }
}
.btn-lg,
.btn-xl {
  animation: btnpulse 2.8s ease-in-out infinite;
}
#sticky .btn,
#scta .btn {
  animation: none;
}

.btn-default {
  display: inline-block;
  background: linear-gradient(135deg, #f567b0 0%, #d94d94 100%);
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  /* transition: all 0.3s ease; */
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    filter 0.25s;
  animation: pulse 2s infinite;
}

/* Hover (invertendo gradiente) */
.btn-default:hover {
  background: linear-gradient(135deg, #d94d94 0%, #f567b0 100%);
  transform: scale(1.04);
  animation: none;
  color: white;
}

/* Clique */
.btn-default:active {
  transform: scale(0.97);
}

.btn-default i {
  margin-right: 8px;
}

/* Efeito de pulsar */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .btn-default {
    animation: pulse 3s infinite;
  }
}

/* ══════════════════════════════════════════
   STICKY NAV
══════════════════════════════════════════ */
#sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(255, 240, 250, 0.78);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(255, 179, 217, 0.35);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 24px rgba(255, 137, 196, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}
#sticky.vis {
  transform: translateY(0);
}
#sticky .sl img {
  height: 26px;
}
#sticky .snav {
  display: flex;
  align-items: center;
  gap: 18px;
}
#sticky .snav a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
#sticky .snav a:hover {
  color: var(--pink-deep);
}
#sticky .btn {
  padding: 9px 24px;
  font-size: 0.83rem;
}

/* Sticky bottom CTA mobile */
#scta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 10px 20px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: rgba(255, 240, 250, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 179, 217, 0.32);
  box-shadow: 0 -4px 24px rgba(255, 137, 196, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#scta.vis {
  background: #441530;
  border-top: none;
  transform: translateY(0);
}
#scta p {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
}
#scta .btn {
  padding: 11px 30px;
  font-size: 0.88rem;
}
@media (max-width: 680px) {
  #scta {
    display: flex;
  }
  #sticky .sn {
    display: none;
  }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  padding: 52px 0 0;
  position: relative;
  overflow: visible;
  min-height: auto;
  display: flex;
  align-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ofl 9s ease-in-out infinite;
}
.o1 {
  width: 520px;
  height: 520px;
  top: -80px;
  right: -140px;
  background: radial-gradient(
    circle,
    rgba(255, 179, 217, 0.38) 0%,
    transparent 70%
  );
}
.o2 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(255, 137, 196, 0.2) 0%,
    transparent 70%
  );
  animation-duration: 11s;
  animation-direction: reverse;
}
.o3 {
  width: 260px;
  height: 260px;
  top: 42%;
  left: 40%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 238, 0.25) 0%,
    transparent 70%
  );
  animation-duration: 13s;
}
@keyframes ofl {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(28px, -38px);
  }
}

@media only screen and (max-width: 991px) {
  .o1 {
    right: 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 36px;
}

/* copy */
.hc .br {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hc .br img {
  height: 25px;
}

.hc h1 {
  margin-bottom: 15px;
}

h1 em {
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hc .sub {
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.52;
  max-width: 420px;
}

.ht {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ht .st {
  color: var(--pink-hot);
  /* letter-spacing: 3px; */
  font-size: 0.88rem;
}
.ht span {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 600;
}
.hbg {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hb {
  font-size: 0.69rem;
  font-weight: 700;
  color: var(--text-mid);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: var(--blur-s);
  -webkit-backdrop-filter: var(--blur-s);
  border: 1px solid rgba(255, 179, 217, 0.48);
  padding: 3px 10px;
  border-radius: 100px;
  box-shadow:
    0 2px 8px rgba(255, 137, 196, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.2s;
  cursor: default;
}
.hb:hover {
  transform: translateY(-2px);
}

/* Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* OVERLAP — carousel bleeds below hero into next section */
.hero-carousel {
  padding-bottom: 0;
}
.carousel-track {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--gsl);
  border: 1px solid rgba(255, 255, 255, 0.58);
  /* aspect-ratio: 3/4; */
  aspect-ratio: 1/1;
  margin-bottom: -36px;
  position: relative;
  z-index: 10;
}
.cslide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.02);
}
.cslide.active {
  opacity: 1;
  transform: scale(1);
}
.cslide.prev {
  opacity: 0;
  transform: scale(0.98);
}
.cs-s {
  position: relative;
  overflow: hidden;
}
.cs-b {
  background: linear-gradient(180deg, #c4a882, #9b7c5a);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.cs-b::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    170deg,
    transparent 0,
    transparent 4px,
    rgba(80, 40, 10, 0.14) 4px,
    rgba(80, 40, 10, 0.14) 5px
  );
}
.cs-a {
  background: linear-gradient(180deg, #f8c8d8, #e898b8);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.cs-a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    175deg,
    transparent 0,
    transparent 2px,
    rgba(220, 100, 150, 0.14) 2px,
    rgba(220, 100, 150, 0.14) 2.5px
  );
}
.csdiv {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.55);
  z-index: 4;
}
.csdiv::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--pink-deep);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.cslbl {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 3px 9px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  white-space: nowrap;
  z-index: 5;
}
.cslbl.b {
  background: rgba(40, 10, 25, 0.4);
}
.cslbl.a {
  background: rgba(255, 107, 171, 0.62);
}

.cprev,
.cnext {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--pink-deep);
  box-shadow: var(--gsh);
  transform: translateY(-50%);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  user-select: none;
}
.cprev {
  left: -16px;
}
.cnext {
  right: -16px;
}
.cprev:hover,
.cnext:hover {
  background: rgba(255, 255, 255, 0.58);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--gsl);
}
.cdots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 50px;
}
.cdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 137, 196, 0.32);
  border: 1px solid rgba(255, 137, 196, 0.38);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
  flex-shrink: 0;
}
.cdot.active {
  background: var(--pink-hot);
  width: 22px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   RIBBON
══════════════════════════════════════════ */
#ribbon {
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 220, 240, 0.42)
  );
  /* backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur); */
  /* border-top: 1px solid rgba(217, 77, 148, 0.2);
  border-bottom: 1px solid rgba(217, 77, 148, 0.2); */
  /* box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.8) inset,
    0 6px 24px rgba(217, 77, 148, 0.12); */
  box-shadow: 0 6px 24px rgba(217, 77, 148, 0.12);
  padding-top: 15px;
  padding-bottom: 15px;
}
#ribbon::before,
#ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 4;
  pointer-events: none;
}
#ribbon::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 244, 250, 1), transparent);
}
#ribbon::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 244, 250, 1), transparent);
}

.rtrack {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  animation: rscroll 50s linear infinite;
  padding: 0;
}

@keyframes rscroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.rtrack:hover {
  animation-play-state: paused;
}
.ri {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 34px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ric {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 179, 217, 0.34),
    rgba(255, 137, 196, 0.17)
  );
  border: 1px solid rgba(255, 179, 217, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow:
    0 2px 8px rgba(255, 137, 196, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.ric i {
  color: var(--pink-deep);
  font-size: 18px;
}

.rt {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}
.rsep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.5;
  flex-shrink: 0;
  margin: 0 5px;
}

/* ══════════════════════════════════════════
   PROOF — flows into ribbon below
══════════════════════════════════════════ */
#proof {
  padding: var(--sec) 0 calc(var(--sec) * 1.1);
  position: relative;
  /* background: linear-gradient(
    180deg,
    rgba(255, 220, 240, 0.22) 0%,
    rgba(255, 190, 225, 0.3) 50%,
    rgba(255, 220, 240, 0.18) 100%
  ); */
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.pcard {
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 18px 52px rgba(200, 50, 130, 0.28),
    0 2px 0 rgba(255, 255, 255, 0.88) inset;
  border: 1px solid rgba(217, 100, 165, 0.45);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
}
.pcard:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 26px 70px rgba(255, 137, 196, 0.28),
    0 2px 0 rgba(255, 255, 255, 0.74) inset;
}
.pimg {
  aspect-ratio: 3/4;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.bas {
  position: relative;
  overflow: hidden;
}
.hbf {
  background: linear-gradient(180deg, #c4a882, #9b7c5a);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.bas img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hbf::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    170deg,
    transparent 0,
    transparent 4px,
    rgba(80, 40, 10, 0.14) 4px,
    rgba(80, 40, 10, 0.14) 5px
  );
}
.haf {
  background: linear-gradient(180deg, #f8c8d8, #e898b8);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.haf::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    175deg,
    transparent 0,
    transparent 2px,
    rgba(220, 100, 150, 0.14) 2px,
    rgba(220, 100, 150, 0.14) 2.5px
  );
}
.lbl {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 3px 9px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  white-space: nowrap;
  z-index: 5;
}
.lbl.b {
  background: rgba(40, 10, 25, 0.4);
}
.lbl.a {
  background: rgba(255, 107, 171, 0.6);
}
.bdiv {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.52);
  z-index: 3;
}
.bdiv::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  color: var(--pink-deep);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}
.pcap {
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: var(--blur-s);
  -webkit-backdrop-filter: var(--blur-s);
  border-top: 1px solid rgba(255, 255, 255, 0.58);
}
.pcap .pn {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-dark);
}
.pcap .pr {
  font-size: 0.76rem;
  color: var(--pink-deep);
  font-weight: 700;
  margin-top: 1px;
}

/* Testimonials */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: var(--gap);
}
.tc-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(217, 100, 165, 0.42);
  /* box-shadow:
    0 14px 44px rgba(200, 50, 130, 0.22),
    0 2px 0 rgba(255, 255, 255, 0.88) inset; */
  border-radius: 14px;
  padding: 14px 13px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
}
.tc-card:hover {
  transform: translateY(-4px);
  /* box-shadow:
    0 26px 68px rgba(255, 137, 196, 0.26),
    0 2px 0 rgba(255, 255, 255, 0.74) inset; */
}
/* .tc-card::before {
  content: '"';
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 137, 196, 0.2);
  position: absolute;
  top: 1px;
  left: 8px;
} */

.tc-card .quote i {
  color: rgba(200, 50, 130, 0.28);
  font-size: 42px;
}
.tc-card .st {
  /* color: var(--pink-hot); */
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.tc-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-mid);
}
.tm {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 179, 217, 0.22);
}
.tav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-hot));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  /* box-shadow: 0 3px 10px rgba(255, 137, 196, 0.28); */
}
.tn {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}
.tl {
  font-size: 0.71rem;
  color: var(--text-light);
}

/* ══════════════════════════════════════════
   CTA STRIP — seamless
══════════════════════════════════════════ */
.cstrip {
  padding: 24px 20px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(217, 77, 148, 0.16),
    rgba(245, 103, 176, 0.1)
  );
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  /* border-top: 1px solid rgba(200, 50, 130, 0.28);
  border-bottom: 1px solid rgba(200, 50, 130, 0.28); */
}
.cstrip p {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   PROBLEM — overlaps slightly into product section
══════════════════════════════════════════ */
#problem {
  padding: var(--sec) 0;
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(250, 210, 238, 0.7) 0%,
    rgba(245, 185, 225, 0.45) 100%
  );

  overflow: hidden;
}
#problem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255, 244, 250, 0.5));
  pointer-events: none;
  z-index: 1;
}

.problem-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* background-position: center bottom; */
  /* max-height: 75%; */
  z-index: 0;
  /* transform: scale(1.05); */
  transition: 
    opacity 0.6s ease,
    transform 1.2s ease;
}

.problem-bg.fade-out {
  opacity: 0;
}

.problem-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  /* background: linear-gradient(
    160deg,
    rgba(250, 210, 238, 0.75) 0%,
    rgba(245, 185, 225, 0.55) 100%
  ); */

  background: linear-gradient(
    to bottom,
    
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.4) 25%,
    
    rgba(255,255,255,0.1) 45%,
    
    rgba(245,185,225,0.35) 70%,
    rgba(245,185,225,0.65) 100%
  );
}

#problem .container {
  position: relative;
  z-index: 2;
}

.prob-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;

  padding-top: 10rem;
}

.pi {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: var(--blur-s);
  -webkit-backdrop-filter: var(--blur-s);
  border: 1px solid rgba(217, 100, 165, 0.38);
  border-radius: 14px;
  box-shadow:
    0 8px 28px rgba(200, 50, 130, 0.18),
    0 1.5px 0 rgba(255, 255, 255, 0.88) inset;
  /* transition:
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.22s; */

  transition:
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.22s,
    border 0.3s ease;
}

.pi.active {
  border: 1px solid rgba(217, 100, 165, 0.8);
  box-shadow:
    0 10px 32px rgba(200, 50, 130, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.pi:hover {
  transform: translateY(-3px);
  box-shadow: var(--gsl);
}
.pico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 179, 217, 0.33),
    rgba(255, 137, 196, 0.18)
  );
  border: 1px solid rgba(255, 179, 217, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow:
    0 2px 8px rgba(255, 137, 196, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.pi h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1px;
  font-family: "Quicksand", sans-serif;
}
.pi p {
  font-size: 0.76rem;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .problem-bg {
    background-position: center bottom;
    max-height: 75%;
    transform: scale(1.05);
  }
}

/* ══════════════════════════════════════════
   PRODUCT HERO SECTION — light, premium, feminine
   The product dominates. Text supports.
══════════════════════════════════════════ */
#produto {
  position: relative;
  overflow: visible;
  padding: 0;
  margin-top: -2px;
}

/* Soft gradient — light, feminine, premium */
.prod-bg {
  background: linear-gradient(
    155deg,
    #fffbfe 0%,
    #fff0f8 30%,
    #ffe8f5 65%,
    #fff4fa 100%
  );
  padding: 50px 0 60px;
  position: relative;
  overflow: visible;
}
/* Ambient mesh glows */
.prod-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 28% 45%,
      rgba(255, 179, 217, 0.4) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 55% 50% at 82% 18%,
      rgba(255, 137, 196, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 48% 44% at 12% 82%,
      rgba(255, 215, 238, 0.28) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
/* Fade into next section */
.prod-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 244, 250, 0.65)
  );
  pointer-events: none;
  z-index: 2;
}

.prod-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Product Visual — bleeds beyond section ── */
.prod-vis {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -20px;
  margin-bottom: -20px;
}
/* Large pink ambient glow */
.prod-glow-ring {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 77, 148, 0.4) 0%,
    rgba(245, 103, 176, 0.18) 42%,
    transparent 72%
  );
  animation: pglow 4s ease-in-out infinite;
  z-index: 0;
}
/* Inner warm glow */
.prod-glow-ring2 {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 50, 130, 0.28) 0%,
    rgba(217, 77, 148, 0.12) 52%,
    transparent 75%
  );
  animation: pglow 4s ease-in-out infinite;
  animation-delay: 2s;
  z-index: 0;
}
/* Bottom light reflection */
.prod-glow-ring3 {
  position: absolute;
  width: 220px;
  height: 60px;
  bottom: -24px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(255, 179, 217, 0.55) 0%,
    transparent 75%
  );
  filter: blur(14px);
  z-index: 1;
}
@keyframes pglow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.5;
  }
}

.prod-float {
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 48px 90px rgba(200, 50, 130, 0.3))
    drop-shadow(0 12px 28px rgba(217, 77, 148, 0.26))
    drop-shadow(0 -3px 14px rgba(255, 255, 255, 0.65));
  animation: pfloat 5s ease-in-out infinite;
}
@keyframes pfloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-22px) rotate(0.4deg);
  }
}
/* IMAGE SLOT: product-main | images/product-main.png */
.prod-float img {
  width: clamp(290px, 30vw, 420px);
}

/* ── Copy — light theme ── */
.prod-copy {
  position: relative;
  z-index: 2;
}
.prod-copy .tag {
  color: var(--pink-deep);
  background: rgba(255, 137, 196, 0.12);
  border-color: rgba(255, 137, 196, 0.35);
}
.prod-copy h2 {
  color: var(--text-dark);
  margin-bottom: 4px;
}
.prod-eyebrow {
  font-family: "Playfair Display", serif;
  font-size: clamp(0.82rem, 1.4vw, 0.96rem);
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 14px;
  font-weight: 300;
}
.prod-copy .lead {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
}
.prod-copy .lead strong {
  color: var(--text-dark);
}

.prod-logo-wrap {
  margin-bottom: 18px;
}
/* Logo has dark background in PNG — keep as-is, show on light */
.prod-logo-wrap img {
  height: 68px;
  filter: none;
}

.ppills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.pp {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: var(--blur-s);
  -webkit-backdrop-filter: var(--blur-s);
  border: 1px solid rgba(255, 137, 196, 0.36);
  color: var(--pink-deep);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow:
    0 2px 8px rgba(255, 137, 196, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  transition:
    transform 0.2s,
    background 0.2s;
}
.pp:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
}

.prod-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}
.prod-headline em {
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-style: italic;
}

/* ══════════════════════════════════════════

/* ══════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════ */
#benefits {
  padding: var(--sec) 0;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 215, 238, 0.26) 0%,
    rgba(250, 190, 228, 0.22) 60%,
    rgba(255, 215, 238, 0.18) 100%
  );
}
.bgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.bc {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(217, 100, 165, 0.38);
  box-shadow:
    0 12px 40px rgba(200, 50, 130, 0.2),
    0 1.5px 0 rgba(255, 255, 255, 0.88) inset;
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.bc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
  border-radius: inherit;
}
.bc:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--gsl);
}
.bico {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 179, 217, 0.33),
    rgba(255, 137, 196, 0.18)
  );
  border: 1px solid rgba(255, 179, 217, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 1.35rem; */
  margin: 0 auto 10px;
  padding: 5px;
  box-shadow:
    0 5px 18px rgba(255, 137, 196, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}

.bico img {
  max-width: 100%;
  height: auto;
}

.bc h3 {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text-dark);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}
.bc p {
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
   INGREDIENTS (pink gradient section)
══════════════════════════════════════════ */
#ingr {
  position: relative;
  padding: var(--sec) 0;
  overflow: hidden;
  /* background: linear-gradient(
    145deg,
    rgba(195, 45, 125, 0.95),
    rgba(225, 75, 158, 0.92),
    rgba(245, 115, 180, 0.86)
  ); */
}
#ingr.sec-parallax {
  position: relative;
  background-image: url('../../images/bg-parallax.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: var(--sec) 0;
}

/* overlay rosé elegante */
#ingr.sec-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(240, 80, 168, 0.7),
    rgba(248, 216, 239, 0.8),
    rgba(252, 230, 245, 0.25)
  );
  z-index: 0;
}

#ingr.sec-parallax .container {
  position: relative;
  z-index: 1;
}


/* #ingr::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 30%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 80% 70%,
      rgba(255, 255, 255, 0.14) 0%,
      transparent 55%
    );
}
// Fade edges for continuity
#ingr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to bottom, transparent, rgba(255, 244, 250, 0.6));
  pointer-events: none;
  z-index: 2;
} */

#ingr .tag {
  color: var(--pink-deep);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.35);
}
#ingr h2 {
  /* color: #fff; */
}
#ingr .sec-hdr p {
  color: rgba(255, 255, 255, 0.8);
}
.igrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.ic {
  text-align: center;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  box-shadow:
    0 8px 28px rgba(200, 80, 140, 0.1),
    0 1.5px 0 rgba(255, 255, 255, 0.65) inset;
  transition:
    background 0.2s,
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.ic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent);
  border-radius: inherit;
  pointer-events: none;
}
.ic:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-4px) scale(1.02);
}
.iico {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  /* background: rgba(255, 255, 255, 0.2); */
  background: #dc5097;
  /* border: 1px solid rgba(255, 255, 255, 0.35); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 1.15rem; */
  margin: 0 auto 8px;
  /* box-shadow:
    0 3px 12px rgba(200, 80, 140, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.76) inset; */
  overflow: hidden;
}

.iico img {
  max-width: 100%;
  height: auto;
}

.ic h4 {
  font-family: "Playfair Display", serif;
  font-size: 0.94rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  position: relative;
}
.ir {
  font-size: 0.8rem;
  /* color: rgba(255, 255, 255, 0.86); */
  color: var(--text-mid);
  line-height: 1.3;
  position: relative;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   NUTRITIONAL TABLE
══════════════════════════════════════════ */
#nutri {
  padding: var(--sec) 0;
  /* background: linear-gradient(
    145deg,
    rgba(195, 45, 125, 0.95),
    rgba(225, 75, 158, 0.92),
    rgba(245, 115, 180, 0.86)
  ); */

  background: linear-gradient(135deg, #f050a8, #c2186e);
}

#nutri h2,
#nutri p {
  color: #FFFFFF;
}

.ni {
  max-width: 700px;
  margin: 0 auto;
}
.ntog {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(217, 100, 165, 0.36);
  border-radius: 16px;
  padding: 16px 22px;
  cursor: pointer;
  color: var(--text-dark);
  box-shadow:
    0 8px 28px rgba(200, 50, 130, 0.18),
    0 1.5px 0 rgba(255, 255, 255, 0.88) inset;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  font-family: "Quicksand", sans-serif;
}
.ntog:hover {
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--gsl);
  transform: translateY(-1px);
}
.ntl {
  display: flex;
  align-items: center;
  gap: 11px;
}
.ntl .ni-ico {
  font-size: 1.3rem;
}
.ntl h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.ntl span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}
.ntarr {
  font-size: 1.1rem;
  color: var(--pink-deep);
  transition: transform 0.35s;
  font-weight: 300;
  line-height: 1;
}
.nb {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s;
  opacity: 0;
}
.nb.open {
  max-height: 1000px;
  opacity: 1;
}
.ntw {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(217, 100, 165, 0.36);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 8px 28px rgba(200, 50, 130, 0.18),
    0 1.5px 0 rgba(255, 255, 255, 0.88) inset;
}
.nth {
  display: grid;
  grid-template-columns: 1fr 88px 76px;
  background: rgba(255, 137, 196, 0.16);
  border-bottom: 1px solid rgba(255, 179, 217, 0.38);
  padding: 11px 18px;
}
.nth span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-deep);
}
.nth .nha,
.nth .nhv {
  text-align: center;
}
.nsv {
  padding: 9px 18px;
  border-bottom: 1px solid rgba(255, 179, 217, 0.22);
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
}
.nr {
  display: grid;
  grid-template-columns: 1fr 88px 76px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255, 179, 217, 0.12);
  align-items: center;
  transition: background 0.15s;
}
.nr:last-child {
  border-bottom: none;
}
.nr:hover {
  background: rgba(255, 179, 217, 0.1);
}
.nr.hl {
  background: rgba(217, 77, 148, 0.1);
  border-left: 3px solid var(--pink-deep);
}
.nr.hl .nrn {
  color: var(--text-dark);
  font-weight: 700;
}
.nrn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 7px;
}
.nri {
  font-size: 0.92rem;
  opacity: 0.78;
}
.nra {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}
.nrv {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}
.vhi {
  color: #c73585;
  font-weight: 800;
}
.ncat {
  padding: 7px 18px;
  background: rgba(255, 179, 217, 0.13);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-deep);
  border-bottom: 1px solid rgba(255, 179, 217, 0.18);
  border-top: 1px solid rgba(255, 179, 217, 0.18);
}
.nft {
  padding: 11px 18px;
  font-size: 0.73rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 179, 217, 0.18);
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
#how {
  padding: var(--sec) 0;
  background: linear-gradient(
    160deg,
    rgba(255, 230, 245, 0.45) 0%,
    rgba(255, 210, 235, 0.22) 100%
  );
}
.sgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.scon {
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 179, 217, 0.26),
    rgba(255, 137, 196, 0.62),
    rgba(255, 179, 217, 0.26)
  );
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.sn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 2px solid rgba(217, 77, 148, 0.4);
  color: var(--pink-deep);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow:
    0 8px 28px rgba(200, 50, 130, 0.26),
    0 1.5px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
}
.step:hover .sn {
  transform: scale(1.12);
  box-shadow: var(--gsl);
}
.step h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.step p {
  font-size: 0.8rem;
}
.sec-sm .tl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 38px;
}
.tll {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 179, 217, 0.32),
    var(--pink-hot),
    var(--gold)
  );
  border-radius: 2px;
}
.ti {
  padding: 26px 8px 0;
  text-align: center;
  position: relative;
}
.td {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--pink-hot);
  border: 3px solid rgba(255, 244, 250, 0.88);
  box-shadow: 0 0 0 3px rgba(255, 137, 196, 0.32);
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.2s;
}
.ti:hover .td {
  transform: translateX(-50%) scale(1.4);
}
.tw {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 4px;
}
.ti h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.ti p {
  font-size: 0.78rem;
}

/* ══════════════════════════════════════════
   MAIN CTA
══════════════════════════════════════════ */
#garantir {
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #180610 0%, #2c0e22 45%, #1a0814 100%);
}
#garantir::before {
  content: "";
  position: absolute;
  top: -170px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 100, 180, 0.28) 0%,
    rgba(255, 80, 165, 0.1) 50%,
    transparent 70%
  );
  pointer-events: none;
}
.upill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 137, 196, 0.1);
  backdrop-filter: var(--blur-s);
  -webkit-backdrop-filter: var(--blur-s);
  border: 1px solid rgba(255, 137, 196, 0.3);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 0.82rem;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 24px;
}
.pd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff89c4;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.12;
  }
}
#garantir h2 {
  color: #fff;
  margin-bottom: 10px;
}
#garantir .s2 {
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  margin: 0 auto 22px;
  font-size: 0.96rem;
}
.ctrust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.ct {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
#faq {
  padding: var(--sec) 0;
}
.fw {
  max-width: 700px;
  margin: 0 auto;
}
.fi {
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 200, 230, 0.68);
  border-radius: 14px;
  box-shadow:
    0 6px 24px rgba(217, 77, 148, 0.12),
    0 1.5px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
  transition:
    box-shadow 0.22s,
    transform 0.22s;
}
.fi:hover {
  box-shadow: var(--gsl);
}
.fi.open {
  box-shadow: var(--gsl);
}
.fq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  cursor: pointer;
  gap: 14px;
}
.fq h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  flex: 1;
  font-family: "Quicksand", sans-serif;
  line-height: 1.4;
  margin-bottom: 0;
}
.ftog {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: var(--blur-s);
  border: 1px solid rgba(255, 179, 217, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--pink-deep);
  transition:
    transform 0.3s,
    background 0.3s;
  font-weight: 300;
  line-height: 1;
  box-shadow:
    0 2px 7px rgba(255, 137, 196, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
  flex-shrink: 0;
}
.fi.open .ftog {
  transform: rotate(45deg);
  background: var(--pink-hot);
  color: #fff;
  border-color: var(--pink-hot);
}
.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.fi.open .answer {
  max-height: 500px;
}
.fai {
  padding: 2px 18px 18px;
}
.fai p {
  font-size: 0.86rem;
  line-height: 1.68;
  color: var(--text-mid);
  margin-bottom: 0;
}
.fai ul {
  margin: 7px 0 0 14px;
  list-style: none;
}
.fai ul li {
  font-size: 0.84rem;
  line-height: 1.62;
  color: var(--text-mid);
  padding: 2px 0 2px 13px;
  position: relative;
}
.fai ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--pink-hot);
}

.cta-faq .ctrust .ct {
  color: var(--pink-deep);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
/* footer{background:rgba(22,6,16,.97);padding:22px 20px;text-align:center}
.fl img{height:28px;margin-bottom:10px;filter:brightness(0) invert(1) opacity(.42)}
footer p{font-size:.73rem;color:rgba(255,255,255,.24);font-weight:500} */

.footer {
  background: rgba(22, 6, 16, 0.97);
  color: white;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo img {
  max-width: 140px;
  /* margin-bottom: 20px; */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 0 30px;
}

.footer-col h4 {
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-col p {
  color: #f1f1f1;
  font-size: 13px;
  line-height: 1.5;
}

/* Ícones */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-icons i {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
}

/* Segurança */
.footer-security {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.footer-security i {
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  margin-right: 5px;
}

.footer-security i.fa-lock {
  color: #ffbc00;
}

.footer-security i.fa-check {
  color: #6cff4c;
}

/* Bottom */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  color: #f1f1f1;
  font-size: 13px;
  line-height: 1.5;
}

.footer-disclaimer {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .footer-container {
    text-align: left;
  }

  .footer-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer {
    margin-bottom: 30px;
    padding-bottom: 80px;
  }
}

/* ══════════════════════════════════════════
   CONTRAST ENHANCEMENTS — alternating sections
══════════════════════════════════════════ */

/* Hero — deeper ambient gradient */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 90% 70% at 70% 50%,
    rgba(255, 200, 230, 0.35) 0%,
    transparent 65%
  );
}

/* Proof — subtle tinted bg */
/* #proof {
  background: linear-gradient(
    180deg,
    rgba(250, 215, 238, 0.28) 0%,
    rgba(245, 190, 226, 0.22) 50%,
    rgba(250, 215, 238, 0.18) 100%
  );
} */

/* After proof CTA strip — visible boundary */
/* .cstrip {
  box-shadow:
    0 1px 0 rgba(200, 50, 130, 0.18) inset,
    0 -1px 0 rgba(200, 50, 130, 0.18) inset;
} */

/* Problem — warm rose tint */
#problem {
  background: linear-gradient(
    155deg,
    rgba(248, 205, 235, 0.65) 0%,
    rgba(240, 180, 220, 0.42) 100%
  );
}

/* Benefits — gentle lavender-pink */
#benefits {
  background: linear-gradient(
    180deg,
    rgba(252, 220, 240, 0.3) 0%,
    rgba(248, 200, 232, 0.24) 60%,
    rgba(252, 220, 240, 0.2) 100%
  );
}

/* How it works — clean with subtle depth */
#how {
  background: linear-gradient(
    160deg,
    rgba(255, 225, 242, 0.32) 0%,
    rgba(250, 205, 235, 0.22) 100%
  );
}

/* CTA section — richer dark with edge glow */
#garantir::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 100% 60% at 50% 100%,
    rgba(245, 103, 176, 0.16) 0%,
    transparent 65%
  );
}

/* Card image borders — more visible */
.pcard {
  border: 1.5px solid rgba(200, 80, 145, 0.38) !important;
}
.bc {
  border: 1.5px solid rgba(200, 80, 145, 0.32) !important;
}

/* Before/after divider line — crisper */
.bdiv,
.csdiv {
  background: rgba(255, 255, 255, 0.7) !important;
}

/* Section headings — gradient accent on key words */
.sec-hdr h2,
.sec-hdr h2 em {
  letter-spacing: -0.01em;
}

/* Deeper ingredient card bg */
.ic {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
}
.ic:hover {
  background: rgba(255, 255, 255, 0.34) !important;
}
.ic h4 {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(160, 20, 100, 0.25);
}

/* FAQ open state — visible accent */
.fi.open {
  border-color: rgba(200, 50, 130, 0.35) !important;
}

/* Step timeline line — deeper pink */
.tll {
  background: linear-gradient(
    90deg,
    rgba(200, 80, 145, 0.38),
    var(--pink-deep),
    var(--gold)
  ) !important;
}

/* Prod copy pills on light bg — crisper borders */
.pp {
  border-color: rgba(200, 50, 130, 0.42) !important;
  color: var(--pink-deep) !important;
  font-weight: 800 !important;
}

/* ══════════════════════════════════════════
   VISUAL CONTRAST UPGRADE
   Stronger, richer, still feminine & premium
══════════════════════════════════════════ */

/* Body background — warmer, more saturated base */
body {
  background: #fce8f5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      ellipse 80% 55% at 8% 4%,
      rgba(230, 60, 148, 0.26) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 45% at 92% 14%,
      rgba(210, 60, 140, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 55% at 50% 64%,
      rgba(248, 160, 215, 0.38) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 4% 84%,
      rgba(210, 60, 140, 0.16) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 75% 55% at 94% 90%,
      rgba(230, 60, 148, 0.24) 0%,
      transparent 60%
    );
  background-color: #fce8f5;
}

/* Headings — bolder, crisper */
h1 {
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
h2 {
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
h1 em,
h2 em {
  background: linear-gradient(135deg, #f050a8, #c2186e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* Glass tokens — more opaque = more contrast */
:root {
  --gb: rgba(255, 255, 255, 0.48);
  --gb2: rgba(255, 255, 255, 0.62);
  --gbd: rgba(255, 255, 255, 0.85);
  --gbs: rgba(255, 255, 255, 0.65);
  --gsh:
    0 8px 32px rgba(180, 30, 110, 0.22),
    0 1.5px 0 rgba(255, 255, 255, 0.9) inset;
  --gsl:
    0 22px 60px rgba(180, 30, 110, 0.36),
    0 2px 0 rgba(255, 255, 255, 0.95) inset;
}

/* Hero — richer copy contrast */
.hc .sub {
  color: #5c2845;
  font-weight: 600;
}
.hb {
  background: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(200, 50, 130, 0.42) !important;
  color: #8a1a55 !important;
  box-shadow:
    0 2px 10px rgba(200, 50, 130, 0.14),
    0 1px 0 rgba(255, 255, 255, 1) inset !important;
}

/* Proof section — stronger tint */
/* #proof {
  background: linear-gradient(
    175deg,
    #fbe5f5 0%,
    #f7d5ee 50%,
    #fbe5f5 100%
  ) !important;
} */

/* Proof cards — richer white, deeper shadow */
.pcard {
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow:
    0 16px 48px rgba(180, 30, 110, 0.28),
    0 2px 0 rgba(255, 255, 255, 1) inset !important;
  border: 1.5px solid rgba(190, 60, 130, 0.36) !important;
}
.bdiv,
.csdiv {
  background: rgba(255, 255, 255, 0.82) !important;
}
.lbl.a,
.cslbl.a {
  background: rgba(200, 50, 130, 0.72) !important;
}

/* Testimonial cards — crisper */
.tc-card {
  background: rgba(255, 255, 255, 0.88) !important;
  /* box-shadow:
    0 12px 40px rgba(180, 30, 110, 0.22),
    0 2px 0 rgba(255, 255, 255, 1) inset !important; */
  border: 1.5px solid rgba(190, 60, 130, 0.3) !important;
}
/* .tc-card::before {
  color: rgba(200, 50, 130, 0.28) !important;
} */

/* CTA strip — more visible boundary */
.cstrip {
  background: linear-gradient(
    90deg,
    rgba(248, 210, 235, 0.55),
    rgba(255, 230, 248, 0.7),
    rgba(248, 210, 235, 0.55)
  ) !important;
  /* border-top: 1.5px solid rgba(200, 70, 140, 0.22) !important;
  border-bottom: 1.5px solid rgba(200, 70, 140, 0.22) !important; */
}
.cstrip p {
  color: var(--text-dark) !important;
  font-weight: 700;
}

/* Problem section — deeper rose */
#problem {
  background: linear-gradient(155deg, #f9ddf2 0%, #f0c8e4 100%) !important;
}
.pi {
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow:
    0 8px 28px rgba(180, 30, 110, 0.18),
    0 1.5px 0 rgba(255, 255, 255, 1) inset !important;
  border: 1px solid rgba(190, 60, 130, 0.32) !important;
}
.pi h4 {
  color: var(--text-dark) !important;
}
.pico {
  background: linear-gradient(
    135deg,
    rgba(230, 80, 155, 0.22),
    rgba(200, 50, 130, 0.12)
  ) !important;
  border-color: rgba(200, 60, 140, 0.48) !important;
}

/* Product section — retain light bg, boost contrast on copy */
.prod-copy .lead strong {
  color: var(--text-dark) !important;
  font-weight: 700;
}
.prod-eyebrow {
  color: var(--pink-deep) !important;
  font-weight: 400;
}
.prod-headline {
  color: var(--text-dark) !important;
}

/* Benefits section — tinted bg + stronger cards */
#benefits {
  background: linear-gradient(
    175deg,
    #fce6f5 0%,
    #f8d8ef 55%,
    #fce6f5 100%
  ) !important;
}
.bc {
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow:
    0 10px 36px rgba(180, 30, 110, 0.2),
    0 1.5px 0 rgba(255, 255, 255, 1) inset !important;
  border: 1.5px solid rgba(190, 60, 130, 0.28) !important;
}
.bc h3 {
  color: var(--text-dark) !important;
}
.bico {
  background: linear-gradient(
    135deg,
    rgba(230, 80, 155, 0.3),
    rgba(200, 50, 130, 0.16)
  ) !important;
  border-color: rgba(200, 60, 140, 0.5) !important;
  box-shadow:
    0 4px 16px rgba(200, 50, 130, 0.2),
    0 1px 0 rgba(255, 255, 255, 1) inset !important;
}

/* Ingredients section — keep deep pink, boost contrast of text */
.ic {
  background: rgba(255, 255, 255, 0.22) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow:
    0 8px 28px rgba(160, 20, 100, 0.14),
    0 1.5px 0 rgba(255, 255, 255, 0.7) inset !important;
}
.ic h4 {
  font-weight: 800 !important;
  /* text-shadow: 0 1px 6px rgba(120, 0, 70, 0.3); */
  text-shadow: 0 1px 6px rgba(255, 255, 255, 0.3);

  background: linear-gradient(135deg, #f050a8, #c2186e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-size: 1.2rem;
}
.iico {
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
}

/* Nutritional table — crisper rows */
.ntog {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1.5px solid rgba(200, 70, 140, 0.3) !important;
  box-shadow:
    0 6px 24px rgba(180, 30, 110, 0.14),
    0 1.5px 0 rgba(255, 255, 255, 1) inset !important;
}
.ntw {
  background: rgba(255, 255, 255, 0.82) !important;
}
.nr:hover {
  background: rgba(245, 185, 225, 0.2) !important;
}
.nr.hl {
  background: rgba(230, 80, 155, 0.1) !important;
  border-left: 3px solid #d94d94 !important;
}
.vhi {
  color: #c2186e !important;
  font-weight: 800 !important;
}

/* How it works — deeper bg */
#how {
  background: linear-gradient(160deg, #fde9f6 0%, #f8d8ef 100%) !important;
}
.sn {
  box-shadow:
    0 8px 28px rgba(180, 30, 110, 0.28),
    0 1.5px 0 rgba(255, 255, 255, 0.9) inset !important;
  background: rgba(255, 255, 255, 0.62) !important;
  border: 2px solid rgba(200, 70, 140, 0.38) !important;
}
.td {
  background: #d94d94 !important;
  border: 3px solid rgba(255, 240, 250, 0.95) !important;
  box-shadow: 0 0 0 3px rgba(200, 50, 130, 0.4) !important;
}

/* CTA section — richer dark, stronger glow */
#garantir {
  background: linear-gradient(
    160deg,
    #120408 0%,
    #2a0a1e 45%,
    #160610 100%
  ) !important;
}
#garantir::before {
  background: radial-gradient(
    circle,
    rgba(245, 103, 176, 0.3) 0%,
    rgba(200, 50, 130, 0.1) 50%,
    transparent 70%
  ) !important;
}
.upill {
  background: rgba(245, 103, 176, 0.16) !important;
  border: 1px solid rgba(245, 103, 176, 0.4) !important;
  color: #ffb3d9 !important;
}

/* FAQ — crisper cards */
#faq {
  background: linear-gradient(180deg, #fce6f5 0%, #fce8f5 100%);
}
.fi {
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1.5px solid rgba(200, 70, 140, 0.25) !important;
  box-shadow:
    0 6px 24px rgba(180, 30, 110, 0.14),
    0 1.5px 0 rgba(255, 255, 255, 1) inset !important;
}
.fi.open {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(200, 50, 130, 0.4) !important;
  box-shadow:
    0 12px 40px rgba(180, 30, 110, 0.24),
    0 1.5px 0 rgba(255, 255, 255, 1) inset !important;
}

/* CTA button — stronger pulse glow */
@keyframes btnpulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 8px 32px rgba(200, 30, 120, 0.52),
      0 1.5px 0 rgba(255, 255, 255, 0.5) inset;
  }
  50% {
    transform: scale(1.028);
    box-shadow:
      0 16px 52px rgba(200, 30, 120, 0.72),
      0 0 28px rgba(245, 103, 176, 0.5),
      0 1.5px 0 rgba(255, 255, 255, 0.6) inset;
  }
}

/* Product float — more defined glow on light bg */
.prod-float {
  filter: drop-shadow(0 48px 90px rgba(210, 40, 140, 0.28))
    drop-shadow(0 12px 28px rgba(200, 50, 130, 0.24))
    drop-shadow(0 -3px 14px rgba(255, 255, 255, 0.7)) !important;
}
.prod-glow-ring {
  background: radial-gradient(
    circle,
    rgba(220, 70, 155, 0.52) 0%,
    rgba(200, 50, 130, 0.18) 42%,
    transparent 72%
  ) !important;
}
.prod-glow-ring2 {
  background: radial-gradient(
    circle,
    rgba(200, 50, 130, 0.34) 0%,
    rgba(220, 100, 170, 0.12) 52%,
    transparent 75%
  ) !important;
}

@media (max-width: 860px) {
  .hero-grid,
  .prod-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .prod-vis {
    order: -1;
    margin-top: 0;
    margin-bottom: -10px;
  }
  .hero-carousel {
    max-width: 320px;
    margin: 0 auto;
  }
  .pgrid {
    grid-template-columns: 1fr 1fr;
  }
  .tgrid {
    grid-template-columns: 1fr;
  }
  .bgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .igrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .scon {
    display: none;
  }
  .tl {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 12px;
  }
  .tll {
    display: none;
  }
  .ti {
    padding-top: 0;
  }
  .td {
    display: none;
  }
  .prob-grid {
    grid-template-columns: 1fr;
  }
  #ribbon::before,
  #ribbon::after {
    width: 60px;
  }
  .cprev {
    left: -10px;
  }
  .cnext {
    right: -10px;
  }
  .nth,
  .nr {
    grid-template-columns: 1fr 78px 68px;
  }
}
@media (max-width: 580px) {
  /* Global spacing tightening on mobile */
  :root {
    --sec: 22px;
    --gap: 8px;
  }
  h1 {
    font-size: 1.72rem;
    line-height: 1.1;
  }
  h2 {
    font-size: 1.28rem;
  }

  /* Hero: single column, carousel below copy */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 20px;
  }
  .hero-carousel {
    max-width: 100%;
    order: 2;
  }
  .carousel-track {
    aspect-ratio: 4/3;
    margin-bottom: -24px;
  }
  #ribbon {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .cdots {
    margin-top: 34px;
  }

  /* Grids */
  .pgrid {
    grid-template-columns: 1fr 1fr;
  }
  .bgrid {
    grid-template-columns: 1fr 1fr;
  }
  .igrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sgrid,
  .tl {
    grid-template-columns: 1fr;
  }

  /* Nav */
  #sticky .snav {
    display: none;
  }
  #sticky .btn {
    padding: 7px 18px;
    font-size: 0.78rem;
  }

  /* Ribbon */
  .ri {
    padding: 0 16px;
  }
  .rt {
    font-size: 0.76rem;
  }
  .rtrack {
    padding: 10px 0;
  }

  /* Proof cards: 2 cols, more compact */
  .pgrid {
    gap: 8px;
  }
  .pimg {
    aspect-ratio: 1/1;
  }
  .pcap {
    padding: 6px 9px;
  }
  .pcap .pn {
    font-size: 0.72rem;
  }
  .pcap .pr {
    font-size: 0.66rem;
  }

  /* Testimonials */
  .tgrid {
    grid-template-columns: 1fr;
  }
  .tc-card {
    padding: 12px 11px;
  }
  .tc-card .st {
    margin-top: 14px;
  }

  /* Problem grid */
  .prob-grid {
    grid-template-columns: 1fr;
  }
  .pi {
    padding: 9px 11px;
  }

  /* Product section */
  .prod-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .prod-vis {
    order: -1;
    margin-top: 0;
    margin-bottom: -8px;
  }
  .prod-float img {
    width: clamp(200px, 60vw, 280px);
  }
  .prod-glow-ring {
    width: 300px;
    height: 300px;
  }
  .prod-glow-ring2 {
    width: 200px;
    height: 200px;
  }
  .prod-logo-wrap img {
    height: 48px;
  }
  .prod-headline {
    font-size: 1.3rem;
  }
  .prod-copy .lead {
    font-size: 0.84rem;
  }
  .ppills {
    gap: 5px;
  }
  .pp {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  /* Benefits */
  .bgrid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .bc {
    padding: 14px 10px;
  }
  .bico {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    margin-bottom: 7px;
  }

  /* Ingredients */
  .igrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .ic {
    padding: 10px 6px;
  }
  .iico {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .ic h4 {
    font-size: 0.82rem;
  }
  .ir {
    font-size: 0.7rem;
  }

  /* Nutritional table */
  .nth,
  .nr {
    grid-template-columns: 1fr 66px 58px;
    padding: 8px 10px;
  }
  .ntog {
    padding: 13px 16px;
  }

  /* How it works */
  .sgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .sn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .step h4 {
    font-size: 0.82rem;
  }
  .step p {
    font-size: 0.74rem;
  }
  .tl {
    grid-template-columns: 1fr;
    margin-top: 8px;
  }

  /* Main CTA */
  #garantir {
    padding: 36px 0;
  }
  .upill {
    padding: 7px 16px;
    font-size: 0.76rem;
    margin-bottom: 16px;
  }
  .ctrust {
    gap: 10px;
  }
  .ct {
    font-size: 0.74rem;
  }

  /* FAQ */
  .fq {
    padding: 11px 13px;
  }
  .fq h4 {
    font-size: 0.86rem;
  }
  .fai {
    padding: 2px 14px 14px;
  }

  /* Button sizes on mobile */
  .btn {
    padding: 13px 28px;
    font-size: 0.88rem;
  }
  .btn-lg {
    font-size: 0.92rem;
    padding: 15px 34px;
  }
  .btn-xl {
    font-size: 0.96rem;
    padding: 16px 40px;
  }

  footer {
    padding: 18px 16px;
  }
}


/* CARROUSSEL ANTES/DEPOIS */
.proof-section {
  padding: 40px 0;
  /* background: var(--pink-pale); */
}

#testimonials.proof-section {
  padding: 0 0 40px;
}

/* BEFORE */
/* .before-card img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
} */

/* Container geral */
/* .beforeSwiper {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
} */

.beforeSwiper .pcard {
  box-shadow: none !important;
}

/* Wrapper dos slides */
.beforeSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}


/* TESTIMONIAL */
.testimonial-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--gsh);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.testimonial-card .client strong {
  color: var(--pink-deep);
}

.testimonial-card .client span {
  font-size: 12px;
  color: var(--text-light);
}


/* ── Section Vídeo ── */
#video-depoimento .video-fake {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: transform .3s ease, box-shadow .3s ease;
}

#video-depoimento .video-fake:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

#video-depoimento .video-thumb {
  width: 100%;
  display: block;
}

/* Botão play */
#video-depoimento .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 70px;
  height: 70px;
  border-radius: 50%;
  
  background: rgba(255,255,255,0.9);
  color: var(--text-dark);
  font-size: 26px;
  
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all .3s ease;
}

#video-depoimento .video-fake:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Hint abaixo do vídeo */
#video-depoimento .video-hint {
  font-size: 13px;
  color: #616161;
  margin-top: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  #video-depoimento .video-fake {
    max-width: 280px;
  }

  #video-depoimento .video-play {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

/* Carroussel de Fotos - Transformações */
.transformSwiper .card {
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(190, 60, 130, 0.36);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
}

.transformSwiper .card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 26px 70px rgba(255, 137, 196, 0.28),
    0 2px 0 rgba(255, 255, 255, 0.74) inset;
}

.transformSwiper .card .img-item {
  max-height: 380px;
  aspect-ratio: 3 / 4;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.transformSwiper .card .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}