/* Karolem Costa tier-sync, premium brand tokens */

/* Method card premium */
.method-card--premium {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 17rem;
  padding: 1.6rem 1.35rem 1.45rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(30, 74, 112, 0.12);
  border-radius: 1.35rem;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 244, 239, 0.92) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 36px rgba(30, 74, 112, 0.07);
}

.method-card--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out-soft);
  z-index: 3;
}

.method-card--premium::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 163, 191, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.45s var(--ease-out-soft), opacity 0.45s ease;
}

@media (hover: hover) {
  .method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(30, 74, 112, 0.3);
  }

  .method-card--premium:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 74, 112, 0.3);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 28px 56px rgba(30, 74, 112, 0.18),
      0 10px 24px rgba(30, 74, 112, 0.08);
  }

  .method-card--premium:hover::before {
    transform: scaleX(1);
  }

  .method-card--premium:hover::after {
    transform: scale(1.2);
    opacity: 0.9;
  }

  .method-card--premium:hover .method-card__icon {
    transform: scale(1.06);
    background: linear-gradient(145deg, var(--color-primary), var(--color-primary-mid));
    color: #fff;
    box-shadow: 0 12px 28px rgba(30, 74, 112, 0.38);
  }

  .method-card--premium:hover .method-card__watermark {
    opacity: 0.14;
    transform: translate(2px, -4px);
  }
}

.method-card__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-full);
  background: var(--color-background-alt);
  border: 2px solid var(--color-nude-dark);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.method-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: var(--color-primary);
  background: linear-gradient(145deg, rgba(30, 74, 112, 0.16), rgba(127, 163, 191, 0.08));
  box-shadow: 0 8px 20px rgba(30, 74, 112, 0.12);
  transition: transform 0.35s var(--ease-out-soft), background 0.35s var(--ease-out-soft), color 0.35s var(--ease-out-soft), box-shadow 0.35s var(--ease-out-soft);
}

.method-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.method-card__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: rgba(127, 163, 191, 0.16);
}

.method-card__watermark {
  position: absolute;
  top: 0.2rem;
  right: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.5vw, 5.25rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--color-primary);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: opacity 0.35s var(--ease-out-soft), transform 0.35s var(--ease-out-soft);
}

@media (hover: hover) {
  .method-card:hover .method-card__step {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
  }
}

.method-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.method-card--premium h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-secondary);
  margin-bottom: 0.65rem;
}

.method-card p {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.method-card--premium p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-mid);
  margin-top: auto;
}

@media (min-width: 961px) {
  .method-grid--premium .method-card--premium:nth-child(even) {
    transform: translateY(1.1rem);
  }

  .method-grid--premium .method-card--premium:nth-child(even):hover {
    transform: translateY(calc(1.1rem - 10px));
  }

  .method-pinned .method-grid--premium .method-card--premium:nth-child(even),
  .method-pinned .method-grid--premium .method-card--premium:nth-child(even):hover {
    transform: none;
  }
}

/* Incluso — premium features */
.incluso-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: start;
}

/* Footer premium */
/* Footer — wordmark hover (estilo Maislaser) */
.footer {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(127, 163, 191, 0.22) 0%, transparent 42%),
    linear-gradient(180deg, #1A2B45 0%, #101D30 100%);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(127, 163, 191, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 30%, rgba(30, 74, 112, 0.1) 0%, transparent 32%);
  pointer-events: none;
  z-index: 0;
}

.footer__shell {
  position: relative;
  z-index: 1;
  min-height: clamp(22rem, 46vw, 30rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-sm) var(--space-lg);
}

.footer__wordmark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
  pointer-events: auto;
}

.footer__wordmark .text-hover-effect {
  width: 100%;
  max-width: 100%;
  height: clamp(8rem, 38vw, 16rem);
}

.text-hover-effect {
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
}

.text-hover-effect__svg {
  display: block;
  overflow: visible;
}

.text-hover-effect__draw,
.text-hover-effect__ghost,
.text-hover-effect__gradient {
  fill: transparent;
}

.text-hover-effect__draw,
.text-hover-effect__ghost {
  stroke: rgba(255, 255, 255, 0.28);
}

.footer--premium .text-hover-effect__draw,
.footer--premium .text-hover-effect__ghost {
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1.15;
}

.text-hover-effect__ghost {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.text-hover-effect.is-hovered .text-hover-effect__ghost {
  opacity: 0.7;
}

.text-hover-effect__draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: text-hover-draw 4s ease-in-out forwards;
}

