/* =========================================================================
   Ucom — site institucional

   Estrutura: o mesmo vocabulário de elementos do site da .ótico — régua fina
   abrindo os títulos, sobrancelha em caixa alta bem espaçada, card que sobe
   por sombra (nunca por translate), seta que desliza no hover, botões em par
   sólido + contorno, faixa escura fechando a seção.

   Pele: grafite, prata e branco. O luxo vem do metal — títulos e números em
   degradê de platina, fios de 1px, muito espaço — e não de cor saturada. O
   verde da marca ficou como assinatura pontual (o ponto que pulsa, o preço,
   a barrinha do anúncio), nunca banhando a página.
   ========================================================================= */

:root {
  /* grafite — a alternância entre os tons é o que separa as seções */
  --void: #08080a;
  --g1: #0d0d10;
  --g2: #131317;
  --g3: #1a1a20;

  /* prata */
  --platinum: #f6f6f8;
  --silver: #c9c9d2;
  --steel: #8d8d99;
  --slate: #63636e;

  --line: rgba(255, 255, 255, 0.075);
  --line-2: rgba(255, 255, 255, 0.14);
  --line-3: rgba(255, 255, 255, 0.26);

  /* assinatura da marca — dose pequena, sempre */
  --green: #00c950;
  --green-dim: rgba(0, 201, 80, 0.14);

  --display: "Sora", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", "Segoe UI", system-ui, sans-serif;

  --wrap: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-rest: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-lift: 0 26px 60px -26px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

* { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--platinum);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

::selection { background: var(--platinum); color: var(--void); }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.16); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.34); }

/* ------------------------------------------------------------ tipografia */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; margin: 0; }
h1, h2 { letter-spacing: -0.04em; line-height: 1.03; }
h3 { letter-spacing: -0.018em; line-height: 1.24; }
p { margin: 0; }

/* Platina escovada: o degrau de branco pra cinza dá volume ao tipo grande.
   É o que carrega o "caro" da página, no lugar de cor. */
.metal {
  background: linear-gradient(176deg, #ffffff 8%, #d5d5de 42%, #8f8f9c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

@media (min-width: 640px) { .wrap { padding-inline: 30px; } }
@media (min-width: 1024px) { .wrap { padding-inline: 40px; } }

/* --------------------------------------------------------- luz de fundo */
/* Luz fria, cinza — não neon. É o brilho de um showroom, não de um letreiro. */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(130px); will-change: transform; }

.orb-1 {
  width: 720px; height: 720px;
  top: -300px; left: -200px;
  background: radial-gradient(circle, rgba(226, 226, 238, 0.11), transparent 70%);
  animation: drift 34s var(--ease) infinite alternate;
}

.orb-2 {
  width: 580px; height: 580px;
  top: 44%; right: -260px;
  background: radial-gradient(circle, rgba(190, 190, 210, 0.075), transparent 70%);
  animation: drift 42s var(--ease) infinite alternate-reverse;
}

.orb-3 {
  width: 780px; height: 780px;
  bottom: -370px; left: 30%;
  background: radial-gradient(circle, rgba(160, 160, 185, 0.06), transparent 72%);
  animation: drift 48s var(--ease) infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(70px, -56px, 0) scale(1.16); }
}

.mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 16%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 16%, transparent 76%);
}

.site-head, main, .site-foot { position: relative; z-index: 1; }

/* ============================ ELEMENTOS BASE ============================ */

.rule {
  width: 68px; height: 1px;
  background: linear-gradient(90deg, var(--platinum), rgba(246, 246, 248, 0));
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 17px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pill-solid { background: var(--platinum); color: var(--void); }
.pill-ghost { background: rgba(255, 255, 255, 0.04); color: var(--silver); box-shadow: inset 0 0 0 1px var(--line-2); }

/* o verde aparece aqui: um ponto vivo, e só */
.pill .live { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: beat 2.4s ease-in-out infinite; }

@keyframes beat {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 201, 80, 0.22); }
  50%      { box-shadow: 0 0 0 8px rgba(0, 201, 80, 0.02); }
}

