:root {
  --bg: #070a21;
  --bg-2: #1a0f36;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: #c8cbdf;
  --orange: #ff7a1a;
  --orange-2: #ffb000;
  --green: #20d466;
  --purple: #8f5bff;
  --cyan: #36d6ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --progress: 0%;
  --container: 1120px;
  --container-wide: 1240px;
  --section-gap: clamp(44px, 8vw, 92px);
  --card-pad: clamp(20px, 4vw, 36px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 86px;
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 122, 26, 0.24), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(143, 91, 255, 0.34), transparent 23rem),
    radial-gradient(circle at 35% 90%, rgba(32, 212, 102, 0.13), transparent 22rem),
    linear-gradient(145deg, #050716 0%, var(--bg) 46%, var(--bg-2) 100%);
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  opacity: 0.8;
}

body::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 39%, rgba(255, 255, 255, 0.045) 39% 40%, transparent 40%),
    linear-gradient(62deg, transparent 0 61%, rgba(255, 122, 26, 0.08) 61% 62%, transparent 62%);
}

body::after {
  width: 28rem;
  height: 28rem;
  right: -14rem;
  top: 18rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 0, 0.13), transparent 60%);
  filter: blur(1px);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  font: inherit;
}

blockquote {
  margin: 0;
  padding: 0;
}

::selection {
  background: rgba(255, 176, 0, 0.28);
  color: #fff;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: var(--progress);
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--cyan));
  box-shadow: 0 0 22px rgba(32, 212, 102, 0.5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 33, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.header-cta,
.nav-links,
.btn,
.hero-proof,
.filter-bar,
.business-picker,
.testimonial-controls {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  box-shadow: 0 0 28px rgba(255, 122, 26, 0.45);
}

.nav-links {
  display: none;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  padding: 11px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  min-height: 44px;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #04130a;
  background: var(--green);
  box-shadow: 0 0 26px rgba(32, 212, 102, 0.36);
  font-weight: 800;
}

.section {
  position: relative;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 67px);
  display: grid;
  align-content: center;
  gap: 18px;
  margin: 0;
  padding: 24px 16px 104px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 7, 22, 0.97) 0%, rgba(7, 10, 33, 0.88) 48%, rgba(26, 15, 54, 0.52) 100%),
    radial-gradient(circle at 82% 68%, rgba(255, 122, 26, 0.32), transparent 18rem),
    radial-gradient(circle at 14% 12%, rgba(143, 91, 255, 0.2), transparent 18rem);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 43%, rgba(255, 255, 255, 0.06) 43% 44%, transparent 44%),
    radial-gradient(circle at 74% 18%, rgba(54, 214, 255, 0.16), transparent 14rem);
}

.hero::after {
  right: -12rem;
  bottom: -12rem;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 176, 0, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.18), transparent 62%);
}

.hero-copy,
.hero-visual,
.quick-benefits article,
.briefing-panel,
.logo-card,
.gallery-item,
.split,
.process-grid > li,
.included,
.testimonial-shell,
.final-cta,
.portfolio {
  position: relative;
}

.hero-copy {
  z-index: 3;
  max-width: 560px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--orange-2);
  font-size: clamp(0.74rem, 1.8vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 11.6vw, 6.1rem);
  line-height: 0.88;
  font-weight: 800;
  text-wrap: balance;
  background: linear-gradient(130deg, #ffffff 0%, #ffffff 36%, var(--orange-2) 66%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.72rem, 6vw, 3.15rem);
  line-height: 1.04;
  font-weight: 800;
  text-wrap: balance;
}

h3 {
  margin-bottom: 9px;
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.16;
  font-weight: 800;
}

.subtitle {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 176, 0, 0.32);
  border-radius: 999px;
  background: rgba(255, 176, 0, 0.1);
  color: #f7f1ff;
  font-weight: 800;
  font-size: clamp(0.85rem, 3.8vw, 1.25rem);
}

.price-card {
  width: min(100%, 330px);
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 176, 0, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 176, 0, 0.16), transparent 9rem),
    linear-gradient(135deg, rgba(255, 122, 26, 0.25), rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 44px rgba(255, 122, 26, 0.25);
}

