:root {
  /* Tema escuro - vermelho de marca */
  --bg: #050505;
  --bg-deep: #050505;
  --bg-2: #0a0a0c;
  --bg-elevated: #1a1a1e;
  --bg-panel: rgba(22, 22, 26, 0.78);
  --text: #e8edf5;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  /* Marca - vermelho */
  --brand: #ff2040;
  --brand-hover: #e61a38;
  --brand-bright: #ff5566;
  --brand-dim: rgba(255, 32, 64, 0.14);
  --brand-line: rgba(255, 32, 64, 0.42);

  /* Destaque - âmbar/laranja */
  --amber: #f59e0b;
  --amber-bright: #f97316;
  --amber-dim: rgba(245, 158, 11, 0.14);
  --amber-line: rgba(245, 158, 11, 0.42);

  /* Confirmação - esmeralda */
  --green: #10b981;
  --green-bright: #6ee7b7;
  --green-dim: rgba(16, 185, 129, 0.1);
  --green-line: rgba(16, 185, 129, 0.3);

  /* Alerta/problema - rosa */
  --red: #E11D48;
  --red-bright: #FB7185;
  --red-dim: rgba(225, 29, 72, 0.1);
  --red-line: rgba(225, 29, 72, 0.3);

  /* Compatibilidade: mapeia nomes antigos para a nova marca */
  --copper: var(--brand);
  --copper-bright: var(--brand-bright);
  --copper-soft: var(--brand-bright);
  --copper-dim: var(--brand-dim);
  --copper-line: var(--brand-line);

  --max: 1120px;
  --narrow: 720px;
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-glow: 0 0 80px rgba(255, 32, 64, 0.22);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-elevated: 0 24px 60px rgba(0, 0, 0, 0.55);
  --glass: rgba(22, 22, 26, 0.72);
  --glass-border: rgba(255, 255, 255, 0.08);
  --header-height: 72px;
  --radius: 14px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  padding-top: var(--header-height, 72px);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 70% at 50% -25%, rgba(255, 32, 64, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 45% at 110% 15%, rgba(26, 10, 18, 0.65), transparent 55%),
    radial-gradient(ellipse 50% 40% at -5% 75%, rgba(10, 16, 32, 0.5), transparent 50%),
    linear-gradient(180deg, #12060c 0%, #050505 40%, #080c18 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-conic-gradient(
      from 0deg at 50% -10%,
      transparent 0deg,
      rgba(255, 32, 64, 0.07) 0.8deg,
      transparent 1.6deg,
      transparent 14deg
    );
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 32, 64, 0.22);
  z-index: 1000;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.site-header__logo {
  height: 65px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(255, 32, 64, 0.35));
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.esconder {
  display: none !important;
}

body.is-unlocked #cta-locked,
#cta-locked.esconder,
.cta-slot:has(#cta-unlocked:not(.esconder)) #cta-locked {
  display: none !important;
}

body.is-unlocked #cta-unlocked {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.65rem !important;
}

body.is-unlocked #conteudo-revelado {
  display: block !important;
}

#hero-scroll {
  display: none !important;
}

body.is-unlocked #hero-scroll {
  display: flex !important;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.container--narrow {
  width: min(100% - 2rem, var(--narrow));
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height, 72px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0 0.35rem;
  z-index: 1;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero__glow--a {
  width: min(520px, 48vw);
  height: min(520px, 48vw);
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 32, 64, 0.22);
  animation: glowA 9s ease-in-out infinite;
}

.hero__glow--b {
  width: min(340px, 34vw);
  height: min(340px, 34vw);
  bottom: 8%;
  right: -4%;
  background: rgba(26, 10, 18, 0.5);
  animation: glowB 11s ease-in-out infinite;
}

