/* ═══════════════════════════════════════════════════════
   VIITA — Main CSS v2.0
   Estrutura visual VIITA
   Mobile-first · Swiper · Drawers · Animações
═══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────── */
:root {
  --purple:     #8A86C9;
  --purple-dk:  #6B67B0;
  --purple-lt:  #EEEDF8;
  --purple-mid: #A8A5D8;
  --blue:       #0D1E59;
  --blue-lt:    #1a2e7a;
  --blue-xlt:   #eef0f8;
  --yellow:     #FCED92;
  --yellow-dk:  #d4c400;
  --terra:      #B38B6D;
  --green:      #10B981;
  --wa-green:   #25D366;
  --white:      #FFFFFF;
  --off-white:  #FAFAF8;
  --dark:       #0f0f12;
  --gray:       #6B7280;
  --gray-lt:    #E5E7EB;
  --gray-xlt:   #F3F4F6;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  --sh-sm:  0 1px 4px rgba(0,0,0,.07);
  --sh-md:  0 4px 20px rgba(0,0,0,.09);
  --sh-lg:  0 16px 48px rgba(0,0,0,.13);
  --sh-pu:  0 8px 32px rgba(138,134,201,.28);

  --ease:   cubic-bezier(.4,0,.2,1);
  --t:      .25s var(--ease);
  --t-slow: .55s var(--ease);

  --wrap:   1240px;
  --hdr:    82px;
  --ann:    40px; /* announce bar */
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: var(--font); }
button { cursor: pointer; border: 0; background: 0; }

/* ── Page width ─────────────────────────────────────── */
.page-width {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px)  { .page-width { padding: 0 32px; } }
@media (min-width: 1024px) { .page-width { padding: 0 48px; } }

/* Generic page template */
.viita-page {
  min-height: 60vh;
  padding: calc(var(--hdr) + 52px) 0 88px;
}
.viita-page__inner {
  max-width: 840px;
  margin: 0 auto;
}
.viita-page__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--blue);
}
.viita-page__content {
  font-size: 0.98rem;
  line-height: 1.85;
  color: #4B5563;
}
.viita-page__content > * + * {
  margin-top: 1.1em;
}

/* Woo pages need full breathing room */
.viita-page--woo {
  padding-top: calc(var(--hdr) + 32px);
}
.viita-page--woo .viita-page__inner--woo {
  max-width: none;
}
.viita-page--woo .viita-page__title {
  margin-bottom: 28px;
}

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; color: var(--blue); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
h2 em, h1 em { font-style: italic; color: var(--purple); }

.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.eyebrow--light { color: rgba(255,255,255,.6); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-sub { font-size: .93rem; color: var(--gray); max-width: 520px; margin: 0 auto; line-height: 1.75; }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}
.section-header-row__text h2 { margin-bottom: 4px; }

.logo-text {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--blue);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 2px solid transparent;
  transition: background var(--t), border-color var(--t), transform var(--t), color var(--t), opacity var(--t);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
/* Shimmer sweep on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn:hover { opacity: .88; }
.btn:active { transform: scale(.98); opacity: 1; }

.btn--primary { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn--primary:hover { background: var(--purple-dk); border-color: var(--purple-dk); opacity: 1; transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn--outline:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }

.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }

.btn--gold { background: linear-gradient(135deg,#d4960d,#f0c63a); color: var(--blue); border-color: transparent; font-weight: 700; }
.btn--gold:hover { transform: translateY(-2px); opacity: 1; filter: brightness(1.06); }

.btn--wa { background: var(--wa-green); color: #fff; border-color: var(--wa-green); }
.btn--wa:hover { filter: brightness(1.08); transform: translateY(-2px); opacity: 1; }

/* Pulse ring — para botões CTA principais */
@keyframes btn-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(138,134,201,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(138,134,201,0); }
  100% { box-shadow: 0 0 0 0 rgba(138,134,201,0); }
}
.btn--pulse { animation: btn-pulse 2.2s ease-out infinite; }

.btn--sm  { padding:  9px 18px; font-size: .8rem; }
.btn--lg  { padding: 16px 34px; font-size: .95rem; }
.btn--xl  { padding: 18px 44px; font-size: 1rem; }
.btn--full { width: 100%; }
.d-none-mobile { display: none; }
@media (min-width: 768px) { .d-none-mobile { display: inline-flex; } }

/* ── Motion / reveal ─────────────────────────────────── */
[data-motion] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
/* Directional variants */
[data-motion="from-left"]  { transform: translateX(-48px); }
[data-motion="from-right"] { transform: translateX(48px); }
[data-motion="zoom-out"]   { transform: scale(1.04); opacity: 0; }
/* Bounce variant — spring easing */
[data-motion="bounce-up"]  { transform: translateY(40px); }
[data-motion="bounce-up"].is-visible {
  opacity: 1; transform: none;
  transition: opacity .55s ease, transform .7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-motion].is-visible { opacity: 1; transform: none; }
/* Stagger delays */
[data-motion][data-motion-delay="50"]  { transition-delay: .05s; }
[data-motion][data-motion-delay="100"] { transition-delay: .10s; }
[data-motion][data-motion-delay="150"] { transition-delay: .15s; }
[data-motion][data-motion-delay="200"] { transition-delay: .20s; }
[data-motion][data-motion-delay="250"] { transition-delay: .25s; }
[data-motion][data-motion-delay="300"] { transition-delay: .30s; }

/* ── Section wave dividers ───────────────────────────── */
.section-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px; /* remove gap */
}
.section-wave svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  margin-top: -1px;
  margin-bottom: -1px;
}
.section-wave--flip { transform: scaleX(-1); }
/* Evita linha de anti-alias entre a secção azul e a secção seguinte */
.section-wave.section-wave--flip { margin-bottom: -4px; }

/* ── Check list ─────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 7px; }
.check-list li { font-size: .83rem; color: var(--gray); display: flex; align-items: flex-start; gap: 8px; }
.check-list i  { color: var(--green); font-size: .78rem; margin-top: 3px; flex-shrink: 0; }
.check-list strong { color: var(--blue); }

.offer-card .check-list li:last-child {
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(138,134,201,.12), rgba(138,134,201,.04));
  border: 1px solid rgba(138,134,201,.22);
  color: var(--blue);
}

.offer-card .check-list li:last-child i {
  margin-top: 0;
  font-size: .92rem;
  color: var(--purple);
}

.offer-card .check-list li:last-child strong {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--blue);
}

.offer-card--featured .check-list li:last-child {
  background: linear-gradient(135deg, rgba(138,134,201,.18), rgba(255,255,255,.7));
  border-color: rgba(138,134,201,.34);
  box-shadow: 0 8px 22px rgba(138,134,201,.16);
}

.offer-card--gold .check-list li:last-child {
  background: linear-gradient(135deg, rgba(240,198,58,.24), rgba(255,248,222,.74));
  border-color: rgba(212,150,13,.30);
  box-shadow: 0 8px 22px rgba(212,150,13,.12);
}

.offer-card--gold .check-list li:last-child i,
.offer-card--gold .check-list li:last-child strong {
  color: #9a6b00;
}

/* ── Stars ───────────────────────────────────────────── */
.stars {
  color: #f5a623;
  font-size: .92rem;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  flex-wrap: wrap;
}
.stars i,
.text-review__stars i {
  display: block;
  filter: drop-shadow(0 1px 1px rgba(13,30,89,.14));
}