.tilt-card {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.price-card span,
.price-card small,
.message-preview span,
.testimonial-card span {
  color: var(--muted);
}

.price-card span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card strong {
  font-size: clamp(2.45rem, 10vw, 4.7rem);
  line-height: 0.92;
  font-weight: 800;
}

.price-card small {
  font-weight: 700;
}

.hero-text,
.section p {
  color: var(--muted);
  font-size: clamp(0.98rem, 2.4vw, 1.06rem);
  line-height: 1.62;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.btn {
  min-height: 58px;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

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

.btn-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(3, 18, 8, 0.12);
  font-size: 0.72rem;
}

.btn-whatsapp {
  color: #031208;
  background: linear-gradient(135deg, #31f17a, var(--green));
  box-shadow: 0 0 34px rgba(32, 212, 102, 0.44);
}

.btn-whatsapp:hover {
  box-shadow: 0 0 54px rgba(32, 212, 102, 0.72);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.hero-proof span {
  min-width: 0;
  padding: 8px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.hero-proof strong {
  color: #fff;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  isolation: isolate;
  min-height: 0;
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -4%;
  width: 72vw;
  height: 72vw;
  max-width: 460px;
  max-height: 460px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.25), transparent 60%);
  filter: blur(4px);
}

.hero-visual img {
  position: absolute;
  right: -94px;
  bottom: -136px;
  width: min(105vw, 440px);
  max-width: none;
  margin: 0;
  opacity: 0.82;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.48));
  animation: floaty 5.5s ease-in-out infinite;
}

.orbit-card {
  position: absolute;
  z-index: 2;
  display: none;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 12, 35, 0.8);
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: orbitPulse 3.8s ease-in-out infinite;
}

.orbit-card-one {
  top: auto;
  right: 14px;
  bottom: 33%;
}

.orbit-card-two {
  right: 118px;
  bottom: 17%;
  left: auto;
  animation-delay: 0.4s;
}

.orbit-card-three {
  right: 22px;
  bottom: 8%;
  animation-delay: 0.8s;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  display: none;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-scroll span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-2);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 13px 0;
  animation: ticker 24s linear infinite;
}

.ticker span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.quick-benefits,
.logo-grid,
.gallery-grid,
.process-grid,
.check-list {
  display: grid;
  gap: clamp(12px, 2.8vw, 18px);
}

.quick-benefits {
  padding: clamp(28px, 6vw, 54px) 0 8px;
}

.quick-benefits article,
.briefing-panel,
.logo-card,
.gallery-item,
.included,
.testimonial-shell,
.final-cta,
.portfolio,
.split,
.process-grid > li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quick-benefits article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(16px, 3.6vw, 22px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quick-benefits p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.48;
}

.icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #130800;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(18px, 4vw, 30px);
}

.section-heading p {
  max-width: 680px;
}

.briefing-panel,
.examples,
.gallery-section,
.split,
.process,
.included,
.testimonials,
.final-cta,
.portfolio {
  margin-top: var(--section-gap);
}

.briefing-panel,
.split,
.included,
.testimonial-shell,
.final-cta,
.portfolio {
  padding: var(--card-pad);
}

.business-picker,
.filter-bar {
  flex-wrap: wrap;
  gap: 8px;
}

.business-picker {
  margin: 20px 0 16px;
}

.choice,
.filter-chip,
.arrow-btn {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 800;
}

.choice,
.filter-chip {
  padding: 0 16px;
}

.choice.is-active,
.filter-chip.is-active {
  color: #130800;
  border-color: rgba(255, 176, 0, 0.7);
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 0 24px rgba(255, 122, 26, 0.28);
}

.message-preview {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(32, 212, 102, 0.26);
  border-radius: 8px;
  background: rgba(32, 212, 102, 0.08);
}

.message-preview strong {
  line-height: 1.35;
}

.logo-card {
  min-height: 232px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 24px);
}

.quick-benefits article:hover {
  border-color: rgba(255, 176, 0, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 176, 0, 0.1);
}

.logo-card:hover,
.gallery-item:hover,
.process-grid > li:hover {
  --ty: -4px;
  border-color: rgba(255, 255, 255, 0.28);
}

.process-grid > li:hover {
  border-color: rgba(143, 91, 255, 0.32);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 28px rgba(143, 91, 255, 0.1);
}