@keyframes glowA {
  0%, 100% { opacity: 0.65; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

@keyframes glowB {
  0%, 100% { opacity: 0.5; transform: translate(0, 0); }
  50% { opacity: 0.85; transform: translate(-20px, -16px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 1.25rem, 900px);
  text-align: center;
  animation: heroIn 1.05s var(--ease) both;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-logo {
  display: block;
  width: min(320px, 72vw);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 30px rgba(255, 32, 64, 0.35));
  animation: brandLogoGlow 4s ease-in-out infinite;
}

@keyframes brandLogoGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 32, 64, 0.25)); }
  50% { filter: drop-shadow(0 0 45px rgba(255, 85, 102, 0.45)); }
}

.attention {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(0.62rem, 1.05vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.55rem;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(255, 85, 102, 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 32, 64, 0.22), rgba(255, 32, 64, 0.08));
  box-shadow: 0 0 28px rgba(255, 32, 64, 0.18);
  animation: attentionPulse 2.8s ease-in-out infinite;
}

.attention::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 10px var(--brand-bright);
  animation: dotPulse 1.6s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes attentionPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 32, 64, 0); }
  50% { box-shadow: 0 0 28px rgba(255, 32, 64, 0.2); border-color: rgba(255, 85, 102, 0.7); }
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3.4vw, 2.15rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 auto 0.55rem;
  max-width: 28ch;
  text-wrap: balance;
  background: linear-gradient(180deg, #ffffff 0%, #ffd1d6 55%, var(--brand-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 50px rgba(255, 32, 64, 0.25);
}

.hero__sub {
  font-size: clamp(0.85rem, 1.55vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 38rem;
  margin: 0 auto 0.85rem;
  font-weight: 400;
  line-height: 1.5;
}

.player-wrap {
  position: relative;
  width: 100%;
  max-width: min(100%, 900px, max(280px, calc((100svh - 400px) * 16 / 9)));
  margin-inline: auto;
  padding: 2px;
  border-radius: var(--radius);
  background: linear-gradient(
    140deg,
    rgba(255, 85, 102, 0.9) 0%,
    rgba(255, 32, 64, 0.45) 35%,
    rgba(120, 20, 30, 0.55) 70%,
    rgba(255, 85, 102, 0.8) 100%
  );
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.7),
    var(--shadow-glow);
  animation: playerRise 1.2s 0.1s var(--ease) both;
}

.player-wrap::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at center, rgba(255, 32, 64, 0.22), transparent 65%);
  z-index: -1;
  pointer-events: none;
}

