@font-face {
  font-family: "Righteous";
  src: url("../assets/fonts/Righteous-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #ff6a00;
  --orange-deep: #e55a00;
  --orange-soft: #ff8c42;
  --ink: #151515;
  --muted: #667085;
  --line: #eceff3;
  --surface: #ffffff;
  --soft: #f7f8fa;
  --white: #ffffff;
  --max: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --brand: "Righteous", "Outfit", sans-serif;
  --body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========== HEADER ========== */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.75rem 0.75rem 0;
  transition: padding 0.35s var(--ease);
}

.topbar-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0 0.85rem 0 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 15, 15, 0.28);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

@media (min-width: 768px) {
  .topbar {
    padding: 1rem clamp(1rem, 3vw, 1.5rem) 0;
  }

  .topbar-inner {
    min-height: 64px;
    border-radius: 18px;
    padding: 0 1rem 0 1.1rem;
  }
}

.topbar.is-scrolled {
  padding-top: 0.65rem;
}

.topbar.is-scrolled .topbar-inner {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(21, 21, 21, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--brand);
  font-size: 1.35rem;
  color: var(--white);
  text-transform: lowercase;
  transition: color 0.35s var(--ease);
}

.brand.dark,
.topbar.is-scrolled .brand {
  color: var(--orange);
}

.brand img {
  border-radius: 9px;
}

.nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.35s var(--ease);
}

.topbar.is-scrolled .nav {
  color: var(--muted);
}

.nav a {
  position: relative;
  padding: 0.25rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover {
  color: var(--white);
}

.topbar.is-scrolled .nav a:hover {
  color: var(--ink);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1.05rem;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.menu-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.topbar.is-scrolled .menu-btn {
  background: var(--soft);
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: 0.3s var(--ease);
}

.topbar.is-scrolled .menu-btn span {
  background: var(--ink);
}

.menu-btn.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-btn.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 92px;
  left: 1rem;
  right: 1rem;
  z-index: 49;
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(21, 21, 21, 0.1);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  padding: 0.9rem 0.85rem;
  font-weight: 600;
  border-radius: 12px;
  color: var(--ink);
}

.mobile-nav a:hover {
  background: #fff4ec;
  color: var(--orange-deep);
}

@media (min-width: 900px) {
  .nav,
  .nav-cta {
    display: inline-flex;
  }

  .menu-btn,
  .mobile-nav {
    display: none !important;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
}

.hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.05);
  animation: kenburns 22s var(--ease) infinite alternate;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.28) 0%, rgba(10, 10, 10, 0.08) 35%, rgba(10, 10, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.45) 0%, transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 7rem clamp(1.2rem, 4vw, 2rem) 3.4rem;
  color: var(--white);
}

.wordmark {
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(3.8rem, 13vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--white);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero h1,
.band-copy h2,
.split-block h2,
.flow-head h2,
.finale-content h2 {
  margin: 0;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero h1 {
  margin-top: 0.85rem;
  max-width: 16ch;
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  font-weight: 600;
}

.lead,
.band-copy p,
.split-block p,
.flow-head p,
.finale-content p,
.flow-steps p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 36ch;
  font-weight: 400;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.25rem;
  border-radius: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  color: var(--white);
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-light {
  background: var(--white);
  color: var(--orange-deep);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  translate: -50% 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  animation: scrollBounce 1.8s var(--ease) infinite;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.scroll-cue-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  animation: scrollPulse 1.8s ease-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes scrollPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--ink);
  border-block: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  padding: 0.95rem 0;
  animation: marquee 30s linear infinite;
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.marquee-track span::after {
  content: "•";
  margin-left: 2.4rem;
  color: var(--orange);
}

/* Proof */
.proof {
  width: min(100% - 2rem, var(--max));
  margin: 3rem auto 0;
  display: grid;
  gap: 0.85rem;
}

.proof p {
  margin: 0;
  padding: 1.25rem 1.1rem;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

.proof em {
  display: block;
  font-style: normal;
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

@media (min-width: 800px) {
  .proof {
    grid-template-columns: repeat(3, 1fr);
  }
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ========== COVERFLOW CAROUSEL ========== */
.band {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 2.5rem;
  overflow: hidden;
}

.band-copy {
  max-width: 34rem;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
}

.band-copy.center {
  margin: 0 auto 2.25rem;
  text-align: center;
  max-width: 40rem;
}

.band-copy h2,
.split-block h2,
.flow-head h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.3rem);
  color: var(--ink);
}

.band-copy p,
.split-block p,
.flow-head p,
.flow-steps p {
  color: var(--muted);
}

.band-copy.center p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.coverflow {
  position: relative;
  padding: 0.5rem 0 1rem;
}

.coverflow-stage {
  position: relative;
  height: clamp(320px, 52vw, 480px);
  perspective: 1400px;
  transform-style: preserve-3d;
}

.cover-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  width: min(72vw, 520px);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  transform-origin: center center;
  transition:
    transform 0.7s var(--ease),
    opacity 0.7s var(--ease),
    filter 0.7s var(--ease),
    box-shadow 0.7s var(--ease);
  box-shadow: 0 18px 50px rgba(15, 15, 15, 0.18);
  background: #111;
  cursor: pointer;
}

.cover-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-slide.is-active {
  z-index: 5;
  opacity: 1;
  filter: none;
  box-shadow:
    0 28px 70px rgba(15, 15, 15, 0.28),
    0 0 0 1px rgba(255, 106, 0, 0.2);
}

.cover-slide.is-prev,
.cover-slide.is-next {
  z-index: 3;
  opacity: 0.72;
  filter: saturate(0.85) brightness(0.92);
}

.cover-slide.is-far {
  z-index: 1;
  opacity: 0.28;
  filter: blur(1px) saturate(0.7) brightness(0.85);
  pointer-events: none;
}

.cover-slide.is-hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.cover-nav {
  position: absolute;
  top: 42%;
  z-index: 8;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 15, 15, 0.16);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.cover-nav svg {
  width: 20px;
  height: 20px;
}

.cover-nav.prev {
  left: max(0.75rem, calc(50% - min(42vw, 340px)));
}

.cover-nav.next {
  right: max(0.75rem, calc(50% - min(42vw, 340px)));
}

.cover-nav:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.cover-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.6rem;
}

.cover-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #d0d5dd;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.cover-dots button[aria-selected="true"] {
  width: 26px;
  background: var(--orange);
}