/* ── Swiper nav ──────────────────────────────────────── */
.swiper-nav { display: flex; gap: 10px; }
.swiper-nav__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-lt);
  background: var(--white);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
  flex-shrink: 0;
}
.swiper-nav__btn:hover { background: var(--purple); border-color: var(--purple); color: #fff; transform: scale(1.05); }
.swiper-nav__btn.swiper-button-disabled { opacity: .35; pointer-events: none; }

/* ══════════════════════════════════════════════════════
   ANNOUNCE BAR
══════════════════════════════════════════════════════ */
.announce-bar {
  background: var(--blue);
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .03em;
  height: var(--ann);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 300;
}
.announce-bar__track {
  overflow: hidden;
}
.announce-bar__inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: ann-scroll 28s linear infinite;
  will-change: transform;
}
@keyframes ann-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
.announce-bar__inner > span { padding: 0 10px; }
.announce-bar__inner i { color: var(--yellow); font-size: .72rem; }
.announce-bar__sep { opacity: .3; padding: 0 4px; }

/* ══════════════════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  height: var(--hdr);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gray-lt);
  z-index: 200;
  transition: box-shadow var(--t), background var(--t);
}
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
.site-header__nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 900px) { .site-header__nav { display: flex; } }
.nav-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-link:hover { color: var(--purple); }
.nav-link:hover::after { transform: scaleX(1); }

.site-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo .logo-img { width: 140px; height: auto; display: block; }
.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
}

.header-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--blue);
  transition: background var(--t), color var(--t);
  position: relative;
}
.header-btn:hover { background: var(--blue-xlt); color: var(--purple); }
.header-btn--menu { display: flex; }
@media (min-width: 900px) { .header-btn--menu { display: none; } }

.hamburger {
  display: flex; flex-direction: column;
  gap: 5px; width: 22px;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--blue); border-radius: 2px;
  transition: var(--t);
}
.hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.cart-badge {
  position: absolute;
  top: 3px; right: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: .55rem;
  font-weight: 700;
  display: none;
  align-items: center; justify-content: center;
  border: 1.5px solid #fff;
}
.cart-badge.is-visible { display: flex; }

/* ══════════════════════════════════════════════════════
   DRAWERS
══════════════════════════════════════════════════════ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 400;
  visibility: hidden;
}
.drawer.is-open { visibility: visible; }

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,30,.55);
  opacity: 0;
  transition: opacity .35s var(--ease);
  backdrop-filter: blur(4px);
}
.drawer.is-open .drawer__overlay { opacity: 1; }

.drawer__panel {
  position: absolute;
  top: 0; bottom: 0;
  width: min(360px, 90vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease);
  box-shadow: var(--sh-lg);
}
.drawer--left .drawer__panel  { left: 0;  transform: translateX(-100%); }
.drawer--right .drawer__panel { right: 0; transform: translateX(100%); }
.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-lt);
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.drawer__close {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 1rem;
  transition: background var(--t), color var(--t);
}
.drawer__close:hover { background: var(--gray-xlt); color: var(--blue); }

/* Menu drawer nav */
.drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid var(--gray-xlt);
  transition: background var(--t), color var(--t);
}
.drawer__nav a:hover { background: var(--blue-xlt); color: var(--purple); }
.drawer__nav i { font-size: .75rem; color: var(--purple); }

.drawer__footer {
  padding: 20px;
  border-top: 1px solid var(--gray-lt);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer__trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: .72rem;
  color: var(--gray);
}
.drawer__trust i { color: var(--purple); margin-right: 4px; }

/* Cart drawer */
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 14px;
  color: var(--gray);
  text-align: center;
}
.cart-drawer__empty i { color: var(--purple-lt); }
.cart-drawer__empty p { font-size: .9rem; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-xlt);
  align-items: flex-start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  background: var(--purple-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: var(--purple-dk);
  letter-spacing: .06em; flex-shrink: 0; text-align: center; line-height: 1.3;
}
.cart-item__img-real { width: 72px; height: 72px; object-fit: contain; border-radius: var(--r-sm); flex-shrink: 0; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: .9rem; font-weight: 700; color: var(--blue); line-height: 1.3; }
.cart-item__price { font-size: 1rem; font-weight: 800; color: var(--purple); margin-top: 4px; }
.cart-item__qty { font-size: .75rem; color: var(--gray); margin-top: 2px; }
.cart-item__qty-ctrl { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.qty-btn {
  width: 30px; height: 30px; border: 1.5px solid #c5cde8; border-radius: 50%;
  background: #fff; color: var(--blue); font-size: .95rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, color .15s; padding: 0;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.qty-val { font-size: .9rem; font-weight: 700; color: var(--blue); min-width: 20px; text-align: center; }
/* Lixeira */
.qty-btn--remove {
  position: relative;
  border-color: transparent; color: #bbb; margin-left: 4px;
  font-size: .8rem; width: 28px; height: 28px; background: transparent;
}
.qty-btn--remove:hover { background: #fff0f0; border-color: #f5b8b8; color: #c0392b; }
.qty-btn--remove::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: #1a2552; color: #fff; font-size: .7rem; font-weight: 500;
  white-space: nowrap; padding: 4px 8px; border-radius: 6px;
  pointer-events: none; opacity: 0; transition: opacity .2s;
}
.qty-btn--remove:hover::after { opacity: 1; }

.cart-drawer__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--gray-lt);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
}
.cart-drawer__secure { font-size: .72rem; color: var(--gray); text-align: center; }
.cart-drawer__secure i { color: var(--green); margin-right: 4px; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0a1240; /* fallback enquanto o vídeo carrega */
}
/* Vídeo de fundo do hero — cobre todo o hero como background */
.hero__vid {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(.8);
}
.hero__vid--mobile {
  display: none;
  transform: scale(1.12);
  transform-origin: center center;
}
.hero__vid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(145deg, rgba(10,18,64,.72) 0%, rgba(42,24,112,.58) 60%, rgba(10,18,64,.65) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  /* Grid: coluna esquerda vazia + coluna direita com o texto */
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 72px 0 64px;
}