.player-wrap__frame {
  background: #000;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

@keyframes playerRise {
  from { opacity: 0; transform: translateY(34px) scale(0.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cta-slot {
  margin-top: 0.85rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  width: 100%;
}

.cta-slot__locked {
  width: 100%;
}

.cta-slot__warn {
  font-size: clamp(0.78rem, 1.55vw, 0.9rem);
  color: var(--brand-bright);
  border: 1px solid var(--brand-line);
  background: linear-gradient(180deg, rgba(255, 32, 64, 0.12), rgba(255, 32, 64, 0.04));
  padding: clamp(0.65rem, 1.6vw, 0.9rem) clamp(0.9rem, 2vw, 1.25rem);
  width: 100%;
  border-radius: var(--radius-sm);
  text-align: center;
}

.cta-slot__liberado {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: clamp(0.68rem, 1.3vw, 0.78rem);
  margin-bottom: 0.45rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  background: var(--green-dim);
  animation: liberadoIn 0.55s var(--ease) both;
}

.cta-slot__liberado::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #050505;
  font-size: 0.7rem;
}

@keyframes liberadoIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cta-slot__unlocked {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0;
}

.cta-slot__micro {
  font-size: clamp(0.7rem, 1.3vw, 0.8rem);
  color: var(--text-muted);
  line-height: 1.4;
}

.cta-slot__reinforce {
  font-size: clamp(0.74rem, 1.4vw, 0.86rem);
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

.hero__scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--brand-bright);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Quando liberado, o scroll fica abaixo do CTA para não sobrepor os textos */
body.is-unlocked .hero__scroll {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  margin-top: 1.25rem;
  animation-name: scrollBounceUnlocked;
}

@keyframes scrollBounceUnlocked {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 700px), (max-height: 760px) {
  .hero__headline {
    font-size: clamp(1.15rem, 5.2vw, 1.7rem);
    max-width: 26ch;
    line-height: 1.05;
  }

  .hero__sub {
    font-size: clamp(0.82rem, 2.6vw, 1rem);
    max-width: 34rem;
  }

  .attention {
    font-size: clamp(0.62rem, 1.8vw, 0.72rem);
    padding: 0.25rem 0.5rem;
  }

  .player-wrap {
    max-width: 100%;
  }

  .cta-slot__warn {
    padding: 0.6rem 0.8rem;
    font-size: 0.78rem;
  }

  .btn {
    font-size: clamp(0.78rem, 2.2vw, 1rem);
    padding: 0.65rem 0.9rem;
  }
}

/* BOTOES */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.9vw, 1.08rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: clamp(0.75rem, 1.9vw, 0.95rem) clamp(1rem, 2.4vw, 1.4rem);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, #ff5566 0%, #ff2040 40%, #d31732 100%);
  border: 1px solid rgba(255, 150, 160, 0.5);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), filter 0.28s ease;
  box-shadow:
    0 14px 36px rgba(255, 32, 64, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 0 4px rgba(255, 32, 64, 0.1);
  width: min(100%, 460px);
  text-align: center;
  line-height: 1.15;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-130%);
  animation: btnShine 3.5s ease-in-out infinite;
}

.btn::after {
  content: "→";
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

@keyframes btnShine {
  0%, 55% { transform: translateX(-130%); }
  75%, 100% { transform: translateX(130%); }
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
  box-shadow:
    0 22px 50px rgba(255, 32, 64, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 5px rgba(255, 32, 64, 0.14);
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(-1px) scale(1.01);
}

.btn--lg {
  padding: clamp(1.05rem, 2.8vw, 1.35rem) clamp(1.4rem, 3.2vw, 2.1rem);
  font-size: clamp(1.15rem, 3vw, 1.65rem);
}

.section__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.4rem;
}

/* CTA FLUTUANTE */
.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 32, 64, 0.35);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}

.floating-cta.is-visible {
  transform: translateY(0);
}

body:has(.floating-cta.is-visible),
body.has-floating-cta {
  padding-bottom: 80px;
}

.floating-cta__inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.floating-cta__text {
  display: none;
}

.floating-cta__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.floating-cta__text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.floating-cta .btn {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 0.92rem;
}

@media (min-width: 700px) {
  .floating-cta__text {
    display: block;
  }

  .floating-cta .btn {
    width: auto;
    min-width: 280px;
  }
}

/* SEÇÕES */
.section {
  padding: clamp(2.8rem, 5.5vw, 4.5rem) 0;
  position: relative;
  z-index: 1;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100px, 28%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0.6;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4.4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.55rem;
  text-wrap: balance;
  color: var(--text);
}

.section__title--accent {
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title--left {
  text-align: left;
}

.section__sub {
  text-align: center;
  color: var(--text-muted);
  margin: -0.55rem auto 2.4rem;
  max-width: 34rem;
  font-size: 1.08rem;
}

.prose {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 44rem;
  margin-inline: auto;
  line-height: 1.75;
}

.prose p + p {
  margin-top: 1.15rem;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose--center {
  text-align: center;
}

/* ÍCONES */
.icons-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0a0a0c, #101014);
  border-block: 1px solid rgba(255, 32, 64, 0.2);
  padding: 1.9rem 0;
  overflow: hidden;
  max-width: 100%;
}

.icons-strip__track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.7rem;
  width: min(100% - 1.5rem, 1240px);
  margin-inline: auto;
}

/* Esconde os itens duplicados no desktop */
.icons-strip__track .icon-item:nth-child(n+8) {
  display: none;
}

.icon-item {
  text-align: center;
  padding: 1.15rem 0.65rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}

.icon-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 32, 64, 0.06);
  border-color: rgba(255, 32, 64, 0.2);
}

.icon-item__glyph {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.7rem;
  color: var(--copper-bright);
  border: 1px solid var(--copper-line);
  background: var(--copper-dim);
  border-radius: 10px;
}