/* botões: sempre em par, sólido + contorno */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 17px 34px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.34s var(--ease), border-color 0.34s var(--ease),
              color 0.34s var(--ease), box-shadow 0.38s var(--ease);
}

.btn svg { width: 15px; height: 15px; }

.btn-solid {
  background: linear-gradient(180deg, #ffffff, #d7d7e0);
  border-color: #ffffff;
  color: var(--void);
  box-shadow: 0 12px 30px -18px rgba(255, 255, 255, 0.6);
}

.btn-solid:hover {
  background: #ffffff;
  box-shadow: 0 18px 44px -18px rgba(255, 255, 255, 0.75);
}

.btn-line { background: transparent; border-color: var(--line-2); color: var(--platinum); }
.btn-line:hover { border-color: var(--line-3); background: rgba(255, 255, 255, 0.045); }

.btn-sm { padding: 12px 24px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* seta que desliza */
.nudge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.3s, color 0.3s;
}

.nudge:hover { border-bottom-color: var(--platinum); color: var(--platinum); }
.nudge svg { width: 15px; height: 15px; transition: transform 0.32s var(--ease); }
.nudge:hover svg { transform: translateX(5px); }

/* card: sobe por sombra, nunca por deslocamento */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014));
  box-shadow: var(--shadow-rest);
  transition: box-shadow 0.42s var(--ease), border-color 0.42s var(--ease);
  overflow: hidden;
}

.card:hover { box-shadow: var(--shadow-lift); border-color: var(--line-2); }

/* seção */
.sec { padding: 96px 0; }
@media (min-width: 768px) { .sec { padding: 124px 0; } }

.sec-g1 { background: var(--g1); }
.sec-g2 { background: var(--g2); }
.sec-line { border-top: 1px solid var(--line); }