/* Swiper vai para a coluna da direita */
#hero-swiper {
  grid-column: 2;
  width: 100%;
  min-width: 0;
}
.hero__slide { color: #fff; padding-bottom: 56px; }
.hero__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.hero__stars i { color: var(--yellow); font-size: .78rem; }
.hero__stars span { font-size: .78rem; color: rgba(255,255,255,.72); font-weight: 500; }
.hero__slide h1 { color: #fff; margin: 0 0 16px; }
.hero__slide h1 em { color: var(--yellow); }
.hero__sub { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 32px; max-width: 560px; }
.hero__sub strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__pagination {
  position: absolute !important;
  bottom: 24px !important;
  left: 0 !important;
  right: 0 !important;
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  padding-left: 0;
}
.hero__pagination .swiper-pagination-bullet {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.35);
  opacity: 1;
  transition: background var(--t), width var(--t);
}
.hero__pagination .swiper-pagination-bullet-active {
  background: var(--yellow);
  width: 44px;
}

/* Hero email bar */
.hero__email-bar {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  padding: 14px 0;
}
.hero__email-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__email-bar__inner > span { font-size: .82rem; color: rgba(255,255,255,.72); white-space: nowrap; }
.hero__email-bar__inner i { color: var(--yellow); margin-right: 4px; }
.hero-email-form {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 280px;
}
.hero-email-form input {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .83rem;
  outline: none;
  transition: border-color var(--t), background var(--t);
  backdrop-filter: blur(8px);
}
.hero-email-form input::placeholder { color: rgba(255,255,255,.4); }
.hero-email-form input:focus { border-color: var(--yellow); background: rgba(255,255,255,.16); }
.hero-email-form button {
  padding: 10px 20px;
  border-radius: var(--r-full);
  background: var(--yellow);
  color: var(--blue);
  font-size: .82rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: filter var(--t), transform var(--t);
}
.hero-email-form button:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   PROMO SCROLL BAR
══════════════════════════════════════════════════════ */
.promo-scroll {
  background: var(--yellow);
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.promo-scroll__track { overflow: hidden; }
.promo-scroll__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  width: max-content;
  animation: scroll-left 28s linear infinite;
}
.promo-scroll:hover .promo-scroll__inner { animation-play-state: paused; }
.promo-scroll__inner span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
}
.promo-scroll__inner i { color: var(--purple-dk); margin-right: 6px; }
.promo-scroll__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .3;
  flex-shrink: 0;
}
.promo-scroll__disclaimer {
  text-align: center;
  font-size: .78rem;
  font-weight: 500;
  color: var(--blue, #1a2a6c);
  padding: 7px 16px 8px;
  margin: 0;
  letter-spacing: .02em;
  background: rgba(138,134,201,.08);
  border-top: 1px solid rgba(138,134,201,.18);
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   VIDEO SHOWCASE — full-width cinematic
══════════════════════════════════════════════════════ */
.section-video {
  background: #000;
  padding: 0;
  line-height: 0;
}

.video-showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Cinematic height — crops video to fill the space */
  max-height: 70vh;
}

.video-showcase__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  max-height: 70vh;
  /* Tratamento visual com menor saturação para integrar melhor o vídeo. */
  filter: brightness(.78) saturate(.85);
}

/* Vignette: darker at top and bottom edges */
.video-showcase__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,18,64,.35) 0%,
      transparent 20%,
      transparent 78%,
      rgba(10,18,64,.45) 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .video-showcase,
  .video-showcase__video { max-height: 52vh; }
}

/* ══════════════════════════════════════════════════════
   SECTIONS — shared
══════════════════════════════════════════════════════ */
.section { padding: 88px 0; }
.section--offers      { background: var(--off-white); }
.section--benefits    { background: var(--white); }
.section--ingredients { background: var(--blue); padding-bottom: 0; }
.section--how-to      { background: var(--off-white); }
.section--expert      { background: var(--white); }
.section--wa-cta      { background: var(--purple); }
.section--testimonials{ background: var(--off-white); }
.section--faq         { background: var(--white); }
.section--final-cta   {
  background: linear-gradient(135deg, var(--blue) 0%, #1d1060 50%, var(--purple-dk) 100%);
  text-align: center;
}

/* ══════════════════════════════════════════════════════
   OFFERS
══════════════════════════════════════════════════════ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 2px solid var(--gray-lt);
  position: relative;
  overflow: visible;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.offer-card:hover { border-color: var(--purple); box-shadow: 0 12px 40px rgba(138,134,201,.32); transform: translateY(-7px); }
.offer-card--featured {
  border-color: var(--purple);
  box-shadow: var(--sh-pu);
  transform: scale(1.03);
  background: linear-gradient(180deg, rgba(238,237,248,.5) 0%, var(--white) 100%);
}
.offer-card--featured:hover { transform: scale(1.03) translateY(-7px); box-shadow: 0 20px 56px rgba(138,134,201,.38); }
.offer-card--gold:hover { border-color: #d4960d; box-shadow: 0 12px 40px rgba(212,150,13,.28); transform: translateY(-7px); }

.offer-card__ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(138,134,201,.38);
  z-index: 2;
}
.offer-card__ribbon--gold { background: linear-gradient(135deg,#d4960d,#f0c63a); color: var(--blue); }

.offer-card__inner { padding: 28px 22px 24px; display: flex; flex-direction: column; gap: 18px; }

/* Product real images — offer cards */
.offer-card__media {
  display: flex;
  justify-content: center;
  padding: 20px 16px 4px;
}

/* Float keyframes */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

.product-imgs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 100%;
}

/* Kit 1 — single pote, centered */
.product-imgs--1 .product-img {
  height: 170px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(13,30,89,.18));
  animation: float-gentle 3.8s ease-in-out infinite;
}

/* Kit 2 — overlap via negative margin, no translateX */
.product-imgs--2 .product-img {
  height: 145px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(13,30,89,.15));
  flex-shrink: 0;
}
.product-imgs--2 .product-img:first-child {
  transform: rotate(-7deg) scale(.88);
  opacity: .78;
  z-index: 0;
  margin-right: -28px;
}
.product-imgs--2 .product-img:last-child {
  z-index: 1;
  animation: float-gentle 3.8s ease-in-out infinite;
}

/* Kit 3 — overlap via negative margin, no translateX */
.product-imgs--3 .product-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(13,30,89,.14));
  flex-shrink: 0;
}
.product-imgs--3 .product-img:nth-child(1) {
  transform: rotate(-10deg) scale(.84);
  opacity: .68;
  z-index: 0;
  margin-right: -26px;
}
.product-imgs--3 .product-img:nth-child(2) {
  height: 155px;
  z-index: 2;
  animation: float-gentle 3.8s ease-in-out infinite;
}
.product-imgs--3 .product-img:nth-child(3) {
  transform: rotate(10deg) scale(.84);
  opacity: .68;
  z-index: 0;
  margin-left: -26px;
}