.icon-item__glyph svg {
  width: 1.3rem;
  height: 1.3rem;
}

.icon-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.icon-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.icon-item--highlight {
  position: relative;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.14), rgba(245, 158, 11, 0.04));
  border: 1px solid var(--amber-line);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.12);
}

.icon-item--highlight .icon-item__glyph {
  color: var(--amber-bright);
  border-color: var(--amber-line);
  background: var(--amber-dim);
}

.icon-item--highlight h3 {
  color: var(--amber-bright);
}

.icon-item__badge {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1510;
  background: var(--amber);
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

@media (max-width: 900px) {
  .icons-strip__track {
    display: flex;
    gap: 0.85rem;
    padding: 0.5rem 1rem 0.8rem;
    width: max-content;
    will-change: transform;
    animation: iconsMarquee 30s linear infinite;
  }

  .icons-strip__track.is-paused,
  .icons-strip__track.is-offscreen {
    animation-play-state: paused;
  }

  .icons-strip__track .icon-item:nth-child(n+8) {
    display: block;
  }

  .icon-item {
    flex: 0 0 72vw;
    max-width: 320px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 32, 64, 0.15);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1.2rem;
  }

  .icon-item--highlight {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.16), rgba(245, 158, 11, 0.06));
    border: 1px solid var(--amber-line);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.14);
  }

  .icon-item__glyph {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.85rem;
  }

  .icon-item__glyph svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .icon-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .icon-item p {
    font-size: 0.85rem;
    max-width: 26ch;
    margin-inline: auto;
  }

  .icon-item__badge {
    top: -0.5rem;
    font-size: 0.58rem;
    padding: 0.14rem 0.5rem;
  }
}

/* PROVA */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.85rem 0 2.35rem;
}

.stat {
  text-align: center;
  padding: 1.8rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 32, 64, 0.12), rgba(255, 32, 64, 0.04)),
    var(--glass);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.stat::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper-bright), transparent);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  color: var(--copper-bright);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.prints {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.95rem;
  margin-bottom: 1.4rem;
}

.print-slot {
  text-align: center;
}

.print-slot__frame {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #16161a 0%, #0a0a0c 100%);
  border: 1px solid rgba(255, 32, 64, 0.25);
  position: relative;
  overflow: hidden;
}

.print-slot__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.print-slot__frame::before {
  content: "Cole o print aqui";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  color: var(--copper);
  opacity: 0.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem;
  text-align: center;
  z-index: 1;
}

.print-slot__frame:has(img)::before,
.print-slot__frame:has(img)::after {
  display: none;
}

.print-slot__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255, 32, 64, 0.1) 50%, transparent 60%);
  animation: shimmer 3.8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-35%); }
  50% { transform: translateX(35%); }
}

.print-slot figcaption {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.prints__caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 40rem;
  margin: 0 auto;
  font-style: italic;
}

@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; }
  .prints { grid-template-columns: 1fr 1fr; }
  .hero__headline { max-width: none; }
}

/* DEPOIMENTO */
.testimonial {
  background: radial-gradient(700px 420px at 50% 0%, rgba(255, 32, 64, 0.06), transparent 60%);
}

.testimonial__video-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding: 1.5px;
  background: linear-gradient(
    140deg,
    rgba(255, 85, 102, 0.85) 0%,
    rgba(255, 32, 64, 0.35) 35%,
    rgba(120, 20, 30, 0.5) 70%,
    rgba(255, 85, 102, 0.7) 100%
  );
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    var(--shadow-glow);
}

.testimonial__video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.testimonial__caption {
  text-align: center;
  color: var(--text-muted);
  margin-top: 1.1rem;
  font-size: 1rem;
}

/* PROBLEMA */
.problem {
  background: radial-gradient(700px 420px at 0% 40%, rgba(225, 29, 72, 0.1), transparent 60%);
}

.pain-list {
  list-style: none;
  margin: 2.25rem auto;
  display: grid;
  gap: 0.9rem;
  max-width: 44rem;
}

