/* ==========================================================================
   COMPONENTS — biblioteca reutilizável
   Padrão: .block, .block__element, .block--modifier
   ========================================================================== */

/* ==========================================================================
   BUTTON
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-8);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  border: none;
  border-radius: var(--r-xs);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-pink);
  color: var(--c-black);
  box-shadow: var(--shadow-pink-soft);
}
.btn--primary:hover {
  background: var(--c-pink-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink-glow);
}

.btn--brutal {
  background: var(--c-black);
  color: var(--c-white);
  border: var(--border-2);
  box-shadow: var(--shadow-brutal-sm);
  border-radius: 0;
}
.btn--brutal:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
  background: var(--c-pink);
  color: var(--c-black);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover {
  border-color: var(--c-pink);
  color: var(--c-pink);
  background: rgba(224, 90, 158, 0.05);
}

.btn--lg {
  padding: var(--s-5) var(--s-10);
  font-size: var(--fs-md);
}

.btn--block { width: 100%; }

/* Program CTA — preto premium por padrão, rose glow só em hover/focus */
.btn--program {
  background: linear-gradient(135deg, #0D0D0D, #161616, #0D0D0D);
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  padding: var(--s-5) var(--s-8);
  box-shadow:
    0 0 25px rgba(184, 55, 138, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  transition:
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
}
.btn--program:hover,
.btn--program:focus-visible {
  box-shadow:
    0 0 40px rgba(184, 55, 138, 0.22),
    0 0 80px rgba(224, 90, 158, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(184, 55, 138, 0.22);
  transform: translateY(-2px);
}
.btn--program:active {
  transform: translateY(0);
  box-shadow:
    0 0 20px rgba(184, 55, 138, 0.3),
    inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   BADGE
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-6);
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--c-white);
  background: var(--c-black);
}

.badge--neon {
  position: relative;
  isolation: isolate;
  border-radius: var(--r-sm);
  overflow: hidden;
  animation: badgePulse 3s ease-in-out infinite;
}
.badge--neon::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    var(--c-pink) 0deg,
    var(--c-pink-dark) 60deg,
    transparent 120deg 180deg,
    var(--c-pink-dark) 240deg,
    var(--c-pink) 300deg,
    transparent 360deg
  );
  animation: conicSpin 2.5s linear infinite;
  z-index: -2;
}
.badge--neon::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border-radius: 4px;
  z-index: -1;
}
.badge__dot {
  width: 7px; height: 7px;
  background: var(--c-pink);
  border-radius: var(--r-full);
  box-shadow: 0 0 8px var(--c-pink), 0 0 20px var(--c-pink-dark);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes conicSpin { to { transform: rotate(360deg); } }
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(224,90,158,0.15), 0 0 40px rgba(224,90,158,0.05); }
  50%      { box-shadow: 0 0 25px rgba(224,90,158,0.3),  0 0 60px rgba(224,90,158,0.1); }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--c-pink), 0 0 20px rgba(224,90,158,0.4); }
  50%      { box-shadow: 0 0 14px var(--c-pink), 0 0 35px rgba(224,90,158,0.7); }
}

/* Pin badge (absolute inside a card) */
.badge--pin {
  position: absolute;
  top: 0; right: 0;
  background: var(--c-pink);
  color: var(--c-black);
  padding: var(--s-2) var(--s-4);
  font-size: 10px;
  border-left: var(--border-2);
  border-bottom: var(--border-2);
  z-index: 2;
}

/* Credential tag (glass + conic) */
.tag {
  position: relative;
  isolation: isolate;
  padding: var(--s-3) var(--s-5);
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--c-black);
  background: rgba(224, 90, 158, 0.1);
  border: 1px solid rgba(184, 55, 138, 0.3);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
  overflow: hidden;
}
.tag::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(transparent 0deg, rgba(224,90,158,0.55) 50deg, transparent 100deg);
  animation: conicSpin 3s linear infinite;
  z-index: -2;
}
.tag::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: rgba(247, 246, 244, 0.9);
  z-index: -1;
}
.tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px var(--c-pink-glow-strong);
}

