/* ============================================================
   Protocolo 5D · Dieta Metabólica — style.css
   Design System: roxo escuro + rosa + âmbar
   ============================================================ */

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

:root {
  --bg:          #160227;
  --bg-mid:      #2A0745;
  --bg-card:     #26063F;
  --bg-card2:    #3A0B5B;
  --rose:        #FF2E8B;
  --rose-dark:   #FF1E4D;
  --rose-light:  #FF74B4;
  --rose-pale:   #FFC1DD;
  --amber:       #FFC94D;
  --amber-light: #FFE3A6;
  --purple-text: #E7D4F5;
  --purple-mid:  #D9C4EC;
  --purple-dim:  #C9A9E0;
  --purple-faint:#E0CDF0;
  --green:       #25D366;
  --white:       #ffffff;
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --shadow-card: 0 20px 50px rgba(0,0,0,.5);
  --shadow-glow: 0 0 60px rgba(255,46,139,.2);
  --transition:  0.25s ease;
  --font-body:   'Montserrat', sans-serif;
  --font-head:   'Poppins', sans-serif;
  --font-display:'Anton', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: var(--rose-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose); }
::selection { background: var(--rose); color: var(--white); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.02; text-transform: uppercase; }
h1 { font-size: clamp(36px, 5vw, 66px); }
h2 { font-size: clamp(28px, 3.8vw, 48px); }
h3 { font-size: clamp(20px, 2vw, 24px); }

/* ---------- LAYOUT UTILS ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.container--center { max-width: 960px; margin: 0 auto; padding: 0 20px; text-align: center; }

section { padding: 88px 20px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- SECTION LABELS ---------- */
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 16px;
}
.label--amber { color: var(--bg); background: var(--amber); padding: 7px 14px; border-radius: 100px; }
.label--green { color: var(--bg); background: var(--green); padding: 8px 15px; border-radius: 100px; }
.label--pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,46,139,.16);
  border: 1px solid rgba(255,116,180,.5);
  color: var(--rose-pale);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 27px);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
  padding: 20px 36px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  text-align: center;
  animation: pulseCta 2.4s ease-in-out infinite;
  transition: filter var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after { transform: translateX(100%); }
.btn:hover { filter: brightness(1.1); transform: translateY(-2px); color: var(--white); animation-play-state: paused; }
.btn--block { display: block; width: 100%; padding: 24px 20px; font-size: clamp(22px, 3vw, 32px); border-radius: var(--radius-lg); }
.btn--sticky { font-size: 18px; padding: 14px 26px; border-radius: 12px; animation: none; }
.btn--sticky:hover { filter: brightness(1.12); transform: none; }

/* ---------- ANIMATIONS ---------- */
@keyframes pulseCta {
  0%   { box-shadow: 0 12px 30px rgba(255,30,77,.45); }
  50%  { box-shadow: 0 18px 46px rgba(255,30,77,.65); transform: scale(1.03); }
  100% { box-shadow: 0 12px 30px rgba(255,30,77,.45); }
}
@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HERO ---------- */
#hero {
  position: relative;
  background: radial-gradient(120% 90% at 50% 0%, #4A0F73 0%, #2A0745 45%, #160227 100%);
  padding: 0 20px 0;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  top: -120px;
  right: -140px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255,46,139,.35), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
}
.hero__orb2 {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(74,15,115,.5), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.hero__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content { padding: 36px 0 40px; }
.hero__title {
  font-size: clamp(19px, 2.1vw, 31px);
  letter-spacing: .005em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.hero__title span { color: #FF3D93; }
.hero__subtitle { font-size: clamp(14px,1.1vw,16px); line-height: 1.55; color: var(--purple-text); font-weight: 500; max-width: 460px; margin-bottom: 12px; }
.hero__hook { font-size: clamp(14px,1.2vw,18px); line-height: 1.4; font-weight: 800; max-width: 460px; margin-bottom: 20px; }
.hero__hook span { color: var(--amber); }
.hero__hook span.rose { color: var(--rose-light); }

.hero__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero__price { line-height: 1.1; }
.hero__price-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--purple-dim); text-transform: uppercase; }
.hero__price-value { font-family: var(--font-display); font-size: 30px; color: var(--amber); }

.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-mid);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 14px;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition);
}
.badge:hover { background: rgba(255,255,255,.12); border-color: rgba(255,116,180,.4); }

.hero__date {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,201,77,.1);
  border: 1px solid rgba(255,201,77,.35);
  border-radius: 12px;
  padding: 12px 18px;
}
.hero__date span { font-size: 15px; font-weight: 700; color: var(--amber-light); }

.hero__img-wrap { align-self: end; position: relative; }
.hero__img-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  height: 78%;
  background: radial-gradient(circle, rgba(255,46,139,.4), transparent 70%);
  filter: blur(12px);
}
.hero__img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.5));
  animation: none !important;
}
.hero__footer {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-dim);
}
.hero__footer strong { color: var(--white); }