.sec-head { max-width: 40rem; margin-bottom: 60px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .rule { margin-inline: auto; background: linear-gradient(90deg, rgba(246,246,248,0), var(--platinum), rgba(246,246,248,0)); }

.sec-head h2 { font-size: clamp(2.3rem, 4.8vw, 3.5rem); margin-bottom: 20px; }
.sec-head p { color: var(--steel); font-size: 1.0625rem; }

.sec-head-split { display: flex; flex-direction: column; gap: 22px; margin-bottom: 60px; }

@media (min-width: 720px) {
  .sec-head-split { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .sec-head-split .sec-head { margin-bottom: 0; }
}

/* ============================== CABEÇALHO ============================== */
.site-head { position: sticky; top: 0; z-index: 70; }

.head-promo {
  background: var(--platinum);
  color: var(--void);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.head-util {
  background: var(--void);
  border-bottom: 1px solid var(--line);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--slate);
}

.head-util .wrap { display: flex; align-items: center; justify-content: flex-end; gap: 24px; height: 38px; }
.head-util a { transition: color 0.25s; }
.head-util a:hover { color: var(--platinum); }
.head-util .sep { width: 1px; height: 12px; background: var(--line-2); }

.head-util .apk { display: inline-flex; align-items: center; gap: 7px; color: var(--silver); }
.head-util .apk svg { width: 13px; height: 13px; }

.head-main {
  background: rgba(8, 8, 10, 0.84);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.head-main .wrap { display: flex; align-items: center; gap: 32px; height: 82px; }

/* logo deitada: a marca (U com o carrinho) e, ao lado, o "com" */
.brand { display: flex; align-items: flex-end; gap: 11px; margin-right: auto; }
.brand .mark { height: 42px; width: auto; }
.brand .word { height: 18px; width: auto; margin-bottom: 3px; }

.head-nav {
  display: flex;
  gap: 34px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.head-nav a { position: relative; padding-block: 6px; transition: color 0.25s; }

.head-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--platinum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s var(--ease);
}

.head-nav a:hover { color: var(--platinum); }
.head-nav a:hover::after { transform: scaleX(1); }

.burger {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  cursor: pointer;
}

.burger span { width: 18px; height: 1.5px; background: var(--platinum); transition: transform 0.3s var(--ease), opacity 0.2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer { background: var(--g1); border-bottom: 1px solid var(--line); padding: 8px 20px 26px; }

.drawer a {
  display: block;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}

.drawer .btn { margin-top: 22px; border-bottom: 0; }

/* =============================== VITRINE =============================== */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }

.hero-beam {
  position: absolute;
  top: -16%; left: 52%;
  width: 1100px; height: 780px;
  transform: translateX(-50%);
  background: conic-gradient(from 180deg at 50% 0%,
    transparent 0deg,
    rgba(255, 255, 255, 0.055) 14deg,
    rgba(255, 255, 255, 0.018) 28deg,
    transparent 42deg);
  filter: blur(30px);
  pointer-events: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--void) 6%, rgba(8, 8, 10, 0.8) 44%, rgba(8, 8, 10, 0.1) 100%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 64px;
  align-items: center;
  min-height: 690px;
  padding-block: 100px;
}

.hero h1 { font-size: clamp(3rem, 6.8vw, 5.4rem); font-weight: 600; margin-bottom: 30px; }
.hero h1 em { font-style: normal; color: var(--steel); }

.hero-lead { font-size: 1.0625rem; color: var(--steel); max-width: 33rem; margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-2); }
.hero-stats div { padding: 26px 20px 0 0; }

.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stats span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

/* --------------------------------- palco: tablet no encosto de cabeça */
.stage { position: relative; display: grid; place-items: center; min-height: 480px; perspective: 1500px; }

.stage-seat {
  position: absolute;
  top: 50%; left: 50%;
  width: 430px; height: 384px;
  transform: translate(-50%, -47%);
  background: linear-gradient(166deg, #24242b, #0b0b0e 76%);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 60px 60px 30px 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 50px 96px -32px rgba(0, 0, 0, 0.96);
}

.stage-seat::after {
  content: "";
  position: absolute;
  inset: 26px 30px;
  border-radius: 46px 46px 20px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.05);
}

.tablet {
  position: relative;
  width: 340px;
  aspect-ratio: 5 / 4;
  padding: 9px;
  border-radius: 13px;
  background: linear-gradient(160deg, #3c3c46, #101014);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 40px 80px -24px rgba(0, 0, 0, 0.96),
    0 0 90px -20px rgba(226, 226, 240, 0.16);
  transform: rotateY(-11deg) rotateX(4deg);
  animation: hover 7.5s ease-in-out infinite;
}

@keyframes hover {
  0%, 100% { transform: rotateY(-11deg) rotateX(4deg) translateY(0); }
  50%      { transform: rotateY(-8deg)  rotateX(3deg) translateY(-14px); }
}

.tablet-halo {
  position: absolute;
  inset: -40px;
  z-index: -1;
  border-radius: 36px;
  background: radial-gradient(ellipse at center, rgba(214, 214, 232, 0.16), transparent 68%);
  filter: blur(32px);
}

.tablet-screen { position: relative; width: 100%; height: 100%; border-radius: 6px; overflow: hidden; background: #000; }

.tablet-screen .slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s var(--ease), transform 1.6s var(--ease);
}

.tablet-screen .slide.on { opacity: 1; transform: scale(1); }

.tablet-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, 0.12); }
/* segundo lugar do verde: a barrinha do anúncio, igual à do app */
.tablet-progress i { display: block; height: 100%; width: 0; background: var(--green); animation: run 4.5s linear infinite; }

@keyframes run { from { width: 0; } to { width: 100%; } }

.stage-tag {
  position: absolute;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16, 16, 20, 0.92);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}

.stage-tag b { color: var(--platinum); }
.stage-tag-a { top: 11%; left: -4%; animation: bobA 6s ease-in-out infinite; }
.stage-tag-b { bottom: 13%; right: -2%; animation: bobB 7s ease-in-out infinite; }