.pain-list li {
  padding: 1.2rem 1.35rem;
  background: rgba(225, 29, 72, 0.07);
  border: 1px solid rgba(225, 29, 72, 0.18);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.55;
  transition: transform 0.25s ease, background 0.25s ease;
}

.pain-list li:hover {
  transform: translateX(4px);
  background: rgba(225, 29, 72, 0.1);
}

.turn-gold {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  color: var(--brand-bright);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-top: 1.85rem;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(255, 32, 64, 0.2);
}

/* TABELAS */
.compare-table-wrap,
.anchor-table-wrap {
  overflow-x: auto;
  margin-top: 1.75rem;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 32, 64, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(8px);
}

.compare-table,
.anchor-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.97rem;
  min-width: 640px;
}

.compare-table th,
.compare-table td,
.anchor-table th,
.anchor-table td {
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(255, 32, 64, 0.1);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th,
.anchor-table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(26, 26, 30, 0.98);
}

.compare-table th.bad {
  color: #FB7185;
  background: rgba(255, 32, 64, 0.14);
}
.compare-table th.good {
  color: var(--green-bright);
  background: var(--green-dim);
}

.compare-table tbody th {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  background: rgba(26, 26, 30, 0.95);
}

.compare-table tbody td:last-child {
  color: var(--text);
  background: var(--green-dim);
  border-color: var(--green-line);
}

.compare-table tbody td:nth-child(2) {
  color: #FDA4AF;
  background: rgba(255, 32, 64, 0.06);
}

.compare-table tbody tr:hover td:nth-child(2) {
  background: rgba(255, 32, 64, 0.1);
}

.compare-table tbody tr:hover td:last-child {
  background: rgba(16, 185, 129, 0.16);
}

@media (max-width: 700px) {
  .compare-table-wrap {
    overflow-x: visible;
    background: transparent;
    border: none;
  }

  .compare-table {
    min-width: 0;
    display: block;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table tr {
    margin-bottom: 1rem;
    background: rgba(10, 10, 12, 0.6);
    border: 1px solid rgba(255, 32, 64, 0.18);
    border-radius: 4px;
    overflow: hidden;
  }

  .compare-table th[scope="row"] {
    background: #1a1a1e;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 32, 64, 0.15);
  }

  .compare-table td {
    padding: 0.8rem 1rem 0.8rem 7.5rem;
    position: relative;
    border: none;
    border-bottom: 1px solid rgba(255, 32, 64, 0.08);
    font-size: 0.92rem;
  }

  .compare-table td:last-child {
    border-bottom: none;
  }

  .compare-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 0.8rem;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .compare-table td:nth-child(2) {
    color: #FDA4AF;
    background: rgba(255, 32, 64, 0.07);
  }

  .compare-table td:nth-child(2)::before {
    color: #FB7185;
  }

  .compare-table td:nth-child(3) {
    color: var(--green-bright);
    background: var(--green-dim);
  }

  .compare-table td:nth-child(3)::before {
    color: var(--green);
  }
}

/* HISTÓRIA */
.story__visual {
  margin-top: 2.85rem;
  height: clamp(250px, 42vw, 480px);
  width: 100%;
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--copper-line);
}

.story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: storyKen 20s ease-in-out infinite alternate;
}

@keyframes storyKen {
  from { transform: scale(1.02); }
  to { transform: scale(1.09) translateX(-1%); }
}

.story__visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.85rem;
  background:
    linear-gradient(180deg, transparent 30%, rgba(5, 5, 5, 0.92) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.45), transparent 35%, transparent 65%, rgba(5, 5, 5, 0.35));
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 6.5vw, 4rem);
  letter-spacing: 0.2em;
  color: var(--copper-bright);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.85);
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.65rem 1.5rem;
  background:
    linear-gradient(165deg, rgba(22, 22, 26, 0.95), rgba(10, 10, 12, 0.95));
  border: 1px solid rgba(255, 32, 64, 0.14);
  border-top: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 32, 64, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 32, 64, 0.1);
}