/* ---------- SECTION: PROBLEMA ---------- */
#problema { background: var(--bg); }
.problema__img-wrap { position: relative; }
.problema__caption {
  background: linear-gradient(90deg, #FF2E8B, #FF1E4D);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 14px;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  letter-spacing: .02em;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,30,77,.35);
}
.problema__img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.highlight { color: #FF3D93; }
.text-amber { color: var(--amber); }
.text-white { color: var(--white); }
.quote-bar { font-size: 21px; line-height: 1.4; font-weight: 800; border-left: 5px solid var(--rose); padding-left: 18px; }
.body-text { font-size: 18px; line-height: 1.65; color: var(--purple-faint); margin-bottom: 16px; }

/* ---------- SECTION: BARRIGA PERSISTENTE ---------- */
#barriga-persistente { background: linear-gradient(180deg, #2A0745, #160227); }
.barriga__caption {
  background: rgba(74,15,115,.92);
  border: 1px solid rgba(255,116,180,.5);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 14px;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  color: var(--white);
}
.stat-box {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,116,180,.35);
  border-radius: 16px;
  padding: 18px 26px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.stat-box:hover { border-color: rgba(255,116,180,.6); box-shadow: 0 10px 30px rgba(255,46,139,.15); }
.stat-num { font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); color: var(--amber); line-height: 1; }
.stat-desc { font-size: 16px; font-weight: 700; color: var(--purple-text); max-width: 240px; }

/* ---------- SECTION: SOLUÇÃO ---------- */
#solucao { background: var(--bg); }
.feature-cards { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: linear-gradient(160deg, var(--bg-card2), var(--bg-card));
  border: 1px solid rgba(255,116,180,.2);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,116,180,.5);
  box-shadow: 0 20px 40px rgba(255,46,139,.15);
}
.card__icon { font-size: 36px; margin-bottom: 16px; }
.card__title { color: var(--amber); margin-bottom: 10px; font-size: 20px; }
.card__text { font-size: 16px; line-height: 1.6; color: var(--purple-mid); }