/* ==========================================================================
   CARD — base
   ========================================================================== */
.card {
  background: var(--c-white);
  border: var(--border-2);
  box-shadow: var(--shadow-brutal);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 6px 10px 0 var(--c-black);
}
.card--featured {
  border-color: var(--c-pink-dark);
  box-shadow: var(--shadow-brutal-pink);
}
.card--featured:hover { box-shadow: none; }

/* ==========================================================================
   GLASS PANEL — dark theme component
   ========================================================================== */
.glass {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-glass);
  border-radius: var(--r-lg);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  isolation: isolate;
  overflow: hidden;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.glass::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    transparent 0deg,
    rgba(224,90,158,0.4) 60deg,
    transparent 120deg 180deg,
    rgba(184,55,138,0.3) 240deg,
    transparent 300deg
  );
  animation: conicSpin 8s linear infinite;
  z-index: -2;
  opacity: 0;
  transition: opacity var(--dur-slow);
}
.glass.is-visible::before { opacity: 1; }
.glass::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--r-lg) - 1px);
  background: rgba(10, 10, 10, 0.96);
  z-index: -1;
}
.glass:hover,
.glass.is-visible {
  border-color: rgba(224, 90, 158, 0.2);
  box-shadow: 0 8px 40px rgba(224, 90, 158, 0.1),
              0 0 60px rgba(224, 90, 158, 0.04);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  transition: background var(--dur-base), border-color var(--dur-base), box-shadow var(--dur-base);
}
.faq__item:hover { border-color: rgba(255, 255, 255, 0.1); }
.faq__item.is-open {
  background: rgba(224, 90, 158, 0.05);
  border-color: rgba(224, 90, 158, 0.2);
  box-shadow: 0 0 20px rgba(224, 90, 158, 0.08);
}
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--c-gray-300);
  cursor: pointer;
  transition: color var(--dur-base);
}
.faq__trigger:hover,
.faq__item.is-open .faq__trigger { color: var(--c-white); }
.faq__trigger-icon {
  font-size: 1.2rem;
  font-weight: var(--fw-black);
  color: var(--c-pink);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-swift), color var(--dur-base);
  text-shadow: 0 0 8px rgba(224, 90, 158, 0.4);
}
.faq__item.is-open .faq__trigger-icon {
  transform: rotate(45deg);
}
.faq__trigger-text { flex: 1; }
.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-in-out);
}
.faq__panel-inner {
  padding: 0 var(--s-6) var(--s-6) calc(var(--s-6) + 20px + var(--s-4));
  color: var(--c-gray-400);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
}

/* ==========================================================================
   FORM FIELD (glass, dark theme)
   ========================================================================== */
.field { position: relative; }
.field__input {
  width: 100%;
  padding: var(--s-4) var(--s-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  color: var(--c-white);
  font-size: var(--fs-base);
  transition: border-color var(--dur-base), box-shadow var(--dur-base), background var(--dur-base);
}
.field__input::placeholder { color: var(--c-gray-500); }
.field__input:focus {
  border-color: var(--c-pink);
  box-shadow: 0 0 20px rgba(224,90,158,0.1), inset 0 0 12px rgba(224,90,158,0.03);
  background: rgba(224, 90, 158, 0.04);
}

/* Custom select */
.select {
  position: relative;
}
.select__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  color: var(--c-white);
  font-size: var(--fs-base);
  text-align: left;
  cursor: pointer;
  user-select: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base), background var(--dur-base);
}
.select__btn.is-active {
  border-color: var(--c-pink);
  box-shadow: 0 0 20px rgba(224,90,158,0.1);
  background: rgba(224, 90, 158, 0.04);
}
.select__placeholder { color: var(--c-gray-500); }
.select__value { color: var(--c-white); }
.select__arrow {
  font-size: 0.7rem;
  color: var(--c-gray-400);
  transition: transform var(--dur-base);
}
.select__btn.is-active .select__arrow { transform: rotate(180deg); }