.feature__num {
  font-family: var(--font-display);
  color: var(--copper);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.55rem;
  opacity: 0.75;
}

.feature h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  line-height: 1.15;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.features__close {
  text-align: center;
  margin: 2.35rem auto 0;
  font-size: 1.15rem;
  color: var(--copper-soft);
  font-weight: 500;
  max-width: 36rem;
}

@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ESTÚDIO (destaque âmbar/laranja) */
.studio {
  position: relative;
  overflow: hidden;
  background: #0a0a0c;
  border-block: 1px solid var(--brand-line);
}

.studio::before {
  display: none;
}

.studio__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(255, 32, 64, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(255, 32, 64, 0.1), transparent 50%),
    linear-gradient(180deg, #1a0a12 0%, #0a0a0c 50%, #0a0a0c 100%);
  pointer-events: none;
}

.studio__shell {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 32, 64, 0.35);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4.5vw, 3rem);
  background:
    linear-gradient(165deg, rgba(40, 14, 18, 0.7) 0%, rgba(18, 18, 22, 0.9) 55%, rgba(14, 14, 16, 0.95) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 32, 64, 0.08) inset,
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 100px rgba(255, 32, 64, 0.08);
  backdrop-filter: blur(6px);
}

.studio__top {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.studio__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
  border: 1px solid rgba(255, 85, 102, 0.55);
  border-radius: 999px;
  box-shadow:
    0 8px 28px rgba(255, 32, 64, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.studio__badge-icon {
  font-size: 0.95rem;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.25));
}

.studio__badge-divider {
  opacity: 0.5;
  font-weight: 400;
}

.studio__top .section__title {
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 30px rgba(255, 32, 64, 0.2);
}

.studio__layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.2rem;
}

.studio__demo-screen {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(255, 32, 64, 0.14), transparent 55%),
    linear-gradient(160deg, #1a0a12, #0a0a0c);
  border: 1px solid rgba(255, 32, 64, 0.4);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 50px rgba(255, 32, 64, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.4);
}

.studio__demo-orb {
  position: absolute;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 32, 64, 0.25), transparent 70%);
  filter: blur(20px);
  animation: orbPulse 4.5s ease-in-out infinite;
  z-index: 0;
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.15); }
}

.studio__demo-screen:has(.studio__video) {
  aspect-ratio: auto;
}

.studio__video {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}

.studio__demo-screen:has(.studio__video) .studio__demo-label {
  position: absolute;
  bottom: 0.8rem;
  z-index: 3;
  background: rgba(12, 12, 14, 0.72);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255, 32, 64, 0.35);
}

.studio__demo-scan {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 4px,
      rgba(255, 32, 64, 0.03) 4px,
      rgba(255, 32, 64, 0.03) 8px
    );
  animation: scanMove 7s linear infinite;
}

@keyframes scanMove {
  from { background-position: 0 0; }
  to { background-position: 0 48px; }
}

.studio__demo-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-bright);
  font-size: 1.15rem;
}

.studio__prose {
  color: var(--text-secondary);
  font-size: 1.06rem;
  line-height: 1.65;
}

.studio__prose p + p {
  margin-top: 0.95rem;
}

.studio__lead {
  font-size: 1.18rem;
  color: var(--text);
}

.studio__lead strong {
  color: var(--brand-bright);
  font-weight: 600;
}

.studio__highlight {
  color: var(--brand-bright);
  font-weight: 500;
}

.studio__impact {
  font-size: 1.12rem;
  color: var(--text);
}

.studio__big {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brand-bright);
  letter-spacing: 0.02em;
  margin-right: 0.15rem;
}

.studio__close {
  margin-top: 1.1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 32, 64, 0.06);
  border-left: 3px solid var(--brand-bright);
  color: var(--text);
  font-size: 1.1rem;
}

.studio__close strong {
  color: var(--text);
  font-weight: 600;
}