/* ---------- SECTION: ENTREGÁVEIS ---------- */
#entregaveis { background: linear-gradient(180deg, #160227, #2A0745); }
.deliverables { display: flex; flex-direction: column; gap: 14px; }
.deliverable {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.deliverable:hover { background: rgba(255,255,255,.08); border-color: rgba(255,116,180,.3); transform: translateX(4px); }
.deliverable--highlight { background: rgba(255,46,139,.1); border-color: rgba(255,116,180,.35); }
.deliverable__num {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}
.deliverable__num--green { background: linear-gradient(135deg, var(--green), #128C4B); font-size: 20px; }
.deliverable__num--amber { background: linear-gradient(135deg, var(--amber), #FF9A3D); font-size: 20px; }
.deliverable__text { font-size: 17px; line-height: 1.55; font-weight: 600; color: #F3E9FB; }
.deliverable__text strong { color: var(--white); }

/* ---------- SECTION: PROVA SOCIAL (ANTES/DEPOIS) ---------- */
#resultados { background: var(--bg); }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.result-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,116,180,.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.result-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,.55); }
.result-card img { width: 100%; height: auto; display: block; }
.result-card__label {
  background: linear-gradient(90deg, var(--rose), #FF1E77);
  padding: 14px 16px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--white);
}
.result-card__label span { color: var(--amber-light); }

/* ---------- SECTION: CANETINHA ---------- */
#canetinha { background: linear-gradient(180deg, #2A0745, #160227); }
.canetinha__img-wrap { position: relative; }
.canetinha__tag {
  background: rgba(74,15,115,.92);
  border: 1px solid rgba(255,116,180,.5);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 14px;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  color: var(--white);
}
.alert-box {
  background: rgba(255,30,77,.12);
  border: 1px solid rgba(255,116,180,.4);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 16px;
}
.alert-box p { font-size: 18px; line-height: 1.45; font-weight: 800; }

/* ---------- SECTION: GUARDIÕES ---------- */
#guardioes { background: var(--bg); }
.guardiao-card {
  background: linear-gradient(160deg, var(--bg-card2), var(--bg-card));
  border: 1px solid rgba(255,116,180,.2);
  border-radius: 20px;
  padding: 30px 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.guardiao-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,116,180,.5);
  box-shadow: 0 20px 40px rgba(255,46,139,.15);
}
.guardiao-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}
.guardiao-card h3 { color: var(--white); margin-bottom: 6px; }
.guardiao-card__sub { font-size: 14px; font-weight: 800; color: var(--amber); margin-bottom: 18px; }
.guardiao-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.guardiao-card li { font-size: 15px; line-height: 1.45; color: var(--purple-mid); }
.guardiao-card li::before { content: '✔ '; color: var(--green); font-weight: 800; }

/* ---------- SECTION: SEGURANÇA ---------- */
#seguranca { background: linear-gradient(180deg, #160227, #2A0745); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.check-list li { display: flex; gap: 14px; font-size: 17px; font-weight: 600; color: #F3E9FB; align-items: flex-start; }
.check-list li .check { color: var(--green); font-weight: 800; font-size: 18px; flex-shrink: 0; }

/* ---------- SECTION: COMENTÁRIOS ---------- */
#comentarios { background: var(--bg); }
.comments-masonry { columns: 340px; column-gap: 18px; }
.comment-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.comment-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 20px 40px rgba(0,0,0,.45); }
.comment-card img { width: 100%; display: block; border-radius: 8px; }

/* ---------- SECTION: OFERTA FINAL ---------- */
#oferta {
  background: radial-gradient(120% 80% at 50% 0%, #4A0F73, #2A0745 55%, #160227);
  padding: 90px 20px;
}
.offer-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.offer-box__img { width: 240px; margin: 0 auto 24px; filter: drop-shadow(0 18px 34px rgba(0,0,0,.55)); }
.timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,30,77,.16);
  border: 1px solid rgba(255,116,180,.5);
  color: var(--rose-pale);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.price-card {
  background: linear-gradient(165deg, var(--bg-card2), #220540);
  border: 2px solid rgba(255,46,139,.45);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: 0 30px 70px rgba(0,0,0,.55), var(--shadow-glow);
  margin-top: 10px;
}
.price-card__badge {
  display: inline-block;
  background: var(--rose-dark);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.price-card__from { font-size: 18px; color: var(--purple-dim); font-weight: 600; margin-bottom: 6px; }
.price-card__from s { text-decoration: line-through; }
.price-card__value {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 88px);
  line-height: .9;
  color: var(--amber);
  margin-bottom: 6px;
}
.price-card__cash { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.price-card__cash span { color: var(--rose-light); }
.price-card__access { font-size: 14px; font-weight: 700; color: var(--purple-dim); margin-bottom: 28px; }
.price-card__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 20px 0 24px; }
.price-card__badges .badge { font-size: 12px; padding: 7px 12px; }
.guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,201,77,.1);
  border: 1px solid rgba(255,201,77,.4);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: left;
}
.guarantee__icon { font-size: 36px; flex-shrink: 0; }
.guarantee__title { font-weight: 800; font-size: 16px; color: var(--amber-light); margin-bottom: 4px; }
.guarantee__text { font-size: 14px; color: var(--purple-mid); }
.offer-box__footer { margin-top: 36px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); font-size: 15px; font-weight: 600; color: var(--purple-dim); }
.offer-box__footer strong { color: var(--white); }

/* ---------- STICKY BAR ---------- */
#sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: rgba(22, 2, 39, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,116,180,.4);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -10px 40px rgba(0,0,0,.5);
}
#sticky-bar.visible { transform: translateY(0); animation: slideDown 0.4s ease forwards; animation: none; transform: translateY(0); }
.sticky__price { line-height: 1.1; text-align: right; }
.sticky__label { font-size: 12px; font-weight: 700; color: var(--purple-dim); text-transform: uppercase; letter-spacing: .06em; }
.sticky__value { font-family: var(--font-display); font-size: 24px; color: var(--amber); }
.sticky__value small { font-size: 14px; color: var(--purple-dim); font-family: var(--font-body); }
.sticky__spacer { height: 80px; }

/* ---------- SEPARATOR ---------- */
.sep { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,116,180,.25), transparent); margin: 0 auto; max-width: 1140px; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 900px) {
  .hero__grid {
    display: flex;
    flex-direction: column;
  }
  .hero__content {
    order: 1;
    padding: 36px 0 20px;
  }
  .hero__img-wrap {
    order: 2;
    margin-top: 24px;
    width: 100%;
  }
  .hero__img {
    max-width: 360px;
    margin: 0 auto;
  }
  .hero__title { font-size: clamp(22px, 6vw, 32px); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero__img-glow { display: none; }
  .feature-cards, .grid-3 { grid-template-columns: 1fr; }
  .guardiao-card img { height: 220px; }
  section { padding: 64px 16px; }
}
@media (max-width: 600px) {
  h2 { font-size: clamp(24px, 7vw, 34px); }
  .hero__title { font-size: clamp(20px, 6vw, 28px); }
  .btn { font-size: 17px; padding: 16px 22px; }
  .price-card { padding: 28px 18px; }
  .results-grid { grid-template-columns: 1fr; }
  .comments-masonry { columns: 1; }
  #sticky-bar { gap: 12px; }
  .sticky__price { text-align: center; }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,46,139,.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,46,139,.7); }