.select__menu {
  background: rgba(22, 22, 22, 0.92);
  border: 1px solid rgba(224, 90, 158, 0.12);
  border-radius: var(--r-md);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  transition: max-height var(--dur-base) var(--ease-out),
              opacity var(--dur-fast),
              margin-top var(--dur-base) var(--ease-out);
}
.select__menu.is-open {
  max-height: 320px;
  opacity: 1;
  margin-top: var(--s-2);
}
.select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: var(--fs-base);
  color: var(--c-white);
  transition: background var(--dur-fast);
}
.select__option:last-child { border-bottom: 0; }
.select__option:hover { background: rgba(224, 90, 158, 0.08); }
.select__option.is-selected { background: rgba(224, 90, 158, 0.06); }
.select__option-left {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.select__option-emoji { font-size: 1.1rem; }
.select__option-check {
  width: 20px; height: 20px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-gray-500);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  color: transparent;
  transition: all var(--dur-fast);
  flex-shrink: 0;
}
.select__option.is-selected .select__option-check {
  background: var(--c-pink);
  border-color: var(--c-pink);
  color: var(--c-black);
}

/* ==========================================================================
   BEFORE/AFTER SLIDER
   ========================================================================== */
.ba {
  max-width: 900px;
  margin-inline: auto;
  padding: 0 var(--s-4);
  position: relative;
}
.ba__slide {
  display: none;
  flex-direction: column;
}
.ba__slide.is-active { display: flex; }
.ba__viewer {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 720px;
  width: 100%;
  overflow: hidden;
  border: var(--border-2);
  box-shadow: var(--shadow-brutal);
  background: #0A0A0A;
  background-image: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
  cursor: col-resize;
  touch-action: pan-y;
  user-select: none;
}
.ba__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}
.ba__img--after { clip-path: inset(0 0 0 50%); }
.ba__label {
  position: absolute;
  bottom: var(--s-4);
  padding: var(--s-2) var(--s-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.ba__label--before { left: var(--s-4); background: var(--c-white); color: var(--c-black); }
.ba__label--after  { right: var(--s-4); background: var(--c-pink); color: var(--c-black); }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--c-pink);
  z-index: 4;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(224,90,158,0.6);
}
.ba__handle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--c-pink);
  border: 3px solid var(--c-white);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 0 24px rgba(224,90,158,0.7),
    0 4px 16px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .ba {
    padding: 0 var(--s-3);
    max-width: 100%;
  }
  .ba__viewer {
    aspect-ratio: 3 / 4;
    max-height: none;
  }
  .ba__label {
    font-size: 0.68rem;
    padding: 6px 10px;
    bottom: var(--s-3);
  }
  .ba__label--before { left: var(--s-3); }
  .ba__label--after  { right: var(--s-3); }
  .ba__handle::after {
    width: 42px; height: 42px;
  }
}
.ba__handle-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: var(--fw-black);
  letter-spacing: 6px;
  pointer-events: none;
}
.ba__info { text-align: center; padding: var(--s-5) 0 var(--s-2); }
.ba__info h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: var(--fw-extrabold); margin-bottom: 4px; }
.ba__info p { font-size: var(--fs-sm); color: var(--c-gray-400); }
.ba__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  margin-top: var(--s-5);
}
.ba__arrow {
  width: 44px; height: 44px;
  border: var(--border-2);
  background: var(--c-white);
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--dur-base), color var(--dur-base);
}
.ba__arrow:hover { background: var(--c-black); color: var(--c-white); }
.ba__dots { display: flex; gap: var(--s-2); }
.ba__dot {
  width: 10px; height: 10px;
  border-radius: var(--r-full);
  background: var(--c-gray-300);
  cursor: pointer;
  transition: background var(--dur-base), transform var(--dur-base);
  border: none;
  padding: 0;
}
.ba__dot.is-active {
  background: var(--c-pink);
  transform: scale(1.3);
}
.ba__counter {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--c-gray-400);
  letter-spacing: 1px;
}

/* ==========================================================================
   TESTIMONIAL CARD
   ========================================================================== */