@keyframes bobA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes bobB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

.stage-floor {
  position: absolute;
  bottom: 6%; left: 50%;
  width: 380px; height: 40px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(200, 200, 220, 0.14), transparent 70%);
  filter: blur(22px);
}

/* ================================ FAIXA ================================ */
.marquee { background: var(--g3); border-block: 1px solid var(--line); overflow: hidden; padding: 20px 0; }

.marquee-row {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: march 40s linear infinite;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--slate);
}

.marquee-row i { color: var(--steel); font-style: normal; font-size: 0.4375rem; }

@keyframes march { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================ GRADE DE FIOS ============================ */
.wall { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-2); border-left: 1px solid var(--line-2); }

@media (min-width: 900px) { .wall { grid-template-columns: repeat(4, 1fr); } }

.wall-cell {
  padding: 44px 30px;
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  transition: background 0.35s var(--ease);
}

.wall-cell:hover { background: rgba(255, 255, 255, 0.03); }

.wall-cell strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.7rem;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 14px;
}

.wall-cell span { font-size: 0.8125rem; color: var(--steel); line-height: 1.55; display: block; }

/* ============================== CARTÕES =============================== */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 22px; }
.card-body { padding: 34px 30px; display: flex; flex-direction: column; flex: 1; }

.card-num {
  font-family: var(--display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--slate);
  margin-bottom: 22px;
}

.card-ico {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  border: 1px solid var(--line-2);
  color: var(--platinum);
  margin-bottom: 22px;
}

.card-ico svg { width: 21px; height: 21px; }
.card h3 { font-size: 1.1875rem; margin-bottom: 12px; }
.card p { color: var(--steel); font-size: 0.9375rem; }

/* ================================ PASSOS =============================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); border-top: 1px solid var(--line-2); border-left: 1px solid var(--line-2); }

.steps li {
  list-style: none;
  padding: 42px 32px;
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  transition: background 0.35s var(--ease);
}

.steps li:hover { background: rgba(255, 255, 255, 0.03); }

.step-n {
  display: block;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.steps h3 { font-size: 1.125rem; margin-bottom: 10px; }
.steps p { color: var(--steel); font-size: 0.9375rem; }

/* ============================ BLOCO PARTIDO ============================ */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: 72px; align-items: center; }
.split h2 { font-size: clamp(2.3rem, 4.8vw, 3.5rem); margin-bottom: 22px; }
.split-copy > p { color: var(--steel); max-width: 33rem; margin-bottom: 32px; }

.ticks { list-style: none; margin: 0 0 36px; padding: 0; display: grid; }

.ticks li {
  position: relative;
  padding: 15px 0 15px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--silver);
  font-size: 0.9375rem;
}

.ticks li:first-child { border-top: 1px solid var(--line); }

.ticks li::before {
  content: "";
  position: absolute;
  left: 3px; top: 22px;
  width: 7px; height: 3px;
  border-left: 1.5px solid var(--steel);
  border-bottom: 1.5px solid var(--steel);
  transform: rotate(-45deg);
}

.split-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------- cartão preço */
.price-card {
  position: relative;
  padding: 48px 40px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015) 60%);
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  top: -140px; right: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 226, 240, 0.14), transparent 68%);
  filter: blur(50px);
}

.price-card > * { position: relative; }
.price-amount { display: flex; align-items: baseline; gap: 7px; font-family: var(--display); margin-bottom: 10px; }
.price-amount .cur { font-size: 1.5rem; font-weight: 600; color: var(--steel); }
.price-amount .val { font-size: 4.6rem; font-weight: 600; letter-spacing: -0.06em; line-height: 1; }
.price-amount .per { font-size: 0.9375rem; color: var(--slate); }

.price-note { color: var(--steel); font-size: 0.875rem; margin-bottom: 32px; }