.text-hover-effect__gradient {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.text-hover-effect.is-hovered .text-hover-effect__gradient {
  opacity: 1;
}

@keyframes text-hover-draw {
  to { stroke-dashoffset: 0; }
}

.text-hover-effect.is-reduced .text-hover-effect__draw {
  animation: none;
  stroke-dashoffset: 0;
}

.footer__content {
  position: relative;
  z-index: 2;
  max-width: 28rem;
  width: min(100%, 28rem);
  margin-inline: auto;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 0.35rem;
}

.footer p {
  margin: 0;
  font-size: 0.8125rem;
  color: inherit;
  line-height: 1.55;
}

.footer__meta-line {
  margin-bottom: 1rem !important;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.875rem !important;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.footer__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer__social-btn--whatsapp {
  color: #fff;
  background: rgba(0, 200, 0, 0.18);
  border-color: rgba(0, 200, 0, 0.35);
}

.footer__social-btn--instagram {
  color: #fff;
  background: rgba(30, 74, 112, 0.22);
  border-color: rgba(127, 163, 191, 0.35);
}

@media (hover: hover) {
  .footer__social-btn:hover {
    transform: translateY(-2px);
  }

  .footer__social-btn--whatsapp:hover {
    background: #00c800;
    border-color: #00c800;
    color: #fff;
  }

  .footer__social-btn--instagram:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
  }
}

.footer__links {
  margin-bottom: 0.65rem !important;
}

.footer a {
  color: rgba(255, 255, 255, 0.65);
}

.footer a:hover { color: rgba(255, 255, 255, 0.9); }

.footer__copy {
  margin-bottom: 0.35rem !important;
  color: rgba(255, 255, 255, 0.48);
}

.footer__credit {
  margin-top: 0.15rem !important;
  color: rgba(255, 255, 255, 0.4);
}

.footer__credit a { font-weight: 500; }

@media (max-width: 768px) {
  .footer {
    overflow: visible;
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }

  .footer__shell {
    min-height: 0;
    padding: var(--space-xl) var(--space-sm) 2rem;
    align-items: stretch;
    justify-content: flex-start;
  }

  .footer__wordmark {
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0 1.5rem;
    overflow: visible;
  }

  .footer__wordmark .text-hover-effect {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .footer__content {
    margin-top: clamp(1.75rem, 9vw, 2.5rem);
    padding: 1.35rem 1rem 1.15rem;
    border-radius: 1.25rem;
  }

  .footer__brand {
    margin-top: 0.15rem;
  }

  .footer__social {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__social-btn {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-hover-effect__draw {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* Method stack + dep-featured + ambient */
/* ═══════════════════════════════════════════
   Method PINNED stack (desktop + mobile)
   Não usar .method-grid aqui — evita conflito com grid 2×2/4 col
   ═══════════════════════════════════════════ */
#metodo.method-pinned,
#metodo.method-pinned .container,
#metodo.method-pinned .method-stack {
  overflow: visible !important;
}

.method-stack {
  display: block !important;
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
  position: relative;
  grid-template-columns: none !important;
}

.method-stack .method-card {
  display: flex !important;
  position: sticky !important;
  top: calc(var(--header-height, 4.5rem) + 0.75rem) !important;
  width: 100%;
  margin: 0 0 min(62vh, 15rem) !important;
  z-index: 1;
  transform-origin: center top;
  /* Opaco — evita “fantasma” do card de trás vazando pelo fundo */
  background:
    linear-gradient(170deg, #ffffff 0%, #f6f4ef 100%) !important;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    opacity 0.4s ease;
}

/* Empilha NA FRENTE: card seguinte cobre o anterior (não invertido pelo VO) */
.method-stack .method-card:nth-child(1) { z-index: 1 !important; }
.method-stack .method-card:nth-child(2) { z-index: 2 !important; }
.method-stack .method-card:nth-child(3) { z-index: 3 !important; }
.method-stack .method-card:nth-child(4) { z-index: 4 !important; }
.method-stack .method-card:nth-child(5) { z-index: 5 !important; }
.method-stack .method-card:nth-child(6) { z-index: 6 !important; }

/* Vence overrides do editor (html[data-editor-viewport] [data-vo-id]) */
html[data-editor-viewport] .method-stack > .method-card:nth-child(1),
html[data-editor-active="true"][data-editor-viewport] .method-stack > .method-card:nth-child(1) {
  z-index: 1 !important;
  position: sticky !important;
}
html[data-editor-viewport] .method-stack > .method-card:nth-child(2),
html[data-editor-active="true"][data-editor-viewport] .method-stack > .method-card:nth-child(2) {
  z-index: 2 !important;
  position: sticky !important;
}
html[data-editor-viewport] .method-stack > .method-card:nth-child(3),
html[data-editor-active="true"][data-editor-viewport] .method-stack > .method-card:nth-child(3) {
  z-index: 3 !important;
  position: sticky !important;
}
html[data-editor-viewport] .method-stack > .method-card:nth-child(4),
html[data-editor-active="true"][data-editor-viewport] .method-stack > .method-card:nth-child(4) {
  z-index: 4 !important;
  position: sticky !important;
}

.method-stack .method-card.is-behind {
  transform: scale(0.93) translateY(-10px);
  opacity: 0.52;
  box-shadow: 0 8px 24px rgba(28, 29, 49, 0.06);
}

.method-stack .method-card:last-child {
  margin-bottom: 2.5rem !important;
}

@media (min-width: 769px) {
  .method-stack {
    max-width: 36rem;
  }

  .method-stack .method-card {
    top: calc(var(--header-height, 5rem) + 1.1rem) !important;
    margin-bottom: min(48vh, 17rem) !important;
  }

  .method-stack .method-card:last-child {
    margin-bottom: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .method-stack .method-card {
    margin-bottom: 10rem !important;
    transition: opacity 0.35s ease, box-shadow 0.35s ease;
  }

  .method-stack .method-card.is-behind {
    transform: none;
    opacity: 0.72;
  }

  .method-stack .method-card:last-child {
    margin-bottom: 2.5rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-stack .method-card {
    transition: none;
  }

  .method-stack .method-card.is-behind {
    transform: none;
    opacity: 0.72;
  }
}

/* Depoimento em destaque + marquee */
.dep-featured {
  position: relative;
  max-width: 44rem;
  margin: 0 auto var(--space-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background:
    radial-gradient(ellipse 70% 80% at 8% 0%, rgba(30, 74, 112, 0.1), transparent 55%),
    var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.dep-featured__stars {
  color: var(--color-google, #fbbc04);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.dep-featured__quote {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--color-text);
}

.dep-featured__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.dep-featured__avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 1px rgba(30, 74, 112, 0.25);
}

.dep-featured__author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
}

.dep-featured__author span {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-mid);
}

/* Ambient — seções Sobre / FAQ / Depoimentos / Incluso / Para quem */
#sobre,
#faq,
#depoimentos,
#incluso,
#para-quem {
  position: relative;
  overflow-x: clip;
}

#sobre > .container,
#faq > .container,
#depoimentos > .container,
#incluso > .container,
#para-quem > .container {
  position: relative;
  z-index: 1;
}

#sobre::before {
  content: "";
  position: absolute;
  width: min(18rem, 42vw);
  height: min(18rem, 42vw);
  top: 18%;
  left: -4rem;
  border-radius: 50%;
  border: 1px solid var(--decor-ring);
  pointer-events: none;
  z-index: 0;
}

#sobre::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 88% 70%, var(--decor-glow), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

#faq::before {
  content: "";
  position: absolute;
  width: min(16rem, 40vw);
  height: min(16rem, 40vw);
  bottom: 12%;
  right: -3rem;
  border-radius: 50%;
  border: 1px solid var(--decor-ring);
  pointer-events: none;
  z-index: 0;
}

#faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 10% 20%, var(--decor-glow), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

#depoimentos::before {
  content: "";
  position: absolute;
  width: min(20rem, 46vw);
  height: min(20rem, 46vw);
  top: 30%;
  right: -5rem;
  border-radius: 50%;
  border: 1px solid var(--decor-ring);
  pointer-events: none;
  z-index: 0;
}

#incluso::before {
  content: "";
  position: absolute;
  width: min(22rem, 48vw);
  height: min(22rem, 48vw);
  top: 12%;
  right: -6rem;
  border-radius: 50%;
  border: 1px solid var(--decor-ring);
  pointer-events: none;
  z-index: 0;
}

#para-quem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 960px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }
}

.reveal-stagger.is-visible > *:nth-child(n + 11) {
  animation-delay: calc(var(--stagger-step) * 10);
}

/* Depoimentos — limite 360 chars + expandir no clique (.cursor/rules/testimonials-card-limit.mdc) */

.dep-card--text {
  min-height: 0;
  max-height: none;
  width: min(320px, 88vw);
  cursor: default;
}

.dep-card--truncated {
  cursor: pointer;
}

.dep-card__quote {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dep-card--expanded .dep-card__quote {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}

.dep-card__read-hint {
  display: block;
  margin: -0.35rem 0 var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.85;
}

.dep-card--expanded .dep-card__read-hint {
  opacity: 0.65;
}

@media (hover: hover) {
  .dep-card--truncated:hover {
    border-color: color-mix(in srgb, var(--color-primary) 35%, var(--color-border));
  }
}

/* Footer wordmark self-selector fix (JS puts class on .footer__wordmark) */
/* NÃO usar overflow-x:clip aqui — com overflow-y:visible o CSS
   recalcula Y para auto/clip e corta a base das letras (G). */
.footer.footer--premium {
  overflow: visible;
  padding-bottom: max(2.5rem, calc(1.25rem + env(safe-area-inset-bottom, 0px)));
}
.footer__wordmark.text-hover-effect,
.footer__wordmark .text-hover-effect {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
}
/* Impede VO do editor de estreitar o wordmark e cortar a última letra */
.footer__wordmark[data-vo-id],
html[data-editor-viewport] .footer__wordmark[data-vo-id],
html[data-editor-active="true"][data-editor-viewport] .footer__wordmark[data-vo-id] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
  overflow: visible !important;
}
.footer__wordmark.text-hover-effect > .text-hover-effect__svg,
.footer__wordmark .text-hover-effect > .text-hover-effect__svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 760 / 260;
  overflow: visible;
}
@media (max-width: 768px) {
  .footer.footer--premium {
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }
  .footer.footer--premium .footer__shell {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: 1.75rem;
  }
  .footer.footer--premium .footer__wordmark {
    position: relative;
    inset: auto;
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 1;
    overflow: visible;
    padding: 0.35rem 0.25rem 1.25rem;
  }
  .footer.footer--premium .footer__wordmark.text-hover-effect > .text-hover-effect__svg,
  .footer.footer--premium .footer__wordmark .text-hover-effect > .text-hover-effect__svg {
    width: 100%;
    height: auto;
    aspect-ratio: 760 / 260;
    overflow: visible;
  }
  .footer.footer--premium .footer__content {
    order: 1;
    margin-top: clamp(1rem, 5vw, 1.75rem);
  }
}