.studio__micros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.studio__micro {
  position: relative;
  padding: 1.5rem 1.35rem;
  background:
    linear-gradient(165deg, rgba(30, 14, 18, 0.55) 0%, rgba(12, 12, 14, 0.72) 100%);
  border: 1px solid rgba(255, 32, 64, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.studio__micro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-bright), transparent);
  opacity: 0.7;
}

.studio__micro:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 32, 64, 0.4);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(255, 32, 64, 0.1);
}

.studio__micro-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.85rem;
  color: var(--brand-bright);
  background: rgba(255, 32, 64, 0.1);
  border: 1px solid rgba(255, 32, 64, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 32, 64, 0.1);
}

.studio__micro-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.studio__micro h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 0.5rem;
}

.studio__micro p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 800px) {
  .studio__layout,
  .studio__micros {
    grid-template-columns: 1fr;
  }

  .studio__badge {
    font-size: 0.64rem;
    padding: 0.5rem 0.85rem;
    gap: 0.3rem;
  }

  .studio__big {
    font-size: 1.25rem;
  }
}

/* AUDIENCE */
.audience__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.audience__yes,
.audience__no {
  padding: 1.9rem 1.7rem;
  border-radius: var(--radius);
}

.audience__yes {
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.11), rgba(16, 185, 129, 0.03));
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.audience__no {
  background: linear-gradient(160deg, rgba(225, 29, 72, 0.11), rgba(225, 29, 72, 0.03));
  border: 1px solid rgba(225, 29, 72, 0.35);
}