.price-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  font-size: 0.9375rem;
  color: var(--silver);
}

.price-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
/* terceiro e último lugar do verde: o "sim" de cada item incluso */
.price-list i { color: var(--green); font-style: normal; font-weight: 700; margin-right: 12px; }

.price-foot { margin-top: 20px; text-align: center; font-size: 0.8125rem; color: var(--slate); }

/* ================================ PERKS =============================== */
.perks { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.perk-ico {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 4px;
  border: 1px solid var(--line-2);
  color: var(--platinum);
  margin-bottom: 18px;
}

.perk-ico svg { width: 19px; height: 19px; }

/* ================================ SOBRE =============================== */
.about { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr); gap: 66px; align-items: start; }
.about-copy { display: grid; gap: 22px; color: var(--steel); font-size: 0.9688rem; }

.about-copy .manifesto {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: -0.03em;
  color: var(--platinum);
}

.about-facts { border-top: 1px solid var(--line-2); }
.fact { padding: 26px 4px; border-bottom: 1px solid var(--line-2); transition: padding-left 0.3s var(--ease); }
.fact:hover { padding-left: 14px; }

.fact strong { display: block; font-family: var(--display); font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 5px; }
.fact span { font-size: 0.8125rem; color: var(--slate); }

/* ================================ FAIXA CTA ============================ */
.band {
  position: relative;
  margin-top: 92px;
  padding: 78px 44px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012) 62%);
  text-align: center;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 660px; height: 420px;
  background: radial-gradient(ellipse, rgba(226, 226, 240, 0.16), transparent 68%);
  filter: blur(58px);
}

.band > * { position: relative; }
.band h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); margin-bottom: 18px; }
.band p { color: var(--steel); max-width: 34rem; margin: 0 auto 36px; }
.band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================ BAIXAR O APP ============================= */
.app-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 40px 42px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
}

.app-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.app-card p { color: var(--steel); font-size: 0.9375rem; max-width: 40rem; }

.app-meta {
  margin-top: 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

@media (max-width: 800px) {
  .app-card { grid-template-columns: 1fr; gap: 26px; padding: 32px 24px; }
  .app-card .btn { width: 100%; }
}

/* =============================== CONTATO ============================== */
.form-card {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding: 50px 46px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: linear-gradient(172deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 340px;
  background: radial-gradient(ellipse, rgba(226, 226, 240, 0.13), transparent 68%);
  filter: blur(56px);
}

.form-card > * { position: relative; }

.switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

.switch-pill {
  position: absolute;
  top: 5px; left: 5px;
  width: calc(50% - 7px);
  height: calc(100% - 10px);
  border-radius: 3px;
  background: linear-gradient(180deg, #ffffff, #d7d7e0);
  transition: transform 0.44s var(--ease);
}

.switch[data-on="ADVERTISER"] .switch-pill { transform: translateX(calc(100% + 4px)); }

.switch-opt {
  position: relative;
  z-index: 1;
  padding: 15px 10px;
  border: 0;
  background: transparent;
  color: var(--steel);
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s;
}

.switch-opt.on { color: var(--void); }

.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 32px; }
.field { display: flex; flex-direction: column; gap: 9px; border: 0; padding: 0; margin: 0; min-width: 0; }
.field-wide { grid-column: 1 / -1; }

.field > span,
.field .legend {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

.field i { color: var(--silver); font-style: normal; }

.field input,
.field textarea {
  width: 100%;
  padding: 15px 2px;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  background: transparent;
  color: var(--platinum);
  font-family: var(--body);
  font-size: 1rem;
  transition: border-color 0.28s;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--slate); }

.field input:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--platinum); }
.field input.bad { border-bottom-color: #ff6b6b; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }

.chip span {
  display: inline-block;
  padding: 11px 22px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--steel);
  transition: all 0.26s;
}

.chip input:checked + span { border-color: var(--platinum); background: var(--platinum); color: var(--void); }
.chip input:focus-visible + span { border-color: var(--platinum); }