/* Imagem composta dos kits. */
.product-imgs--kit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-img--kit {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 8px 24px rgba(13,30,89,.10));
  animation: float-gentle 4s ease-in-out infinite;
  background: #fff;
}

/* Hover: pause float */
.offer-card:hover .product-img,
.offer-card:hover .product-img--kit { animation-play-state: paused; }


.offer-card__body { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.offer-card__body h3 { font-size: 1.35rem; line-height: 1.1; }
.offer-card__tagline { font-size: .8rem; color: var(--gray); margin-top: -8px; }

.offer-card__price { text-align: center; }
.price-original { display: block; font-size: .82rem; color: var(--gray); text-decoration: line-through; }
.price-main { display: block; font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
.price-main small { font-size: 1.2rem; font-weight: 600; }
.price-per   { display: block; font-size: .73rem; color: var(--gray); margin-top: 2px; }
.price-save  {
  display: inline-block; margin-top: 6px;
  background: rgba(16,185,129,.1); color: var(--green);
  border: 1px solid rgba(16,185,129,.2);
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: .72rem; font-weight: 600;
}

.offers-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-size: .78rem;
  color: var(--gray);
  padding-top: 22px;
  border-top: 1px solid var(--gray-lt);
}
.offers-trust i { color: var(--purple); margin-right: 5px; }

/* ══════════════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════════════ */
.benefits-grid { display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 640px) { .benefits-grid { display: grid; grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(5, 1fr); } }

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  border-radius: var(--r-lg);
  background: var(--off-white);
  border: 1.5px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
@media (min-width: 1024px) { .benefit-item { flex-direction: column; gap: 12px; } }
.benefit-item:hover { border-color: rgba(138,134,201,.22); box-shadow: var(--sh-md); transform: translateY(-3px); }

.benefit-item__icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.benefit-item__icon--purple { background: rgba(138,134,201,.14); color: var(--purple); }
.benefit-item__icon--green  { background: rgba(16,185,129,.12);  color: var(--green); }
.benefit-item__icon--blue   { background: rgba(13,30,89,.08);    color: var(--blue); }
.benefit-item__icon--terra  { background: rgba(179,139,109,.14); color: var(--terra); }
.benefit-item__icon--yellow { background: rgba(252,237,146,.35); color: #9a7700; }
.benefit-item__body h3 { font-size: .95rem; margin-bottom: 5px; }
.benefit-item__body p  { font-size: .8rem; color: var(--gray); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   INGREDIENTS SWIPER
══════════════════════════════════════════════════════ */
.section--ingredients .section-header-row { padding: 0 48px; }
.section--ingredients .section-header-row__text .eyebrow { color: var(--yellow); background: rgba(252,237,146,.12); border: 1px solid rgba(252,237,146,.25); padding: 5px 14px; border-radius: var(--r-full); }
.section--ingredients .section-header-row__text h2 { color: #fff; }
.section--ingredients .section-header-row__text h2 em { color: var(--yellow); }
.section--ingredients .swiper-nav__btn { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; }
.section--ingredients .swiper-nav__btn:hover { background: var(--purple); border-color: var(--purple); }

.ingredients-swiper {
  padding: 28px 0 60px !important;
  overflow: visible !important;
}
.ingredients-swiper .swiper-wrapper { align-items: stretch; }

/* fix overflow clipping */
.section--ingredients { overflow: hidden; }
.ingredients-swiper { padding-left: 48px !important; }
@media (min-width: 640px) { .ingredients-swiper { padding-left: 80px !important; } }

/* Desktop: mostrar todos os cards lado a lado sem scroll */
@media (min-width: 1024px) {
  .ingredients-swiper {
    overflow: hidden !important;
    padding: 28px 48px 60px !important;
  }
  .ingredients-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    transform: none !important;
    gap: 16px;
    width: 100% !important;
  }
  .ingredients-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
  #ingredients-nav { display: none; }
}

/* ── Section header override for new unified section ── */
.section--ingredients .section-header h2 { color: #fff; }
.section--ingredients .section-header h2 em { color: var(--yellow); }
.section--ingredients .section-header .eyebrow { color: var(--yellow); background: rgba(252,237,146,.12); border: 1px solid rgba(252,237,146,.25); padding: 5px 14px; border-radius: var(--r-full); }

/* ── Benefits Accordion (ba-card) ── */
.benefits-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
  padding-bottom: 64px;
}
.ba-card {
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  transition: background .25s ease, border-color .25s ease;
}
.ba-card:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.2); }
.ba-card__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.ba-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
.ba-card__icon {
  font-size: 1.4rem;
  color: var(--yellow);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.ba-card__titles { min-width: 0; }
.ba-card__num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.ba-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.2;
}
.ba-card__sub {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.ba-card__plus {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
  width: 28px;
  text-align: center;
}
.ba-card__trigger[aria-expanded="true"] .ba-card__plus { transform: rotate(45deg); }
.ba-card__body {
  display: none;
  padding: 0 28px 24px 68px;
}
.ba-card__body.is-open { display: block; }
.ba-card__what {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin: 0 0 10px;
}
.ba-card__ingredients {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ba-card__ingredients li {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  padding-left: 16px;
  position: relative;
}
.ba-card__ingredients li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: .8rem;
}
.ba-card__ingredients li strong { color: #fff; }
.ba-card__result {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  background: rgba(252,237,146,.08);
  border-left: 3px solid var(--yellow);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin: 0;
}
.ba-card__result i { color: var(--yellow); margin-right: 6px; }
.ba-card__result strong { color: #fff; }

@media (max-width: 640px) {
  .ba-card__trigger { padding: 18px 20px; }
  .ba-card__body { padding: 0 20px 20px 20px; }
  .ba-card__title { font-size: 1rem; }
}

.ingredient-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 400px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ingredient-card { overflow: hidden; }
.ingredient-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(13,30,89,.18); }
.ingredient-card__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(.82) contrast(.92) brightness(.84);
  transition: transform .6s var(--ease);
}
.hover-wrapper:hover .ingredient-card__bg { transform: scale(1.06); }

/* Ingredient photos (01->05) com tratamento visual para legibilidade */
.ingredient-card__bg--1 { background-image: url('../images/ingredients/01-v2.jpeg'); }
.ingredient-card__bg--2 { background-image: url('../images/ingredients/02-v2.jpeg'); }
.ingredient-card__bg--3 { background-image: url('../images/ingredients/03-v2.jpeg'); }
.ingredient-card__bg--4 { background-image: url('../images/ingredients/04-v2.jpeg'); }
.ingredient-card__bg--5 { background-image: url('../images/ingredients/05-v2.jpeg'); }

.ingredient-card__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 14, 38, .36) 0%, rgba(9, 14, 38, .22) 42%, rgba(5, 10, 30, .68) 100%),
    linear-gradient(to top, rgba(5, 10, 30, .80) 0%, rgba(5, 10, 30, .34) 46%, transparent 78%);
}
.ingredient-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .48);
}
.ingredient-card__tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.ingredient-card__title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0; flex: 1; min-width: 0; }
.ingredient-card__desc  { font-size: .78rem; color: rgba(255,255,255,.72); line-height: 1.65; }