/* Quote banner premium */
.quote-banner--premium {
  isolation: isolate;
}

.quote-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.quote-banner__orb--1 {
  width: 14rem;
  height: 14rem;
  top: -4rem;
  right: 8%;
  background: rgba(127, 163, 191, 0.35);
}

.quote-banner__orb--2 {
  width: 11rem;
  height: 11rem;
  bottom: -3rem;
  left: 6%;
  background: rgba(30, 74, 112, 0.28);
}

.quote-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.quote-banner__mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 7rem);
  line-height: 0.55;
  opacity: 0.28;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.quote-banner blockquote {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.6vw, 2.15rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.28;
  max-width: 36rem;
  margin: 0 auto;
  color: #fff;
}

.quote-banner blockquote .quote-line,
.quote-banner blockquote .quote-line * {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  color: inherit;
}

.quote-banner__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.6rem;
}

.quote-banner__author-line {
  width: 2.5rem;
  height: 2px;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(127, 163, 191, 0.9), transparent);
}

.quote-banner__author-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.quote-banner__author-role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

html.motion-active .quote-banner--premium .quote-banner__inner {
  animation: quoteInnerIn 0.8s var(--ease-out-soft) both;
}

@keyframes quoteInnerIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .quote-banner {
    padding: 3rem var(--space-sm);
  }

  .quote-banner__inner {
    padding: 1.35rem 1.1rem 1.5rem;
    border-radius: 1.25rem;
  }

  .quote-banner__author {
    margin-top: 1.25rem;
  }
}