.testimonial {
  position: relative;
  padding: var(--s-6) var(--s-6) var(--s-5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  transition: border-color var(--dur-base), background var(--dur-base), transform var(--dur-base);
}
.testimonial:hover {
  border-color: rgba(224, 90, 158, 0.2);
  background: rgba(224, 90, 158, 0.03);
  transform: translateY(-3px);
}
.testimonial__mark {
  position: absolute;
  top: var(--s-3);
  right: var(--s-5);
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--c-pink);
  opacity: 0.18;
  pointer-events: none;
}
.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--s-3);
  color: var(--c-pink);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.testimonial__quote {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--c-gray-200);
  margin-bottom: var(--s-5);
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.testimonial__avatar {
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--c-pink), var(--c-pink-dark));
  color: var(--c-white);
  display: grid; place-items: center;
  font-weight: var(--fw-black);
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(224, 90, 158, 0.3);
}
.testimonial__name {
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--c-white);
  line-height: 1.2;
}
.testimonial__meta {
  font-size: var(--fs-xs);
  color: var(--c-gray-400);
  margin-top: 2px;
}
.testimonial__result {
  display: inline-block;
  margin-top: var(--s-2);
  padding: 4px 10px;
  background: rgba(224, 90, 158, 0.12);
  border: 1px solid rgba(224, 90, 158, 0.25);
  border-radius: var(--r-xs);
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-pink-light);
}

/* ==========================================================================
   METHOD PILLAR (for Método PALCO)
   ========================================================================== */
.pillar {
  position: relative;
  padding: var(--s-8) var(--s-6) var(--s-6);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  text-align: left;
  transition: border-color var(--dur-base), background var(--dur-base), transform var(--dur-base);
  overflow: hidden;
  isolation: isolate;
}
.pillar:hover {
  border-color: rgba(224, 90, 158, 0.25);
  background: rgba(224, 90, 158, 0.04);
  transform: translateY(-4px);
}
.pillar__letter {
  position: absolute;
  top: -14px;
  right: var(--s-5);
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(224, 90, 158, 0.22);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: -webkit-text-stroke var(--dur-base), color var(--dur-base);
}
.pillar:hover .pillar__letter {
  -webkit-text-stroke: 1.5px rgba(224, 90, 158, 0.45);
}
.pillar__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--c-pink);
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 1;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-black);
  color: var(--c-white);
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
.pillar p {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--c-gray-400);
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   PRICING TIER
   ========================================================================== */
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: var(--border-2);
  box-shadow: var(--shadow-brutal);
  padding: var(--s-10) var(--s-6) var(--s-6);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
  overflow: hidden;
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 6px 10px 0 var(--c-black);
}
.tier--featured {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-pink-dark);
  box-shadow: var(--shadow-brutal-pink);
  transform: scale(1.03);
}
.tier--featured:hover {
  box-shadow: 6px 10px 0 var(--c-pink-dark);
  transform: translateY(-6px) scale(1.03);
}
.tier__flag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-pink);
  color: var(--c-black);
  padding: 6px 22px;
  font-size: 10px;
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: var(--border-2);
  border-left: var(--border-2);
  border-right: var(--border-2);
}
.tier__header {
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid currentColor;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.tier--featured .tier__header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.tier__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  margin-bottom: var(--s-2);
}
.tier__subtitle {
  font-size: var(--fs-sm);
  color: var(--c-gray-500);
  line-height: 1.4;
}
.tier--featured .tier__subtitle { color: var(--c-gray-300); }
.tier__anchor {
  font-size: var(--fs-sm);
  color: var(--c-gray-400);
  text-decoration: line-through;
  margin-bottom: var(--s-1);
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  margin-bottom: var(--s-1);
}
.tier__price-currency {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--c-gray-500);
}
.tier--featured .tier__price-currency { color: var(--c-gray-400); }
.tier__price-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: var(--fw-black);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  color: var(--c-black);
}
.tier--featured .tier__price-amount { color: var(--c-white); }
.tier__price-period {
  font-size: var(--fs-sm);
  color: var(--c-gray-500);
}
.tier__installments {
  font-size: var(--fs-xs);
  color: var(--c-gray-500);
  margin-bottom: var(--s-5);
}
.tier--featured .tier__installments { color: var(--c-gray-400); }
.tier__stack {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
  flex: 1;
}
.tier__stack-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--fs-base);
  line-height: 1.4;
}
.tier__stack-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--c-pink);
  color: var(--c-black);
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: var(--fw-black);
  border-radius: var(--r-xs);
  margin-top: 2px;
}
.tier__stack-bonus {
  color: var(--c-pink-dark);
  font-weight: var(--fw-bold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 2px;
  padding: 2px 6px;
  background: rgba(224, 90, 158, 0.1);
  border-radius: 3px;
}
.tier--featured .tier__stack-bonus {
  color: var(--c-pink-light);
  background: rgba(224, 90, 158, 0.15);
}
.tier__scarcity {
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-pink-dark);
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.tier--featured .tier__scarcity { color: var(--c-pink-light); }
.tier__scarcity::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--c-pink);
  border-radius: var(--r-full);
  animation: dotPulse 1.5s ease-in-out infinite;
}
.tier__cta {
  width: 100%;
}
.tier--featured .tier__cta.btn--primary { background: var(--c-pink); }
.tier--featured .tier__cta.btn--primary:hover { background: var(--c-pink-light); }