/* ── Card + button ── */
.ingredient-card__plus {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 300;
  color: #111;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.ingredient-card__plus:hover { background: var(--yellow); transform: scale(1.1); }

/* ── Ingredient modal ── */
.ingr-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.ingr-modal.is-open { opacity: 1; pointer-events: auto; }
.ingr-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}
.ingr-modal__panel {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 48px 52px;
  max-width: 680px; width: calc(100% - 40px);
  max-height: 88vh; overflow-y: auto;
  transform: translateY(24px);
  transition: transform .3s ease;
}
.ingr-modal.is-open .ingr-modal__panel { transform: translateY(0); }
.ingr-modal__close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: #f2f2f2; border: none; cursor: pointer;
  font-size: 1.1rem; color: #333;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.ingr-modal__close:hover { background: #e0e0e0; }
.ingr-modal__title {
  font-size: 2rem; font-weight: 700;
  color: var(--blue); margin: 0 0 6px;
}
.ingr-modal__sub {
  font-size: .95rem; color: #666; margin: 0 0 24px;
}
.ingr-modal__what {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: #999; margin: 0 0 12px;
}
.ingr-modal__list {
  list-style: disc; padding-left: 20px;
  margin: 0 0 20px; display: flex; flex-direction: column; gap: 12px;
}
.ingr-modal__list li { font-size: .95rem; color: #333; line-height: 1.55; }
.ingr-modal__list li strong { color: #111; }
.ingr-modal__result {
  font-size: .9rem; color: #444;
  border-left: 3px solid var(--blue);
  padding: 10px 16px;
  background: #f7f8ff;
  border-radius: 0 8px 8px 0;
  margin: 0;
}
.ingr-modal__result strong { color: var(--blue); }
@media (max-width: 640px) {
  .ingr-modal__panel { padding: 36px 24px; }
  .ingr-modal__title { font-size: 1.5rem; }
}
.ingredient-card__list {
  list-style: none; padding: 0; margin: 10px 0 12px;
  display: flex; flex-direction: column; gap: 7px;
}
.ingredient-card__list li {
  font-size: .76rem; color: rgba(255,255,255,.75); line-height: 1.45;
  padding-left: 14px; position: relative;
}
.ingredient-card__list li::before { content: '→'; position: absolute; left: 0; color: var(--yellow); }
.ingredient-card__list li strong { color: #fff; }
.ingredient-card__result {
  font-size: .74rem; color: rgba(255,255,255,.7);
  border-left: 2px solid var(--yellow);
  padding: 6px 10px; margin: 0;
  background: rgba(252,237,146,.08);
  border-radius: 0 6px 6px 0;
}
.ingredient-card__result i { color: var(--yellow); margin-right: 5px; }

/* ══════════════════════════════════════════════════════
   HOW TO USE
══════════════════════════════════════════════════════ */
.how-to-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.how-to-text .eyebrow { background: rgba(138,134,201,.1); border: 1px solid rgba(138,134,201,.2); padding: 5px 14px; border-radius: var(--r-full); }
.how-to-text h2 { margin-bottom: 28px; }

.steps-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 24px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-item__num {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: rgba(138,134,201,.5);
  padding-top: 3px;
  flex-shrink: 0;
  width: 24px;
}
.step-item__body h4 { font-size: .92rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.step-item__body h4 i { color: var(--purple); margin-right: 7px; }
.step-item__body p  { font-size: .82rem; color: var(--gray); line-height: 1.7; }
.step-bullets { margin: 6px 0 6px 16px; padding: 0; font-size: .82rem; color: var(--gray); line-height: 1.8; }
.step-bullets li { list-style: disc; }
.step-note { font-size: .78rem; color: var(--gray); font-style: italic; margin-top: 4px; }

.step-saber-mais {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  background: none; border: 1px solid var(--purple);
  color: var(--purple); font-size: .8rem; font-weight: 700;
  padding: 5px 12px; border-radius: var(--r-full);
  cursor: pointer; transition: background var(--t), color var(--t);
}
.step-saber-mais:hover { background: var(--purple); color: #fff; }
.step-saber-mais__icon {
  font-size: 1rem; font-weight: 900; line-height: 1;
  transition: transform .25s;
  display: inline-block;
}
.step-saber-mais[aria-expanded="true"] .step-saber-mais__icon { transform: rotate(45deg); }
.step-saber-mais__content {
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(138,134,201,.08);
  border-left: 3px solid var(--purple);
  border-radius: 0 8px 8px 0;
  font-size: .8rem; color: var(--gray); line-height: 1.75;
}
.step-saber-mais__content p + p { margin-top: 8px; }

.how-to-uses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}
.how-to-uses[hidden] {
  display: none !important;
}
.use-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px;
  border-radius: var(--r-full);
  background: var(--white);
  border: 1px solid var(--gray-lt);
  font-size: .77rem; font-weight: 600; color: var(--blue);
  transition: background var(--t), border-color var(--t), color var(--t);
}
.use-tag:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.use-tag i { color: var(--purple); font-size: .8rem; transition: color var(--t); }
.use-tag:hover i { color: var(--yellow); }
button.use-tag { cursor: pointer; font-family: inherit; }

/* Drink video modal */
.drink-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drink-modal.is-open { opacity: 1; pointer-events: all; }
.drink-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
}
.drink-modal__panel {
  position: relative; z-index: 1;
  background: var(--blue-dk, #0a1540);
  border-radius: 16px;
  padding: 24px 20px 20px;
  width: min(90vw, 420px);
  text-align: center;
  transform: scale(.95); transition: transform .25s;
}
.drink-modal.is-open .drink-modal__panel { transform: scale(1); }
.drink-modal__close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; color: #fff;
  font-size: 1.4rem; cursor: pointer; line-height: 1; opacity: .7;
}
.drink-modal__close:hover { opacity: 1; }
.drink-modal__label {
  color: var(--yellow); font-weight: 700; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.drink-modal__video-wrap { position: relative; border-radius: 10px; overflow: hidden; background: #000; aspect-ratio: 9/16; max-height: 60vh; }
.drink-modal__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.drink-modal__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: rgba(255,255,255,.5);
}
.drink-modal__placeholder i { font-size: 2.5rem; }
.drink-modal__placeholder p { font-size: .85rem; }

/* Product block */
.how-to-visual { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.how-to-product-wrap { width: 100%; display: flex; justify-content: center; }
.how-to-product-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 56px rgba(13,30,89,.22));
  margin: 0 auto;
  display: block;
  animation: float-gentle 4.2s ease-in-out infinite;
}

.how-to-badges {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.how-to-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: var(--white);
  border: 1px solid var(--gray-lt);
  font-size: .75rem; font-weight: 600; color: var(--blue);
  box-shadow: var(--sh-sm);
}
.how-to-badge i { color: var(--green); }

/* ══════════════════════════════════════════════════════
   EXPERT
══════════════════════════════════════════════════════ */
.expert-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 34px;
  align-items: flex-start;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 34px;
  border: 1.5px solid rgba(138,134,201,.1);
  position: relative;
  overflow: hidden;
}
.expert-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--purple), var(--blue));
}
.expert-card__media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.expert-card__video-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0d1e59;
  border: 1px solid rgba(138,134,201,.2);
  box-shadow: 0 16px 36px rgba(13,30,89,.18);
  aspect-ratio: 9 / 16;
}
.expert-card__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-card__video-wrap .plyr {
  --plyr-color-main: #8a86c9;
  --plyr-video-control-color: #ffffff;
  --plyr-video-control-color-hover: #ffffff;
  --plyr-video-control-background-hover: rgba(138, 134, 201, .28);
  --plyr-range-fill-background: #8a86c9;
  --plyr-audio-control-background-hover: rgba(138, 134, 201, .22);
  border-radius: 24px;
  overflow: hidden;
}
.expert-card__video-wrap .plyr__control--overlaid {
  min-width: 108px;
  min-height: 108px;
  width: 108px;
  height: 108px;
  padding: 0 !important;
  background: linear-gradient(135deg, #8a86c9 0%, #6f6ac2 100%);
  box-shadow: 0 18px 36px rgba(13, 30, 89, .44);
  border: 0;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: 1 / 1;
}
.expert-card__video-wrap .plyr__control--overlaid:hover {
  background: linear-gradient(135deg, #9691dd 0%, #7c76d3 100%);
}
.expert-card__video-wrap .plyr--video .plyr__controls {
  background: linear-gradient(180deg, rgba(10, 20, 68, 0) 0%, rgba(10, 20, 68, .82) 100%);
  gap: 6px;
  align-items: center;
  flex-wrap: nowrap;
}
.expert-card__video-wrap .plyr__controls .plyr__progress__container,
.expert-card__video-wrap .plyr__controls .plyr__controls__item.plyr__progress__container {
  flex: 1 1 auto;
  min-width: 0;
}
.expert-card__video-wrap .plyr__controls .plyr__volume {
  display: flex !important;
  position: relative;
  width: auto;
  min-width: 0;
  max-width: none;
  overflow: visible;
}
.expert-card__video-wrap .plyr__controls .plyr__volume input[type='range'] {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  width: 92px;
  min-width: 92px;
  max-width: 92px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 12;
  background: rgba(10, 20, 68, .92);
  border-radius: 999px;
  padding: 2px 0;
  transition: opacity .2s ease;
}
.expert-card__video-wrap .plyr__controls .plyr__volume:hover input[type='range'],
.expert-card__video-wrap .plyr__controls .plyr__volume:focus-within input[type='range'],
.expert-card__video-wrap .plyr__controls .plyr__volume input[type='range']:focus {
  opacity: 1;
  pointer-events: auto;
}
.expert-card__video-wrap .plyr__controls .plyr__controls__item[data-plyr='settings'],
.expert-card__video-wrap .plyr__controls .plyr__controls__item[data-plyr='airplay'],
.expert-card__video-wrap .plyr__controls .plyr__controls__item[data-plyr='pip'],
.expert-card__video-wrap .plyr__controls .plyr__menu {
  display: none !important;
}
.expert-card__video-wrap .plyr__controls .plyr__time {
  min-width: 48px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.expert-card__video-wrap .plyr__control {
  border-radius: 10px;
}
/* Hard-stop for legacy duplicated avatar under the expert video */
.expert-card--feature > .expert-card__avatar,
.expert-card__media > .expert-card__avatar,
.expert-card__media > .expert-card__avatar--photo,
.expert-card__media > img {
  display: none !important;
}
.expert-card__avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.expert-card__avatar > i {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--purple-lt);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  border: 3px solid rgba(138,134,201,.18);
}
.expert-card__avatar--photo {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}
.expert-card__avatar--photo img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(138,134,201,.24);
  box-shadow: 0 10px 20px rgba(13,30,89,.14);
}
.expert-card__cert {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--purple-dk);
  background: var(--purple-lt);
  padding: 4px 12px;
  border-radius: var(--r-full);
  text-align: center;
}
.expert-card__profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(138,134,201,.18);
  background: linear-gradient(135deg, rgba(245,245,255,.95) 0%, rgba(240,238,252,.78) 100%);
}
.expert-card__profile > img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(138,134,201,.24);
  box-shadow: 0 8px 18px rgba(13,30,89,.12);
  flex-shrink: 0;
}
.expert-card__profile-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.expert-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.expert-card__profile-meta .expert-card__cert {
  align-self: flex-start;
  margin-top: 8px;
}
.expert-card__qmark {
  font-size: 2.2rem;
  color: rgba(138,134,201,.2);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.expert-card__quote blockquote {
  font-size: .98rem;
  font-style: normal;
  line-height: 1.75;
  color: var(--blue);
  margin-bottom: 14px;
}
.expert-card__quote blockquote p {
  margin: 0 0 12px;
}
.expert-card__quote blockquote p:last-child {
  margin-bottom: 0;
}
.expert-card__info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: 0;
}
.expert-card__profile-meta > span:not(.expert-card__cert) {
  display: block;
  font-size: .84rem;
  color: var(--gray);
  margin-bottom: 0;
}
.expert-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.expert-card__tags span {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  color: var(--purple-dk);
  background: var(--purple-lt);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin: 0;
  white-space: nowrap;
}
.expert-card__tags i { color: var(--green); margin-right: 4px; }