/* Method — premium journey */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-sm);
  position: relative;
  width: 100%;
}

.method-grid > * {
  min-width: 0;
}

.method-grid--premium {
  gap: 1.15rem;
  z-index: 1;
}

@media (min-width: 961px) {
  .method-grid::before {
    content: "";
    position: absolute;
    top: 2.75rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-nude-dark), transparent);
    z-index: 0;
  }

  .method-grid--premium::before {
    top: 3.4rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(30, 74, 112, 0.15) 8%,
      rgba(30, 74, 112, 0.45) 50%,
      rgba(30, 74, 112, 0.15) 92%,
      transparent 100%
    );
  }
}


/* Incluso premium features */
.incluso-grid--premium {
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.incluso-lead {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-text-mid);
}

.incluso-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.incluso-feature {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  padding: 1.05rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(30, 74, 112, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 244, 239, 0.9) 100%);
  box-shadow: 0 10px 28px rgba(28, 29, 49, 0.05);
  transition: transform 0.35s var(--ease-out-soft), box-shadow 0.35s var(--ease-out-soft), border-color 0.35s ease;
}

.incluso-feature__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  color: var(--color-primary);
  background: linear-gradient(145deg, rgba(30, 74, 112, 0.16), rgba(127, 163, 191, 0.08));
  box-shadow: 0 6px 16px rgba(30, 74, 112, 0.12);
  transition: transform 0.35s var(--ease-out-soft), background 0.35s ease, color 0.35s ease;
}