@media (max-width: 700px) {
  .coverflow {
    overflow: hidden;
    padding-inline: 0.5rem;
  }

  .coverflow-stage {
    height: min(72vw, 420px);
  }

  .cover-slide {
    width: min(86vw, 340px);
  }

  /* No mobile mostra só o slide ativo */
  .cover-slide.is-prev,
  .cover-slide.is-next,
  .cover-slide.is-far,
  .cover-slide.is-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden;
  }

  .cover-slide.is-active {
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .cover-nav.prev {
    left: 0.35rem;
  }

  .cover-nav.next {
    right: 0.35rem;
  }
}

/* Split */
.split {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  display: grid;
  gap: 3.5rem;
}

.split-block {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.split-block img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.text-cta {
  display: inline-flex;
  margin-top: 1.15rem;
  font-weight: 700;
  color: var(--orange-deep);
  align-items: center;
  gap: 0.35rem;
}

.text-cta::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.text-cta:hover::after {
  transform: translateX(4px);
}

@media (min-width: 900px) {
  .split-block {
    grid-template-columns: 1.15fr 1fr;
    gap: 2.75rem;
  }

  .split-block.reverse {
    grid-template-columns: 1fr 1.15fr;
  }

  .split-block.reverse img {
    order: 2;
  }
}

/* Flow / Como funciona */
.flow {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 0;
  overflow-x: clip;
}

.flow-head {
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.flow-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 36rem;
}

.flow-head.center p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.steps-story {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.steps-story-item {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.steps-story-copy h3 {
  margin: 0.7rem 0 0;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.steps-story-copy p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 36ch;
  font-size: 1.05rem;
}

.steps-story-copy ul {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.steps-story-copy li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
}

.steps-story-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 10px;
  background: #fff1e7;
  color: var(--orange-deep);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.phone-frame {
  margin: 0 auto;
  width: min(52vw, 200px);
  max-width: 220px;
  padding: 8px;
  border-radius: 22px;
  background: linear-gradient(160deg, #2a2a2e, #121214);
  box-shadow:
    0 16px 36px rgba(15, 15, 15, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-frame::before {
  content: "";
  display: block;
  width: 54px;
  height: 6px;
  margin: 2px auto 8px;
  border-radius: 999px;
  background: #3a3a40;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: top center;
  border-radius: 14px;
  background: #fff;
}

.phone-frame figcaption {
  margin-top: 0.75rem;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

/* No mobile: só 1 celular por passo (evita corte lado a lado) */
.phone-pair {
  display: grid;
  justify-items: center;
  width: 100%;
}

.phone-pair .phone-frame.small {
  display: none;
}

@media (min-width: 768px) {
  .phone-frame {
    width: min(100%, 250px);
    max-width: 260px;
    padding: 10px;
    border-radius: 28px;
  }

  .phone-frame::before {
    width: 72px;
    height: 8px;
    margin: 2px auto 10px;
  }

  .phone-frame img {
    max-height: none;
    border-radius: 18px;
  }

  .phone-pair {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 0.85rem;
  }

  .phone-pair .phone-frame.small {
    display: block;
    width: min(100%, 200px);
    transform: translateY(18px);
  }
}

@media (min-width: 900px) {
  .steps-story-item {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }

  .steps-story-item.reverse {
    grid-template-columns: 1.05fr 1fr;
  }

  .steps-story-item.reverse .steps-story-copy {
    order: 2;
  }
}

/* FAQ */
.faq {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 0.35rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* App gallery */
.app-gallery {
  width: 100%;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0;
  background: var(--soft);
}

.app-gallery .flow-head {
  width: min(100% - 2rem, var(--max));
}

.app-gallery-track {
  width: min(100% - 1.5rem, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: 0.5rem 0 1rem;
}

.app-gallery-track .phone-frame {
  width: min(52vw, 200px);
}

@media (min-width: 768px) {
  .app-gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 220px);
    justify-content: start;
    align-items: start;
    gap: 1.1rem;
    overflow-x: auto;
    padding: 0.5rem 1rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .app-gallery-track .phone-frame {
    scroll-snap-align: center;
    width: 100%;
  }
}

@media (min-width: 1100px) {
  .app-gallery-track {
    grid-auto-flow: row;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
  }
}

/* Finale */
.finale {
  position: relative;
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 3rem;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.finale-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.finale-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.2), rgba(10, 10, 10, 0.88));
}

.finale-content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
}

.finale-content .wordmark {
  font-size: clamp(2.6rem, 8vw, 4.2rem);
}

.finale-content h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.55rem, 3.5vw, 2.3rem);
}

.footer {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  background:
    radial-gradient(700px 280px at 15% 20%, rgba(255, 106, 0, 0.12), transparent 60%),
    radial-gradient(600px 260px at 90% 80%, rgba(255, 106, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #1a1b1e 0%, #121316 55%, #0d0e10 100%);
  color: rgba(255, 255, 255, 0.78);
}

.footer-watermarks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-watermarks .wm {
  position: absolute;
  width: clamp(72px, 10vw, 120px);
  height: auto;
  opacity: 0.045;
  filter: grayscale(1) brightness(2);
  user-select: none;
}

.wm-1 { top: 12%; left: 6%; transform: rotate(-18deg); }
.wm-2 { top: 18%; right: 10%; transform: rotate(22deg) scale(1.2); opacity: 0.035; }
.wm-3 { top: 48%; left: 18%; transform: rotate(12deg) scale(0.85); }
.wm-4 { bottom: 22%; right: 18%; transform: rotate(-28deg) scale(1.35); opacity: 0.04; }
.wm-5 { top: 62%; left: 46%; transform: rotate(8deg) scale(1.1); opacity: 0.03; }
.wm-6 { bottom: 12%; left: 8%; transform: rotate(-8deg) scale(0.9); }
.wm-7 { top: 8%; left: 42%; transform: rotate(30deg) scale(0.7); opacity: 0.03; }
.wm-8 { bottom: 30%; right: 4%; transform: rotate(14deg) scale(1.05); opacity: 0.038; }

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  color: var(--orange) !important;
  font-size: 1.55rem;
}

.footer-brand-block p {
  margin: 1rem 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.footer-cols {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-cols h3 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-cols a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.footer-cols a:hover {
  color: var(--orange-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4rem;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.4);
}

.footer-store {
  display: flex;
  gap: 0.75rem;
}

.footer-store a {
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.footer-store a:hover {
  background: rgba(255, 106, 0, 0.15);
  border-color: rgba(255, 106, 0, 0.45);
  color: var(--white);
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: 1.1fr 1.4fr;
    gap: 3rem;
  }

  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@keyframes kenburns {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.8%, -1.2%, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Páginas legais */
.legal-page {
  background: #f7f8fa;
}

.legal-page .topbar {
  padding-top: 0.75rem;
}

.legal-wrap {
  width: min(100% - 2rem, 820px);
  margin: 0 auto;
  padding: 7.5rem 0 4rem;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: 0 18px 50px rgba(21, 21, 21, 0.05);
}

.legal-card h1 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.legal-updated {
  margin: 0.75rem 0 0;
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

.legal-lead {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.legal-card section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.legal-card p,
.legal-card li {
  color: #4b5563;
  line-height: 1.65;
  font-size: 1rem;
}

.legal-card p {
  margin: 0 0 0.75rem;
}

.legal-card ul {
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
}

.legal-card li {
  margin-bottom: 0.4rem;
}

.legal-card a {
  color: var(--orange-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* WhatsApp flutuante */
.whats-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 0 1.05rem 0 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow:
    0 14px 34px rgba(18, 140, 126, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.whats-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.whats-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: whatsPulse 2s ease-out infinite;
  pointer-events: none;
}

.whats-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 40px rgba(18, 140, 126, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.whats-float-label {
  padding-right: 0.1rem;
}

@keyframes whatsPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (max-width: 560px) {
  .whats-float {
    right: 0.9rem;
    bottom: 0.9rem;
    padding: 0;
    width: 58px;
    height: 58px;
    justify-content: center;
  }

  .whats-float-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .marquee-track,
  .cover-slide,
  .scroll-cue,
  .scroll-cue-ring,
  .whats-float-pulse {
    animation: none !important;
    transition: none !important;
  }
}