/* ══════════════════════════════════════════════════════
   WA CTA
══════════════════════════════════════════════════════ */
.wa-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.wa-cta__text h2 { color: #fff; margin-bottom: 8px; }
.wa-cta__text h2 em { color: var(--yellow); }
.wa-cta__text p { color: rgba(255,255,255,.75); font-size: .93rem; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.section--testimonials .section-header-row { padding-bottom: 0; }

.testimonials-swiper {
  padding: 20px 0 44px !important;
  overflow: visible !important;
}
.section--testimonials .section-header-row[hidden],
.section--testimonials .testimonials-swiper[hidden] {
  display: none !important;
}
.section--testimonials > .testimonials-swiper[hidden] + .page-width .text-reviews-grid {
  margin-top: 0;
}
.testimonials-swiper { padding-left: 48px !important; }
@media (min-width: 640px) { .testimonials-swiper { padding-left: 80px !important; } }
.section--testimonials { overflow: hidden; }
.testimonials-swiper .swiper-slide { height: auto; }
.text-review--slide { height: 100%; }

.video-testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-testimonial__thumb {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 320px;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
}
.video-testimonial__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s var(--ease);
}
.video-testimonial__thumb:hover .video-testimonial__bg { transform: scale(1.04); }

/* UGC video bg placeholders */
.video-testimonial__bg--1 { background: linear-gradient(150deg,#0D1E59,var(--purple-dk)); }
.video-testimonial__bg--2 { background: linear-gradient(150deg,#1a3a6a,#4a80c0); }
.video-testimonial__bg--3 { background: linear-gradient(150deg,#2a1870,var(--purple)); }
.video-testimonial__bg--4 { background: linear-gradient(150deg,#0a2040,#1a5040); }

.video-testimonial__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 50%, transparent 100%);
}
.video-testimonial__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 3.2rem;
  color: rgba(255,255,255,.82);
  z-index: 2;
  transition: color var(--t), transform var(--t);
  background: none; border: 0;
}
.video-testimonial__thumb:hover .video-testimonial__play { color: #fff; transform: translate(-50%,-50%) scale(1.1); }
.video-testimonial__info {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  color: #fff;
}
.video-testimonial__info strong { display: block; font-size: .9rem; font-weight: 700; }
.video-testimonial__info span   { font-size: .72rem; opacity: .75; }
.video-testimonial__info i { margin-right: 3px; }

.video-testimonial__controls {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 8px 12px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
}
.video-testimonial__controls.hidden { display: none; }
.vtc-progress {
  height: 3px; background: rgba(255,255,255,.25); border-radius: 2px;
  margin-bottom: 7px; cursor: pointer; position: relative;
}
.vtc-progress__bar {
  height: 100%; width: 0%; background: var(--yellow); border-radius: 2px;
  transition: width .1s linear;
  pointer-events: none;
}
.vtc-actions { display: flex; align-items: center; gap: 10px; }
.vtc-btn { background: none; border: 0; color: rgba(255,255,255,.8); font-size: .85rem; cursor: pointer; padding: 2px; transition: color var(--t); }
.vtc-btn:hover { color: #fff; }
.vtc-time { font-size: .65rem; color: rgba(255,255,255,.65); margin-left: auto; }

.video-testimonial__text .stars { margin-bottom: 6px; }
.video-testimonial__text p { font-size: .83rem; color: var(--gray); line-height: 1.7; font-style: italic; }

.testimonials-pagination {
  bottom: 8px !important;
  display: flex; justify-content: flex-start;
  padding-left: 48px !important;
}
@media (min-width: 640px) { .testimonials-pagination { padding-left: 80px !important; } }
.testimonials-pagination .swiper-pagination-bullet {
  background: var(--gray-lt); opacity: 1; width: 8px; height: 8px;
}
.testimonials-pagination .swiper-pagination-bullet-active { background: var(--purple); }

/* Text reviews grid */
.text-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 48px;
}
.text-review {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px;
  border: 1.5px solid var(--gray-lt);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.text-review:hover { border-color: rgba(138,134,201,.25); box-shadow: var(--sh-md); transform: translateY(-3px); }
.text-review__stars {
  margin-bottom: 10px;
  color: #f5a623;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  flex-wrap: wrap;
}
.text-review > p { font-size: .83rem; color: var(--gray); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.text-review__author { display: flex; align-items: center; gap: 10px; }
.text-review__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--av, var(--purple));
  color: #fff; font-size: .88rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(138,134,201,.24);
}
.text-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.text-review__author strong { display: block; font-size: .84rem; color: var(--blue); }
.text-review__author span   { display: block; font-size: .72rem; color: var(--gray); }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { border-top: 1px solid var(--gray-lt); margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid var(--gray-lt); }
.faq-item__q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 20px 0;
  font-size: .9rem; font-weight: 600; color: var(--blue);
  background: none; gap: 16px; text-align: left; cursor: pointer;
  transition: color var(--t);
}
.faq-item__q:hover { color: var(--purple); }
.faq-item__icon { flex-shrink: 0; color: var(--purple); font-size: .78rem; transition: transform var(--t); }
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { padding-bottom: 18px; }
.faq-item__a p { font-size: .85rem; color: var(--gray); line-height: 1.8; }
.faq-item__a ul { margin: 6px 0 0 18px; padding: 0; }
.faq-item__a ul li { font-size: .85rem; color: var(--gray); line-height: 1.8; list-style: disc; }
.faq-warnings {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0;
}
.faq-warnings__title {
  font-size: .75rem; font-weight: 600; color: var(--gray);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
  opacity: .6;
}
.faq-warnings__title i { font-size: .7rem; }
.faq-warnings__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 5px; }
.faq-warnings__list li {
  font-size: .78rem; color: var(--gray); line-height: 1.6; opacity: .65;
  padding-left: 14px; position: relative;
}
.faq-warnings__list li::before {
  content: '·'; position: absolute; left: 0; color: var(--gray);
}

.faq-contact { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.faq-contact > p { font-size: .88rem; color: var(--gray); }
.faq-contact > div, .faq-contact { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* ══════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════ */
.final-cta-inner { max-width: 580px; margin: 0 auto; }
.section--final-cta h2 { color: #fff; margin-bottom: 12px; }
.section--final-cta h2 em { color: var(--yellow); }
.section--final-cta p { color: rgba(255,255,255,.72); margin-bottom: 28px; font-size: .95rem; }
.final-cta__sub {
  display: block; margin-top: 16px;
  font-size: .75rem; color: rgba(255,255,255,.45);
}
.final-cta__sub i { margin-right: 4px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer-newsletter {
  background: var(--blue-xlt);
  border-top: 1px solid rgba(138,134,201,.14);
  padding: 44px 0;
}
.footer-newsletter__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-newsletter__text h3 { font-size: 1.1rem; color: var(--blue); margin-bottom: 4px; }
.footer-newsletter__text p  { font-size: .82rem; color: var(--gray); }
.footer-newsletter__form {
  display: flex; gap: 10px; flex: 1; min-width: 280px;
}
.footer-newsletter__form input {
  flex: 1; padding: 11px 16px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--gray-lt);
  font-size: .85rem; outline: none;
  transition: border-color var(--t);
}
.footer-newsletter__form input:focus { border-color: var(--purple); }

.footer-main { background: var(--dark); padding: 60px 0 40px; }
.footer-main__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-col--brand .logo-text { color: #fff; }
.footer-col--brand p { font-size: .82rem; color: rgba(255,255,255,.45); margin: 12px 0 18px; line-height: 1.7; }
.footer__logo { display: inline-block; margin-bottom: 10px; }
.footer__logo-img { width: 120px; height: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  transition: background var(--t), color var(--t), transform var(--t);
}
.footer-socials a:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }

/* Footer accordion */
.footer-accordion summary {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px; cursor: pointer; list-style: none;
}
.footer-accordion summary::-webkit-details-marker { display: none; }
.footer-accordion .footer-accordion__icon { font-size: .7rem; transition: transform var(--t); }
.footer-accordion[open] .footer-accordion__icon { transform: rotate(45deg); }
.footer-accordion ul { display: flex; flex-direction: column; gap: 10px; }
.footer-accordion li a { font-size: .82rem; color: rgba(255,255,255,.58); transition: color var(--t); }
.footer-accordion li a:hover { color: var(--purple-lt); }

.footer-bottom {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
}
.footer-bottom__inner {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: .73rem; color: rgba(255,255,255,.64);
}
.footer-payments { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); }
.footer-payments i { opacity: .95; }

/* ══════════════════════════════════════════════════════
   STICKY BUY BAR (mobile)
══════════════════════════════════════════════════════ */
.sticky-buy-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(13,30,89,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 0;
  z-index: 150;
  transform: translateY(100%);
  transition: transform .3s var(--ease);
  display: none;
}
.sticky-buy-bar.is-visible { transform: translateY(0); }
@media (max-width: 767px) { .sticky-buy-bar { display: block; } }
.sticky-buy-bar__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.sticky-buy-bar__name { font-size: .8rem; font-weight: 700; color: #fff; }
.sticky-buy-bar__price { font-size: .72rem; color: rgba(255,255,255,.6); }
.sticky-buy-bar__price strong { color: var(--yellow); }


/* ══════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════ */
.toast-container { position: fixed; bottom: 80px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast {
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: .84rem; font-weight: 600;
  color: #fff;
  box-shadow: var(--sh-lg);
  transform: translateX(20px);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  max-width: 280px;
  pointer-events: none;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast--ok  { background: var(--green); }
.toast--err { background: #DC2626; }
.toast--info { background: var(--blue); }

/* Add-to-cart loading */
.add-to-cart.is-loading { opacity: .75; pointer-events: none; }
.add-to-cart.is-loading::after {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .65s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .offers-grid { gap: 14px; }
  .offer-card--featured { transform: scale(1.015); }
  .text-reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-main__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .how-to-inner { gap: 40px; }
  .expert-card { grid-template-columns: minmax(240px, 320px) 1fr; gap: 24px; padding: 28px; }
  .wa-cta-inner { flex-direction: column; text-align: center; }
  .section--ingredients .section-header-row,
  .ingredients-swiper { padding-left: 32px !important; }
  .testimonials-swiper, .testimonials-pagination { padding-left: 32px !important; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 768px
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --hdr: 66px; --ann: 36px; }
  .section { padding: 60px 0; }

  /* Header */
  .site-header__nav { display: none !important; }

  /* Announce bar */
  .announce-bar__inner { font-size: .66rem; }
  .announce-bar__inner > span { padding: 0 8px; }

  /* Hero */
  .hero__vid--desktop { display: none; }
  .hero__vid--mobile {
    display: block;
    filter: brightness(.52) saturate(.9);
  }
  .hero__vid-overlay {
    background: linear-gradient(180deg, rgba(8,14,46,.68) 0%, rgba(32,23,86,.56) 48%, rgba(8,14,46,.76) 100%);
  }
  .hero__content { grid-template-columns: 1fr; padding: 44px 20px 40px; }
  #hero-swiper { grid-column: 1; }
  .hero__slide h1 { font-size: 1.75rem; line-height: 1.2; }
  .hero__sub { font-size: .85rem; line-height: 1.65; margin-bottom: 24px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__email-bar__inner { flex-direction: column; align-items: flex-start; }
  .hero-email-form { width: 100%; min-width: 0; }

  /* Promo scroll font */
  .promo-scroll__inner span { font-size: .68rem; }

  /* Offers */
  .offers-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 24px; }
  .offer-card--featured { transform: none; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Ingredients */
  .section--ingredients .section-header-row { flex-direction: column; align-items: flex-start; padding: 0 20px; }
  .ingredients-swiper, .testimonials-swiper,
  .testimonials-pagination { padding-left: 20px !important; }

  /* How to */
  .how-to-inner { grid-template-columns: 1fr; gap: 36px; }
  .how-to-visual { margin-top: 32px; }
  .how-to-product-img { max-width: 260px; }

  .stars,
  .text-review__stars {
    gap: 5px;
    font-size: .88rem;
  }

  /* Expert */
  .expert-card { grid-template-columns: 1fr; gap: 18px; text-align: left; padding: 22px 18px; }
  .expert-card__quote { display: flex; flex-direction: column; }
  .expert-card__info { order: 1; margin-bottom: 12px; }
  .expert-card__qmark { order: 2; margin-bottom: 8px; }
  .expert-card__quote blockquote { order: 3; margin-bottom: 0; }
  .expert-card__tags { justify-content: flex-start; }
  .expert-card__avatar { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
  .expert-card__avatar--photo img { width: 74px; height: 74px; }
  .expert-card__profile { gap: 10px; }
  .expert-card__profile > img { width: 54px; height: 54px; }
  .expert-card__video-wrap .plyr__control--overlaid {
    min-width: 88px;
    min-height: 88px;
    width: 88px;
    height: 88px;
  }
  .expert-card__video-wrap .plyr__controls .plyr__time { font-size: .75rem; min-width: 42px; white-space: nowrap; }
  .expert-card__video-wrap .plyr--video .plyr__controls {
    gap: 4px;
    padding: 8px 8px 6px;
  }
  .expert-card__video-wrap .plyr__controls .plyr__volume input[type='range'] {
    width: 82px;
    min-width: 82px;
    max-width: 82px;
    bottom: calc(100% + 6px);
  }

  /* WA CTA */
  .section--wa-cta { padding: 52px 0; }

  /* Testimonials */
  .text-reviews-grid { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }

  /* FAQ */
  .faq-contact { flex-direction: column !important; }

  /* Footer */
  .footer-newsletter__inner { flex-direction: column; }
  .footer-newsletter__form { min-width: 0; width: 100%; }
  .footer-main__grid { grid-template-columns: 1fr; }
  .footer-accordion[open] { } /* keep open by default */
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-payments { justify-content: center; }

  .toast-container { bottom: 90px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Small ≤ 480px
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .offers-trust { flex-direction: column; align-items: center; gap: 6px; }
}