.incluso-feature__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.incluso-feature h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-secondary);
}

.incluso-feature p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-text-mid);
}

@media (hover: hover) {
  .incluso-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 74, 112, 0.28);
    box-shadow: 0 18px 40px rgba(30, 74, 112, 0.14);
  }

  .incluso-feature:hover .incluso-feature__icon {
    transform: scale(1.06);
    background: linear-gradient(145deg, var(--color-primary), var(--color-primary-mid));
    color: #fff;
  }
}

.incluso-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.incluso-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.check {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.check svg { width: 0.65rem; height: 0.65rem; }

.incluso-highlight {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(30, 74, 112, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.incluso-highlight--premium {
  padding: 1.85rem 1.6rem 1.7rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(30, 74, 112, 0.16);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(229, 243, 237, 0.55));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 56px rgba(30, 74, 112, 0.16);
}

.incluso-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-mid));
}

.incluso-highlight__tag {
  display: inline-block;
  background: var(--color-secondary-light);
  color: var(--color-primary-dark);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.incluso-highlight h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  color: var(--color-secondary);
  margin-bottom: 0.65rem;
}

.incluso-highlight p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-text-mid);
  margin-bottom: 1.1rem;
}

.incluso-highlight__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  padding: 0;
}

.incluso-highlight__meta li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--color-text-mid);
}

.incluso-highlight__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(30, 74, 112, 0.15);
}

.incluso-premium {
  position: relative;
  overflow-x: clip;
}

.incluso-premium::before {
  content: "";
  position: absolute;
  width: min(18rem, 42vw);
  height: min(18rem, 42vw);
  top: 18%;
  right: -4rem;
  border-radius: 50%;
  border: 1px solid var(--decor-ring);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 960px) {
  .incluso-grid,
  .incluso-grid--premium {
    grid-template-columns: 1fr;
  }

  .incluso-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .incluso-feature {
    padding: 0.95rem 0.9rem;
  }

  .incluso-highlight--premium {
    padding: 1.4rem 1.2rem 1.35rem;
  }
}

/* Para quem */
.pq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 56rem;
  margin-inline: auto;
}

.pq-grid--premium .pq-card {
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border-radius: 1.35rem;
  box-shadow: 0 12px 36px rgba(28, 29, 49, 0.05);
}

.pq-card {
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid transparent;
}

.pq-card--yes {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(30, 74, 112, 0.2);
}

.pq-card--no {
  background: var(--color-negative-bg);
  border-color: rgba(193, 90, 60, 0.18);
}

.pq-card__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.pq-card--yes .pq-card__label { color: var(--color-primary-dark); }
.pq-card--no .pq-card__label { color: var(--color-negative); }

.pq-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pq-card li {
  font-size: 1rem;
  line-height: 1.45;
  padding-left: 1.15rem;
  position: relative;
  color: var(--color-text-mid);
}

.pq-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Mobile: cards empilhados (tier-sync carrega depois de styles.css) */
@media (max-width: 768px) {
  .pq-grid,
  .pq-grid--premium {
    grid-template-columns: 1fr;
  }
}

/* Karolem final brand safeguards */
.footer {
  overflow-x: clip;
}

.hero__frame::after {
  background: linear-gradient(180deg, transparent 68%, rgba(26, 43, 69, 0.12) 100%);
}

.contact-section {
  background: linear-gradient(145deg, var(--color-primary-dark) 0%, var(--color-primary) 52%, var(--color-primary-mid) 100%);
}

@media (max-width: 768px) {
  .footer__shell {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .footer__wordmark {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    z-index: 1;
  }

  .footer__wordmark.text-hover-effect > .text-hover-effect__svg,
  .footer__wordmark .text-hover-effect > .text-hover-effect__svg {
    width: 100%;
    max-width: 100%;
    height: clamp(7rem, 38vw, 10.5rem);
  }

  .footer__content {
    order: 1;
    margin-top: clamp(1rem, 5vw, 1.75rem);
  }
}