/* Non-featured tier CTA — outline */
.tier:not(.tier--featured) .tier__cta {
  background: var(--c-black);
  color: var(--c-white);
  border-radius: var(--r-sm);
}
.tier:not(.tier--featured) .tier__cta:hover {
  background: var(--c-pink);
  color: var(--c-black);
  transform: translateY(-2px);
}

/* ==========================================================================
   GUARANTEE CARD
   ========================================================================== */
.guarantee {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-6);
  padding: var(--s-10) var(--s-8);
  background: linear-gradient(135deg, rgba(224,90,158,0.08), rgba(184,55,138,0.04));
  border: 1px solid rgba(224, 90, 158, 0.25);
  border-radius: var(--r-lg);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.guarantee::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    transparent 0deg,
    rgba(224, 90, 158, 0.25) 60deg,
    transparent 120deg 180deg,
    rgba(184, 55, 138, 0.18) 240deg,
    transparent 300deg
  );
  animation: conicSpin 12s linear infinite;
  z-index: -2;
  opacity: 0.7;
}
.guarantee::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--r-lg) - 1px);
  background: var(--c-black);
  z-index: -1;
}
.guarantee__seal {
  width: 120px;
  height: 120px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--c-pink), var(--c-pink-dark));
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  box-shadow: 0 8px 32px rgba(224, 90, 158, 0.3),
              inset 0 -4px 12px rgba(0, 0, 0, 0.2),
              inset 0 4px 8px rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  position: relative;
}
.guarantee__seal::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: var(--r-full);
}
.guarantee__seal-num {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.guarantee__seal-lbl {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  margin-top: 2px;
  opacity: 0.95;
}
.guarantee__body h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--c-white);
  margin-bottom: var(--s-3);
  line-height: 1.2;
}
.guarantee__body p {
  color: var(--c-gray-300);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-3);
}
.guarantee__body p:last-child { margin-bottom: 0; }
.guarantee__body strong { color: var(--c-pink-light); font-weight: var(--fw-bold); }

@media (max-width: 640px) {
  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--s-8) var(--s-5);
    gap: var(--s-5);
  }
  .guarantee__seal { margin-inline: auto; width: 100px; height: 100px; }
  .guarantee__seal-num { font-size: 2rem; }
}

/* ==========================================================================
   LGPD BANNER
   ========================================================================== */
.lgpd {
  position: fixed;
  inset: auto 0 0 0;
  z-index: var(--z-lgpd);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-6);
  background: var(--c-black);
  color: var(--c-white);
  border-top: 2px solid var(--c-pink);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.lgpd.is-visible { transform: translateY(0); }
.lgpd__text {
  font-size: var(--fs-sm);
  color: var(--c-gray-300);
  max-width: 720px;
  line-height: 1.5;
}