.form-note { margin-top: 20px; text-align: center; font-size: 0.9375rem; min-height: 22px; }
.form-note.ok { color: var(--green); }
.form-note.bad { color: #ff8080; }
.form-fine { margin-top: 16px; text-align: center; font-size: 0.75rem; color: var(--slate); }

#hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ================================ RODAPÉ ============================== */
.site-foot { background: var(--g1); border-top: 1px solid var(--line); }

.foot-top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 52px; padding: 84px 0 62px; }

.foot-brand .brand { margin-bottom: 22px; }
.foot-brand p { color: var(--steel); font-size: 0.9375rem; max-width: 20rem; margin-bottom: 24px; }

.foot-social { display: flex; gap: 10px; }

.foot-social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  color: var(--silver);
  transition: border-color 0.28s, color 0.28s, background 0.28s;
}

.foot-social a:hover { border-color: var(--platinum); color: var(--void); background: var(--platinum); }
.foot-social svg { width: 18px; height: 18px; }

.foot-col h4 {
  font-family: var(--body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--platinum);
  margin-bottom: 22px;
}

.foot-col a,
.foot-col p { display: block; font-size: 0.875rem; color: var(--steel); padding-block: 8px; transition: color 0.25s; }
.foot-col a:hover { color: var(--platinum); }

.foot-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--slate);
}

/* ========================== ENTRADA POR ROLAGEM ======================== */
/* O estado escondido depende da classe .js-anim, que o próprio script põe no
   <html>: se o JS não carregar, a página aparece inteira em vez de ficar em
   branco. Conteúdo antes de enfeite. */
.js-anim .rise {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.js-anim .rise.in { opacity: 1; transform: none; }

.js-anim .grid-cards .card:nth-child(2), .js-anim .steps li:nth-child(2) { transition-delay: 0.06s; }
.js-anim .grid-cards .card:nth-child(3), .js-anim .steps li:nth-child(3) { transition-delay: 0.12s; }
.js-anim .grid-cards .card:nth-child(4), .js-anim .steps li:nth-child(4) { transition-delay: 0.18s; }

/* ============================== RESPONSIVO ============================= */
@media (max-width: 1000px) {
  .head-nav { display: none; }
  .head-main .btn { display: none; }
  .burger { display: flex; }

  .hero .wrap { grid-template-columns: 1fr; gap: 58px; min-height: 0; padding-block: 76px; }
  .hero-scrim { background: linear-gradient(180deg, rgba(8, 8, 10, 0.45), rgba(8, 8, 10, 0.88)); }
  .stage { order: 2; min-height: 410px; }
  .stage-seat { width: 344px; height: 308px; }
  .tablet { width: 296px; }

  .split, .about { grid-template-columns: 1fr; gap: 48px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 42px; }
}

@media (max-width: 640px) {
  .sec { padding: 74px 0; }
  .head-util .wrap { justify-content: center; gap: 14px; }
  .head-util .hide-xs { display: none; }
  .head-promo { font-size: 0.5625rem; letter-spacing: 0.18em; }

  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { padding: 20px 0; border-bottom: 1px solid var(--line); }
  .hero-stats div:last-child { border-bottom: 0; }

  .stage { min-height: 326px; }
  .stage-seat { width: 272px; height: 244px; }
  .tablet { width: 242px; }
  .stage-tag { font-size: 0.5313rem; padding: 8px 13px; }
  .stage-tag-a { left: -2%; }
  .stage-tag-b { right: 0; }

  .wall { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; }
  .fields { grid-template-columns: 1fr; }
  .form-card { padding: 34px 24px; }
  .price-card { padding: 38px 28px; }
  .price-amount .val { font-size: 3.6rem; }
  .band { padding: 56px 26px; margin-top: 64px; }
  .foot-top { grid-template-columns: 1fr; gap: 38px; padding: 62px 0 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-anim .rise { opacity: 1; transform: none; }
}