.logo-card p,
.gallery-item p,
.process-grid > li p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.dark-sample {
  background: linear-gradient(145deg, #070912, #191132);
}

.light-sample {
  color: #101224;
  background: linear-gradient(145deg, #ffffff, #eef0ff);
}

.light-sample p {
  color: #4b5168;
}

.mockup-sample {
  background: linear-gradient(145deg, rgba(32, 212, 102, 0.14), rgba(143, 91, 255, 0.16));
}

.sample-mark {
  width: 78px;
  height: 78px;
  margin-bottom: 42px;
  border-radius: 22px 8px 26px 8px;
  transform: rotate(12deg);
}

.mark-orange {
  background: conic-gradient(from 140deg, var(--orange), #fff2d8, var(--purple), var(--orange));
  box-shadow: 0 0 28px rgba(255, 122, 26, 0.38);
}

.mark-purple {
  background: conic-gradient(from 190deg, #202548, #8f5bff, #20d466, #202548);
}

.mark-green {
  width: 58px;
  height: 58px;
  margin: 40px auto 0;
  background: conic-gradient(from 90deg, #20d466, #fff, #ff7a1a, #20d466);
}

.phone-mock {
  width: 112px;
  height: 172px;
  margin-bottom: 18px;
  border: 6px solid rgba(255, 255, 255, 0.84);
  border-radius: 24px;
  background: #090b1f;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.gallery-section {
  width: min(var(--container-wide), calc(100% - 32px));
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 4rem -2rem auto;
  z-index: -1;
  height: 44rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 176, 0, 0.16), transparent 13rem),
    radial-gradient(circle at 84% 42%, rgba(54, 214, 255, 0.12), transparent 16rem);
}

.gallery-toolbar {
  position: sticky;
  top: 68px;
  z-index: 25;
  display: grid;
  gap: 12px;
  margin-bottom: clamp(30px, 5vw, 46px);
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(7, 10, 33, 0.96), rgba(7, 10, 33, 0.72));
  backdrop-filter: blur(16px);
}

.filter-bar {
  position: relative;
  margin-bottom: 0;
}

.filter-chip {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.filter-chip::after {
  content: "";
  position: absolute;
  inset: auto 14px 7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.filter-chip:hover {
  transform: translateY(-2px);
}

.filter-chip.is-active::after {
  opacity: 0.5;
  transform: scaleX(1);
}

.gallery-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gallery-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
}

.gallery-experience {
  display: grid;
  gap: 22px;
}

.gallery-preview {
  display: none;
}

.gallery-grid {
  display: flex;
  grid-template-columns: none;
  gap: clamp(18px, 4vw, 30px);
  max-width: none;
  width: 100%;
  margin-inline: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px max(16px, calc((100vw - var(--container-wide)) / 2)) 24px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(16px, calc((100vw - var(--container-wide)) / 2));
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 176, 0, 0.8) rgba(255, 255, 255, 0.08);
  perspective: 1200px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-grid::-webkit-scrollbar {
  height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: 999px;
}

.gallery-grid.is-filtering {
  opacity: 0.35;
  transform: translateY(10px);
}

.gallery-item {
  flex: 0 0 min(82vw, 520px);
  min-height: auto;
  padding: 8px 0 14px;
  overflow: visible;
  cursor: zoom-in;
  scroll-snap-align: center;
  transform: translateY(26px) scale(0.96);
  transform-origin: center;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item.gallery-enter {
  opacity: 0;
}

.gallery-item.gallery-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: var(--stagger, 0ms);
}

.gallery-item.gallery-active {
  filter: drop-shadow(0 0 34px rgba(255, 176, 0, 0.18));
}

.real-logo-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.real-logo-item:hover {
  --logo-scale: 1.035;
}

.logo-image-frame {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(220px, 46vw, 360px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.logo-image-frame img {
  width: min(100%, 580px);
  max-height: clamp(260px, 54vw, 390px);
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0) scale(var(--logo-scale, 1));
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.gallery-count {
  display: inline-flex;
  width: fit-content;
  padding: 7px 9px;
  border-radius: 999px;
  color: #130800;
  background: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 800;
}

.logo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 8px;
  padding: 24px 12px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 122, 26, 0.16), transparent 20rem),
    rgba(3, 5, 18, 0.92);
  backdrop-filter: blur(18px);
  animation: lightboxIn 220ms ease both;
}

.logo-lightbox[hidden] {
  display: none;
}

.logo-lightbox figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.logo-lightbox img {
  max-width: min(88vw, 940px);
  max-height: 74vh;
  object-fit: contain;
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.5));
  animation: logoZoomIn 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo-lightbox figcaption {
  color: var(--muted);
  font-weight: 700;
}

.lightbox-close,
.lightbox-arrow {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.lightbox-arrow {
  width: 44px;
  height: 72px;
  border-radius: 999px;
  font-size: 2rem;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
}

.created-logo {
  display: grid;
  place-items: center;
  height: 144px;
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
}

.created-logo span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px 8px 24px 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-aurora {
  background: radial-gradient(circle at 30% 25%, #ffdf8a, transparent 7rem), linear-gradient(135deg, #201035, #ff7a1a);
}

.logo-bento {
  background: radial-gradient(circle at 72% 24%, #fff2d8, transparent 6rem), linear-gradient(135deg, #160d0a, #ff4f1a);
}

.logo-lume {
  background: radial-gradient(circle at 20% 20%, #ffc2e4, transparent 7rem), linear-gradient(135deg, #2a1430, #8f5bff);
}

.logo-vetora {
  background: radial-gradient(circle at 76% 18%, #9dffe0, transparent 7rem), linear-gradient(135deg, #071f22, #20d466);
}

.logo-rapid {
  background: radial-gradient(circle at 24% 18%, #ffffff, transparent 6rem), linear-gradient(135deg, #0a1028, #36d6ff);
}

.logo-prime {
  background: radial-gradient(circle at 74% 22%, #ffdb78, transparent 6rem), linear-gradient(135deg, #17120b, #b57d13);
}

.logo-nonna {
  background: radial-gradient(circle at 28% 22%, #ffe5bd, transparent 7rem), linear-gradient(135deg, #190907, #de3d24);
}

.logo-bella {
  background: radial-gradient(circle at 70% 18%, #ffd7f1, transparent 7rem), linear-gradient(135deg, #21123a, #ff7a1a);
}

.portfolio-link {
  width: 100%;
  margin-top: 24px;
}

.tag-cloud {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-cloud li {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f5ff;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: default;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.tag-cloud li:hover {
  border-color: rgba(255, 176, 0, 0.36);
  background: rgba(255, 176, 0, 0.1);
  box-shadow: 0 0 18px rgba(255, 176, 0, 0.1);
}

.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-grid > li {
  padding: clamp(18px, 3vw, 24px);
}

.process-grid > li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #130800;
  background: var(--orange-2);
  font-weight: 800;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 14px 14px 14px 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f9f9ff;
  font-weight: 700;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #031208;
  background: var(--green);
}

.testimonial-shell {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 360ms ease;
}

.testimonial-card {
  position: relative;
  min-width: 100%;
  padding: 4px;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: -2px;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.14;
  pointer-events: none;
  font-weight: 800;
}

.testimonial-card p {
  color: #fff;
  font-size: clamp(1.02rem, 3vw, 1.2rem);
  line-height: 1.58;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.testimonial-avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
  color: #031208;
}

.testimonial-card:nth-child(1) .testimonial-avatar {
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.testimonial-card:nth-child(2) .testimonial-avatar {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.testimonial-card:nth-child(3) .testimonial-avatar {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  font-weight: 800;
}

.stars {
  margin-bottom: 12px;
  color: var(--orange-2);
  letter-spacing: 2px;
}

.testimonial-controls {
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.arrow-btn {
  width: 46px;
  padding: 0;
  color: #fff;
  font-size: 1.4rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--green);
}

.final-cta {
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 176, 0, 0.2), transparent 18rem),
    radial-gradient(circle at 84% 8%, rgba(255, 122, 26, 0.32), transparent 15rem),
    radial-gradient(circle at 10% 85%, rgba(143, 91, 255, 0.2), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.final-cta .btn,
.portfolio .btn,
.briefing-panel .btn {
  width: 100%;
  margin-top: 12px;
}

.portfolio {
  display: grid;
  gap: 12px;
  align-items: center;
}

.footer {
  position: relative;
  width: min(var(--container), calc(100% - 32px));
  margin: clamp(34px, 6vw, 64px) auto 0;
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0 0 8px;
}

.footer a {
  color: #fff;
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  bottom: 14px;
  z-index: 65;
  width: calc(100% - 32px);
  max-width: calc(100vw - 32px);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #031208;
  background: linear-gradient(135deg, #31f17a, var(--green));
  box-shadow: 0 0 34px rgba(32, 212, 102, 0.52), 0 18px 60px rgba(0, 0, 0, 0.45);
  font-weight: 800;
  text-align: center;
  animation: ctaGlow 2.8s ease-in-out infinite;
}

.buyer-toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 104px;
  z-index: 64;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  width: min(358px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 10, 33, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38), 0 0 26px rgba(32, 212, 102, 0.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.buyer-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.buyer-toast[hidden] {
  display: none;
}

.buyer-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #04130a;
  background: linear-gradient(135deg, var(--green), var(--orange-2));
  font-size: 0.78rem;
  font-weight: 800;
}

.buyer-toast strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.88rem;
  font-weight: 800;
}

.buyer-toast p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.34;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

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

@keyframes orbitPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.03);
  }
}

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

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@keyframes ctaGlow {
  0%, 100% {
    box-shadow: 0 0 34px rgba(32, 212, 102, 0.52), 0 18px 60px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow: 0 0 58px rgba(32, 212, 102, 0.82), 0 18px 60px rgba(0, 0, 0, 0.45);
  }
}

@keyframes lightboxIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding: 14px max(28px, calc((100vw - var(--container)) / 2));
  }

  .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
    align-items: center;
    align-content: center;
    min-height: calc(100svh - 71px);
    padding: 34px max(28px, calc((100vw - var(--container)) / 2)) 54px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    min-height: 560px;
  }

  .hero-visual img {
    right: auto;
    left: 50%;
    bottom: -260px;
    width: min(42vw, 520px);
    opacity: 1;
    translate: -50% 0;
    transform: translateX(-50%);
  }

  .hero-visual::before {
    inset: 11% 0 0;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
  }

  .orbit-card-one {
    display: block;
    top: 19%;
    right: 0;
    bottom: auto;
  }

  .orbit-card-two {
    display: block;
    left: 0;
    right: auto;
    bottom: 23%;
  }

  .orbit-card-three {
    display: block;
    right: 10%;
    bottom: 9%;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    min-width: 220px;
  }

  .hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-proof span {
    padding: 9px 11px;
    font-size: 0.86rem;
    font-weight: 700;
    text-align: left;
  }

  .hero-scroll {
    display: block;
  }

  .quick-benefits,
  .logo-grid,
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .process-grid {
    position: relative;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    top: calc(clamp(18px, 3vw, 24px) + 19px);
    left: 16.5%;
    right: 16.5%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 176, 0, 0), rgba(255, 176, 0, 0.5), rgba(143, 91, 255, 0.5), rgba(143, 91, 255, 0));
    pointer-events: none;
    z-index: 0;
  }

  .process-grid > li {
    z-index: 1;
  }

  .briefing-panel {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
  }

  .briefing-panel .btn,
  .portfolio-link {
    width: fit-content;
    min-width: 250px;
  }

  .gallery-experience {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .gallery-preview {
    display: none;
  }

  .briefing-panel > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(30px, 5vw, 58px);
    align-items: center;
  }

  .check-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .portfolio {
    grid-template-columns: 1fr auto;
  }

  .portfolio .btn {
    width: auto;
    min-width: 220px;
  }

  .final-cta .btn {
    width: fit-content;
    min-width: 280px;
    margin-inline: auto;
  }

  .sticky-cta {
    display: none;
  }

  .buyer-toast {
    left: 24px;
    right: auto;
    bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .hero-visual img {
    width: min(37vw, 500px);
  }

  .briefing-panel,
  .split,
  .included,
  .testimonial-shell,
  .final-cta,
  .portfolio {
    padding: clamp(34px, 4vw, 48px);
  }

  .gallery-grid {
    grid-template-columns: none;
  }

  .gallery-item {
    flex-basis: min(46vw, 560px);
  }
}

/* ============================================================
   Skip Navigation
   ============================================================ */
.skip-nav {
  position: fixed;
  top: -100%;
  left: 50%;
  z-index: 200;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  background: var(--orange-2);
  color: #130800;
  font-weight: 800;
  font-size: 0.92rem;
  transform: translateX(-50%);
  transition: top 180ms ease;
  white-space: nowrap;
  text-decoration: none;
}

.skip-nav:focus {
  top: 0;
  outline: 3px solid #130800;
  outline-offset: -3px;
}

/* ============================================================
   Focus Visible — acessibilidade por teclado
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 3px;
  border-radius: 3px;
}

.btn:focus-visible,
.header-cta:focus-visible,
.choice:focus-visible,
.filter-chip:focus-visible,
.arrow-btn:focus-visible,
.gallery-arrow:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 4px;
  border-radius: 999px;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 8px;
  border-radius: 0;
}

.faq-toggle:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: -2px;
  border-radius: 6px;
}

/* ============================================================
   FAQ — Perguntas Frequentes
   ============================================================ */
.faq {
  margin-top: var(--section-gap);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-item[open] {
  border-color: rgba(255, 176, 0, 0.34);
  box-shadow: 0 0 32px rgba(255, 176, 0, 0.07);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: clamp(16px, 3vw, 22px);
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(0.96rem, 2.2vw, 1.02rem);
  text-align: left;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 180ms ease;
}

.faq-toggle::-webkit-details-marker {
  display: none;
}

.faq-toggle::marker {
  display: none;
}

.faq-item[open] .faq-toggle {
  color: var(--orange-2);
}

.faq-chevron {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--orange-2);
  border-radius: 999px;
  transition: transform 240ms ease, opacity 240ms ease;
}

.faq-chevron::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-chevron::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-chevron::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-answer {
  margin: 0;
  padding: 0 clamp(16px, 3vw, 22px) clamp(16px, 3vw, 22px);
  color: var(--muted);
  font-size: clamp(0.94rem, 2vw, 1rem);
  line-height: 1.65;
}

.faq-answer strong {
  color: var(--text);
}

/* ============================================================
   Footer melhorado
   ============================================================ */
.footer-inner {
  display: grid;
  gap: 6px;
}

.footer-brand {
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

.footer-contact {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 0;
}

.footer-contact a {
  color: #fff;
  font-weight: 700;
}

.footer-copy {
  margin: 2px 0 0;
}

.footer-copy small {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ============================================================
   @media print
   ============================================================ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    animation: none !important;
    transition: none !important;
  }

  h1,
  h2,
  h3 {
    -webkit-text-fill-color: #000 !important;
    background: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    padding-bottom: 0;
  }

  .site-header,
  .scroll-progress,
  .ticker,
  .gallery-section,
  .testimonials,
  .briefing-panel,
  .examples,
  .final-cta,
  .portfolio,
  .sticky-cta,
  .buyer-toast,
  .logo-lightbox,
  .hero-visual,
  .orbit-card,
  .hero-scroll,
  .hero-proof,
  .hero-actions .btn-secondary,
  .skip-nav {
    display: none !important;
  }

  main {
    padding: 0;
  }

  .section {
    width: 100%;
    margin-top: 20pt;
    page-break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    font-style: italic;
  }

  a[href^="https://wa.me"]::after {
    content: " (WhatsApp: 62 98132-1845)";
  }

  a[href^="#"]::after,
  a[href^="https://abre.ai"]::after {
    content: "";
  }
}

/* ===== HERO MOBILE FIX: texto acima, mascote abaixo (sem sobreposicao) ===== */
@media (max-width: 719.98px) {
  .hero {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 8px;
    padding: 32px 20px 48px;
    min-height: auto;
  }
  .hero-copy {
    max-width: 100%;
    text-align: center;
    z-index: 3;
  }
  .hero-badge,
  .eyebrow {
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 6px;
  }
  /* Mascote agora flui ABAIXO do texto, em vez de cobrir a hero inteira */
  .hero-visual {
    position: relative;
    inset: auto;
    min-height: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }
  .hero-visual img {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    translate: none;
    width: min(74%, 320px);
    max-width: 320px;
    margin: 0 auto;
    display: block;
    opacity: 1;
  }
  .hero-visual::before {
    inset: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 78%;
    height: 60%;
    max-width: 320px;
    max-height: 320px;
  }
  /* esconde cards orbitais flutuantes no mobile para nao poluir */
  .orbit-card { display: none !important; }
}

@media (max-width: 420px) {
  .hero { padding: 26px 16px 40px; }
  .hero-visual img { width: min(78%, 280px); }
}