.audience ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.audience li {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.audience__close {
  text-align: center;
  margin-top: 2.35rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--copper-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .audience__grid { grid-template-columns: 1fr; }
}

/* MATH / OFERTA */
.anchor-table { min-width: 0; }

.anchor-table tbody td:last-child {
  color: #FB7185;
  font-weight: 600;
}

.anchor-table__total td {
  background: rgba(255, 32, 64, 0.12);
  font-weight: 600;
}

.anchor-table__total td:last-child {
  color: #FB7185;
}

.anchor-table__total small {
  font-weight: 400;
  color: var(--text-muted);
}

.anchor-table__offer td,
.anchor-table .anchor-table__offer td:last-child {
  background: var(--green-dim);
  border-color: var(--green-line);
  color: var(--green-bright);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.deliverables {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 1.65rem 0 2.2rem;
}

.deliverables li {
  padding: 0.95rem 1.15rem;
  background: rgba(26, 26, 30, 0.9);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  font-size: 1.02rem;
  border-top: 1px solid rgba(245, 158, 11, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.deliverables li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.14);
  color: var(--amber-bright);
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 0.05rem;
}

.deliverables li:hover {
  transform: translateX(4px);
  background: rgba(30, 30, 34, 0.95);
}

.price-box {
  text-align: center;
  padding: 2.6rem 1.8rem;
  border: 1px solid var(--green-line);
  border-radius: var(--radius);
  background:
    radial-gradient(520px 260px at 50% 0%, rgba(16, 185, 129, 0.22), transparent 70%),
    linear-gradient(180deg, #0f1a15, #0a0a0c);
  margin-bottom: 1.9rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(245, 158, 11, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 45%, rgba(255, 255, 255, 0.06) 50%, transparent 55%);
  animation: btnShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.price-box__anchor {
  color: #FB7185;
  text-decoration: line-through;
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.price-box__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 10vw, 5.2rem);
  color: var(--green-bright);
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 0 55px rgba(16, 185, 129, 0.35);
}

.price-box__price span {
  font-size: 0.28em;
  letter-spacing: 0.08em;
  color: var(--text);
  vertical-align: middle;
  text-transform: uppercase;
}

.price-box__day {
  margin-top: 0.9rem;
  font-size: 1.18rem;
  color: var(--green-bright);
  font-weight: 600;
}

/* TRUST */
.trust {
  padding-block: 3rem;
  background: linear-gradient(180deg, #0a0a0c, #08080a);
  border-block: 1px solid rgba(255, 32, 64, 0.15);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.trust__item {
  text-align: center;
  padding: 1.25rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.trust__item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 32, 64, 0.25);
}

.trust__icon {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 auto 0.7rem;
  color: var(--brand-bright);
}

.trust__item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.45rem;
}

.trust__item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .trust__grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq__list {
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  background: rgba(26, 26, 30, 0.92);
  border: 1px solid rgba(255, 32, 64, 0.14);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.faq__item:hover,
.faq__item[open] {
  border-color: rgba(255, 32, 64, 0.42);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.faq__item summary {
  cursor: pointer;
  padding: 1.2rem 1.35rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.4rem;
  flex-shrink: 0;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq__item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq__item p {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  animation: faqReveal 0.35s var(--ease) both;
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.close__final {
  margin-top: 0.9rem;
  font-size: 1.08rem;
  color: var(--brand-bright);
  font-style: italic;
}

/* FOOTER */
.footer {
  padding: 2.85rem 0 3.4rem;
  border-top: 1px solid rgba(255, 32, 64, 0.15);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
  background: #050505;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.9rem;
  letter-spacing: 0.18em;
  color: var(--brand);
  margin-bottom: 0.9rem;
}

.footer p + p {
  margin-top: 0.55rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--brand-bright);
}

.footer__legal {
  max-width: 42rem;
  margin-inline: auto;
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.55;
}

body.is-unlocked .page-reveal {
  animation: revealPage 0.95s var(--ease) both;
}

@keyframes revealPage {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ajustes responsivos gerais */
@media (max-width: 700px) {
  .section__title {
    font-size: clamp(1.55rem, 6.5vw, 2.2rem);
  }

  .section__sub {
    font-size: 0.95rem;
  }

  .prose {
    font-size: 0.98rem;
  }

  .pain-list li {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
  }

  .feature {
    padding: 1.25rem 1.1rem;
  }

  .feature p {
    font-size: 0.92rem;
  }

  .audience__yes,
  .audience__no {
    padding: 1.4rem 1.2rem;
  }

  .audience li {
    font-size: 0.95rem;
  }

  .price-box {
    padding: 1.6rem 1rem;
  }

  .price-box__anchor {
    font-size: 0.92rem;
  }

  .price-box__day {
    font-size: 1rem;
  }

  .deliverables li {
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
  }

  .faq__item summary {
    padding: 1rem 1.05rem;
    font-size: 0.92rem;
  }

  .faq__item p {
    padding: 0 1.05rem 1.05rem;
    font-size: 0.92rem;
  }

  .trust__item h3 {
    font-size: 1.05rem;
  }

  .trust__item p {
    font-size: 0.88rem;
  }

  .footer {
    padding: 2rem 0 2.5rem;
    font-size: 0.82rem;
  }

  .footer__brand {
    font-size: 1.6rem;
  }

  .footer__legal {
    font-size: 0.72rem;
  }

  .testimonial__video-wrap {
    max-width: 100%;
  }

  .testimonial__caption {
    font-size: 0.92rem;
  }
}

/* Loop do carrossel: a faixa tem os itens duplicados, então -50%
   (mais meio gap) volta exatamente ao ponto inicial */
@keyframes iconsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.425rem)); }
}

/* ============================================================
   PERFORMANCE MOBILE
   Remove efeitos que forçam repintura contínua em telas touch:
   fundo fixo, overlays de ruído, blurs gigantes e backdrop-filter.
   ============================================================ */
@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }

  /* Overlays fixos de ruído e raios repintam a tela toda a cada scroll */
  body::before,
  body::after {
    display: none;
  }

  .site-header,
  .floating-cta {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(8, 8, 10, 0.97);
  }

  .stat,
  .compare-table-wrap,
  .anchor-table-wrap,
  .studio__shell {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header__logo {
    filter: none;
  }

  .hero__glow {
    filter: blur(46px);
    animation: none;
  }

  .attention {
    animation: none;
  }

  .btn::before {
    display: none;
  }

  .price-box::before {
    display: none;
  }

  .story__img {
    animation: none;
  }

  .studio__demo-orb,
  .studio__demo-scan {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
