/* ====================================================
   Gateway Essentials — Landing Page v3 (Premium Redesign)
   Design: Corporate Light / Vibrant Orange / Sharp Geometry
   Inspiration: Zoop.com.br level quality
   ==================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-white: #ffffff;
  --bg-light: #f3f7f5;
  --bg-off: #f7fbf8;
  --bg-dark: #050806;
  --bg-dark-card: #0f1a14;
  --accent: #00c26e;
  --accent-hover: #00e080;
  --accent-light: #6ee7b0;
  --accent-glow: rgba(0, 194, 110, 0.28);
  --accent-subtle: rgba(0, 194, 110, 0.10);
  --text-dark: #1d1d1b;
  --text-body: #3f3f3f;
  --text-muted: #7f7f7f;
  --text-light: #b0b0b0;
  --text-white: #ffffff;
  --border-light: #e7e7e7;
  --border-accent: rgba(0, 194, 110, 0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.16);
  --radius-none: 0px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 100px;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.32s ease-in-out;
  --transition-spring: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Desktop only: slight scale-down on mid widths — avoid shrinking mobile */
@media (min-width: 601px) and (max-width: 1250px) {
  html { font-size: 55%; }
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  background: var(--bg-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, li { list-style: none; }

.container {
  max-width: 1246px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 1050px) { .container { padding: 0 2.4rem; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-accent { color: var(--accent); }

.section-overline {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1.6rem;
}

.section-header { margin-bottom: 5.6rem; }
.section-header h2 {
  font-size: 4rem;
  margin-bottom: 2.4rem;
  color: var(--text-dark);
}
.section-header p {
  font-size: 2rem;
  color: var(--text-muted);
  max-width: 60rem;
  line-height: 1.5;
}

@media (max-width: 730px) {
  .section-header h2 { font-size: 3.2rem; }
  .section-header p { font-size: 1.8rem; }
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.8rem 3.2rem;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  line-height: 1.5;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
  color: #fff;
}
.btn-primary svg { transition: transform var(--transition-fast); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.8rem 3.2rem;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  line-height: 1.5;
}
.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-dark);
}

.btn-sm {
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 20px rgba(0,194,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,194,110,0); }
}
.btn-pulse { animation: pulse-ring 2.5s cubic-bezier(0.66,0,0,1) infinite; }

/* Demo CTA — glow/shimmer without transform fight on hover */
.btn-demo {
  position: relative;
  overflow: hidden;
  background: #fff !important;
  color: #0c0c0c !important;
  z-index: 1;
  /* glow only box-shadow; hero row overrides with entrance+glow compound */
  animation: demo-glow 2.4s ease-in-out infinite;
}
.btn-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(0, 194, 110, 0.22) 45%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(0, 194, 110, 0.22) 55%,
    transparent 75%
  );
  transform: translateX(-120%);
  animation: demo-shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}
.btn-demo > * {
  position: relative;
  z-index: 1;
}
.btn-demo:hover,
.btn-demo:focus-visible {
  background: #fff !important;
  color: #0c0c0c !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 3px rgba(0, 194, 110, 0.35),
    0 14px 36px rgba(0, 194, 110, 0.28);
  opacity: 1 !important;
  visibility: visible !important;
  /* do not touch `animation` here — re-declaring restarts hero-rise and flashes opacity */
}
@keyframes demo-glow {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(0, 194, 110, 0.45),
      0 8px 24px rgba(0, 194, 110, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(0, 194, 110, 0),
      0 12px 32px rgba(0, 194, 110, 0.22);
  }
}
@keyframes demo-shimmer {
  0%, 35% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

/* ---------- Navbar ---------- */
.navbar {
  position: absolute; /* scrolls away with the page (not sticky/fixed) */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2.4rem 0;
  transition: all var(--transition-fast);
}
.navbar.scrolled {
  /* kept for JS compat; unused while navbar is absolute */
  background: transparent;
  box-shadow: none;
  padding: 2.4rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8rem;
}
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--text-white);
  transition: color var(--transition-fast);
}
.navbar.scrolled .logo { color: var(--text-dark); }
.logo-mark {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.8rem;
  flex-shrink: 0;
  display: block;
}
.logo-wordmark {
  height: 4.4rem;
  width: auto;
  max-width: min(24rem, 42vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}
/* Stack light/dark in the same slot — only opacity swaps on scroll (no duplicate layout). */
.logo-wordmark--light {
  position: relative;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.logo-wordmark--dark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.navbar.scrolled .logo-wordmark--light { opacity: 0; }
.navbar.scrolled .logo-wordmark--dark { opacity: 1; }
/* Compact nav: mark + stacked wordmark already includes mark — hide duplicate mark when using full lockup */
.logo .logo-mark { display: none; }
.logo--footer .logo-lockup {
  height: 7.2rem;
  width: auto;
  max-width: 36rem;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.logo-icon {
  width: 3.6rem;
  height: 3.6rem;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 1.8rem; height: 1.8rem; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}
.nav-links a {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--accent); }
.navbar.scrolled .nav-links a { color: var(--text-body); }
.navbar.scrolled .nav-links a:hover { color: var(--accent); }

.nav-cta {
  padding: 1.2rem 2.4rem !important;
  background: var(--accent) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.4rem !important;
  border-radius: var(--radius-full) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: #ffffff !important;
}

.mobile-menu-btn { display: none; color: var(--text-white); }
.navbar.scrolled .mobile-menu-btn { color: var(--text-dark); }

.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav.active { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  color: var(--text-dark);
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 9.4rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,194,110,0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(0,194,110,0.12), transparent 50%),
    linear-gradient(180deg, #050806 0%, #0a1610 45%, #0d3323 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20rem;
  right: -10rem;
  width: 60rem;
  height: 60rem;
  background: radial-gradient(circle, rgba(0,194,110,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.6rem;
}
.hero-content {
  max-width: 72rem;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  text-align: center;
  margin: 0 auto;
}
.hero h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2.4rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4.8rem;
  max-width: 62rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.hero .btn-outline {
  color: var(--text-white);
  border-color: rgba(255,255,255,0.3);
}
.hero .btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg-dark);
}

/* Video + CTA no hero (antes era seção showcase) */
.hero-showcase {
  width: 100%;
  max-width: 96rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-showcase h2 {
  font-size: 3.6rem;
  color: var(--text-white);
  max-width: 88rem;
  margin-bottom: 3.2rem;
  line-height: 1.25;
}
.hero-showcase .showcase-video {
  margin-bottom: 3.2rem;
}
.hero-showcase .showcase-cta {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.showcase-demo-lead {
  max-width: 56rem;
  margin: -1.6rem auto 2.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.7rem;
  line-height: 1.5;
}
.showcase-demo-access {
  width: 100%;
  max-width: 72rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}
.showcase-demo-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  text-align: left;
  padding: 2rem 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 194, 110, 0.28);
  background:
    linear-gradient(160deg, rgba(0, 194, 110, 0.12), rgba(5, 8, 6, 0.55)),
    rgba(10, 22, 16, 0.92);
  color: var(--text-white);
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.showcase-demo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 110, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 194, 110, 0.2), 0 22px 48px rgba(0, 194, 110, 0.18);
}
.showcase-demo-kicker {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.showcase-demo-card strong {
  font-size: 2rem;
  line-height: 1.2;
}
.showcase-demo-hint {
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 730px) {
  .showcase-demo-access {
    grid-template-columns: 1fr;
  }
  .showcase-demo-lead {
    font-size: 1.55rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 990px) {
  .hero-inner { gap: 4rem; }
  .hero-content { max-width: 100%; }
  .hero-showcase h2 { font-size: 3rem; }
}
@media (max-width: 800px) {
  .hero-inner { gap: 3.2rem; padding-bottom: 5.6rem; }
  .hero-content { padding-bottom: 0; }
}
@media (max-width: 730px) {
  .hero { padding-top: 8rem; }
  .hero h1 { font-size: 3.2rem; }
  .hero-subtitle { font-size: 1.8rem; margin-bottom: 3.2rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline { width: 100%; justify-content: center; }
  .hero-showcase h2 { font-size: 2.4rem; margin-bottom: 2.4rem; }
  .hero-showcase .showcase-cta { flex-direction: column; width: 100%; }
  .hero-showcase .showcase-cta .btn-primary { width: 100%; }
}

/* ---------- LOGO BAR ---------- */
.logo-bar {
  padding: 4rem 0;
  background: var(--bg-light);
  overflow: hidden;
}
.logo-bar-label {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 2.4rem;
}
.logo-marquee {
  display: flex;
  gap: 6rem;
  animation: marquee 40s linear infinite;
}
.logo-marquee img {
  height: 3.2rem;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all var(--transition-base);
}
.logo-marquee img:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-marquee-wrap {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* ---------- BENEFÍCIOS / WHY US ---------- */
.why-us {
  padding: 10rem 0;
  background: var(--bg-white);
}
.why-us-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 6.4rem;
}
.why-us-header .section-header { margin-bottom: 0; }
.why-us-intro {
  max-width: 44rem;
  font-size: 1.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 1.6rem;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why-us-card {
  padding: 5rem 4rem 4rem;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}
.why-us-card:nth-child(3n) { border-right: none; }
.why-us-card:nth-last-child(-n+3) { border-bottom: none; }
.why-us-card:hover {
  background: #f3fbf7;
  z-index: 2;
}

.why-us-icon {
  width: 6.4rem;
  height: 7.2rem;
  margin-bottom: 2.4rem;
}
.why-us-icon img { width: 100%; height: 100%; }
.why-us-card h3 {
  font-size: 2rem;
  margin-bottom: 1.6rem;
  color: var(--text-dark);
}
.why-us-card p {
  font-size: 1.6rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-us-header { flex-direction: column; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-card { border-right: none; border-bottom: 1px solid var(--border-light); }
  .why-us-card:last-child { border-bottom: none; }
}

/* ---------- NARRATIVA (virada / passos / audiência / founder) ---------- */
.narrative-shift { padding-top: 8rem; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 4rem;
}
.pain-card {
  padding: 2.4rem;
  border-radius: 1.6rem;
  border: 1px solid var(--border-light);
  background: #fafafa;
}
.pain-card strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}
.pain-card p {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.shift-banner {
  margin-top: 2.4rem;
  padding: 2rem 2.4rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(0,194,110,0.2);
  background: rgba(0,194,110,0.06);
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.55;
  color: var(--text-body);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.pillar-card {
  padding: 2.8rem 2.4rem;
  border-radius: 1.8rem;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: 0 10px 30px rgba(4, 20, 12, 0.04);
}
.pillar-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.pillar-card h3 {
  font-size: 2.2rem;
  margin: 0 0 1rem;
  color: var(--text-dark);
}
.pillar-card p {
  margin: 0;
  font-size: 1.55rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.narrative-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 3.2rem;
}
.btn-outline-dark {
  color: var(--text-dark) !important;
  border-color: rgba(4, 20, 12, 0.22) !important;
}
.btn-outline-dark:hover {
  color: var(--bg-dark) !important;
}

.how-section {
  padding: 8rem 0;
  background: #f6faf8;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.step-card {
  padding: 2.4rem 2rem;
  border-radius: 1.6rem;
  background: #fff;
  border: 1px solid var(--border-light);
}
.step-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.step-card h3 {
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
}
.step-card p {
  margin: 0;
  font-size: 1.45rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.audience-section { padding: 8rem 0; background: var(--bg-white); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}
.audience-card {
  padding: 2.8rem 2.4rem;
  border-radius: 1.8rem;
  border: 1px solid var(--border-light);
}
.audience-card--yes { background: #f3fbf7; border-color: rgba(0,194,110,0.25); }
.audience-card--no { background: #fafafa; }
.audience-card h3 {
  font-size: 2rem;
  margin: 0 0 1.6rem;
}
.audience-card ul {
  margin: 0;
  padding-left: 1.8rem;
  display: grid;
  gap: 1rem;
}
.audience-card li {
  font-size: 1.55rem;
  color: var(--text-body);
  line-height: 1.45;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.choice-card {
  padding: 2.8rem 2.4rem;
  border-radius: 1.8rem;
  border: 1px solid var(--border-light);
}
.choice-card--bad { background: #fcfcfc; opacity: 0.92; }
.choice-card--good {
  background: #04140c;
  color: #fff;
  border-color: #04140c;
}
.choice-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--accent);
}
.choice-card--bad .choice-label { color: var(--text-muted); }
.choice-card h3 {
  font-size: 2.1rem;
  margin: 0 0 1.4rem;
}
.choice-card ul {
  margin: 0;
  padding-left: 1.8rem;
  display: grid;
  gap: 0.9rem;
}
.choice-card li {
  font-size: 1.5rem;
  line-height: 1.45;
}
.choice-card--good li { color: rgba(255,255,255,0.82); }

.founder-section {
  padding: 6.4rem 0 8rem;
  background: #f6faf8;
  border-top: 1px solid var(--border-light);
}
.founder-card {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  padding: 2.8rem;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid var(--border-light);
}
.founder-avatar {
  width: 12.8rem;
  height: 16rem;
  border-radius: 1.6rem;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  background: #111;
  box-shadow: 0 12px 28px rgba(4, 20, 12, 0.18);
}
.founder-body h3 {
  margin: 0 0 0.4rem;
  font-size: 2.2rem;
}
.founder-role {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
}
.founder-body p {
  margin: 0 0 1.2rem;
  font-size: 1.55rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.founder-ig {
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}
.founder-ig:hover { color: var(--accent); }

@media (max-width: 900px) {
  .pain-grid,
  .pillar-grid,
  .steps-grid,
  .audience-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
}

/* ---------- FEATURES GRID ---------- */
.features-section {
  padding: 10rem 0;
  background: var(--bg-light);
  position: relative;
}
.features-header {
  margin-bottom: 4.8rem;
}
.features-header .section-header p {
  margin-left: auto;
  margin-right: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3.2rem 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  min-height: 100%;
}
.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card--featured {
  border-color: rgba(0,194,110,0.35);
  background:
    linear-gradient(180deg, rgba(0,194,110,0.06) 0%, transparent 42%),
    var(--bg-white);
}
.feature-icon {
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 0.8rem;
}
.feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.feature-card h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.25;
}
.feature-card p {
  font-size: 1.55rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.feature-card .feature-badge {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  margin: 0;
}

@media (max-width: 990px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .feature-card { padding: 2.4rem 2rem; }
  .feature-card h3 { font-size: 1.8rem; }
  .feature-card p { font-size: 1.5rem; }
  .feature-card .feature-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 0.4rem;
  }
}

/* ---------- SHOWCASE / VIDEO ---------- */
.showcase {
  padding: 13.6rem 0;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}
.showcase-bg {
  position: absolute;
  inset: 0;
  background: url('') center bottom / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
}
.showcase-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.showcase h2 {
  font-size: 5.6rem;
  color: var(--text-white);
  max-width: 104rem;
  margin-bottom: 5rem;
}
.showcase-video {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 2px 2px rgba(0,0,0,0.48), 0 0 0 4px rgba(0,194,110,0.35), 0 0 40px rgba(0,194,110,0.15);
  width: 100%;
  max-width: 96rem;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 5rem;
  cursor: pointer;
  background:
    #0a1610
    url("assets/images/video-thumb-green.jpg?v=3")
    center / cover no-repeat;
}
.showcase-video.is-playing {
  cursor: default;
}
.showcase-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,8,6,0.15), rgba(13,51,35,0.45)),
    rgba(0, 194, 110, 0.12);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.25s ease;
}
.showcase-video.is-playing::before,
.showcase-video.is-playing .showcase-play {
  opacity: 0;
  pointer-events: none;
}
.showcase-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.showcase-play-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: var(--accent);
  color: #04140c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 194, 110, 0.45), 0 0 0 8px rgba(0, 194, 110, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.showcase-play-icon svg {
  width: 3.2rem;
  height: 3.2rem;
  margin-left: 0.3rem;
}
.showcase-play:hover .showcase-play-icon,
.showcase-play:focus-visible .showcase-play-icon {
  transform: scale(1.08);
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 10px rgba(0, 194, 110, 0.4);
}
.showcase-play:focus-visible {
  outline: none;
}
.showcase-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  z-index: 3;
}
@media (max-width: 730px) {
  .showcase-play-icon {
    width: 6.4rem;
    height: 7.2rem;
  }
  .showcase-play-icon svg {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.showcase-cta {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.showcase .btn-outline {
  color: var(--text-white);
  border-color: var(--text-white);
}

@media (max-width: 730px) {
  .showcase { padding: 6.4rem 0 7.2rem; }
  .showcase h2 { font-size: 3.2rem; }
  .showcase-cta { flex-direction: column; width: 100%; }
  .showcase-cta .btn-primary,
  .showcase-cta .btn-outline { width: 100%; }
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 10rem 0;
  background: var(--bg-white);
}
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  max-width: 90rem;
  margin: 0 auto;
}
.pricing-wrapper--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 118rem;
  align-items: stretch;
}
.pricing-monthly {
  margin: -0.8rem 0 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}
.pricing-card {
  max-width: none;
  width: 100%;
  padding: 4.8rem;
  text-align: center;
  background: var(--bg-white);
  border: 2px solid var(--border-accent);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.pricing-overline {
  display: block;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin: 2rem 0 1.2rem;
}
.pricing-price .currency {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-dark);
}
.pricing-price .amount {
  font-size: 7.2rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 1;
}
.pricing-label {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.pricing-features {
  text-align: left;
  margin-bottom: 3.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  color: var(--text-body);
}
.pricing-check {
  width: 2.4rem;
  height: 2.4rem;
  background: var(--accent-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.pricing-check svg { width: 1.4rem; height: 1.4rem; }
.pricing-note {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-top: 2rem;
}
.pricing-consult {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.2rem;
  line-height: 1.15;
}
.pricing-consult-sub {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  color: var(--text-muted);
}
.pricing-outcome {
  margin: 0 auto 1.6rem;
  max-width: 32rem;
  font-size: 1.65rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--text-dark);
}
.pricing-shared {
  max-width: 92rem;
  margin: 0 auto 3.2rem;
  padding: 1.4rem 2rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: rgba(0, 194, 110, 0.06);
  border: 1px solid rgba(0, 194, 110, 0.18);
  border-radius: var(--radius-md);
}
.pricing-shared strong {
  color: var(--text-dark);
  font-weight: 700;
}
.pricing-trust {
  max-width: 72rem;
  margin: 2.8rem auto 0;
  text-align: center;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.pricing-card .pricing-cta {
  margin-top: auto;
}
.pricing-card .btn-outline.pricing-cta {
  border-color: rgba(0, 194, 110, 0.35);
  color: var(--text-dark);
  background: transparent;
}
.pricing-card .btn-outline.pricing-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pricing-quote-banner {
  max-width: 72rem;
  margin: 2.4rem auto 0;
  text-align: center;
  font-size: 1.55rem;
  line-height: 1.5;
  color: var(--text-muted);
  padding: 1.6rem 1.8rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(0,194,110,0.18);
  background: rgba(0,194,110,0.04);
}
.pricing-quote-banner strong { color: var(--text-dark); }
@media (max-width: 768px) {
  .pricing-consult { font-size: 2.2rem; }
  .pricing-consult-sub { font-size: 1.3rem; }
  .pricing-quote-banner { font-size: 1.4rem; margin-top: 1.6rem; }
}

@media (max-width: 1100px) {
  .pricing-wrapper--3 { grid-template-columns: 1fr 1fr; max-width: 90rem; }
}
@media (max-width: 800px) {
  .pricing-wrapper,
  .pricing-wrapper--3 { grid-template-columns: 1fr; max-width: 50rem; }
}
@media (max-width: 600px) {
  .pricing-card { padding: 3.6rem 2.4rem; }
  .pricing-price .amount { font-size: 5.6rem; }
}

/* ---------- ADQUIRENTES ---------- */
.acquirers {
  padding: 4rem 0 4.8rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,194,110,0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(0,194,110,0.08), transparent 50%),
    var(--bg-dark, #0a0a0a);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.acquirers .section-header { margin-bottom: 1.6rem; }
.acquirers .section-header h2,
.acquirers .section-header p { color: #fff; }
.acquirers .section-header p { opacity: 0.78; font-size: 1.7rem; }

.acq-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
}
.acq-filter {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}
.acq-filter:hover {
  border-color: rgba(0,194,110,0.55);
  color: #fff;
  background: rgba(0,194,110,0.1);
}
.acq-filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,194,110,0.35);
}

.acq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.acq-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
}
.acq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,194,110,0.45);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,194,110,0.18);
}
.acq-card.is-hidden { display: none; }

.acq-card-top {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.acq-logo {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.2rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #0c0c0c;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
}
.acq-logo.has-img {
  padding: 0.55rem;
  background: #fff;
}
.acq-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.acq-meta h3 {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
  color: #fff;
  font-weight: 700;
}
.acq-tier {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.acq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.acq-tags span {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(0,194,110,0.12);
  color: #ffb280;
  border: 1px solid rgba(0,194,110,0.22);
}
.acq-footnote {
  text-align: center;
  margin-top: 3.2rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.55);
}
.acq-footnote strong { color: var(--accent); }

@media (max-width: 1100px) {
  .acq-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .acq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .acq-card {
    min-height: 0;
    padding: 1.4rem;
    gap: 0.8rem;
    border-radius: 1.4rem;
    justify-content: flex-start;
  }
  .acq-logo {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 1rem;
  }
  .acq-meta h3 { font-size: 1.45rem; }
  .acq-tier { font-size: 1.1rem; }
  .acq-tags { gap: 0.45rem; }
  .acq-tags span { font-size: 1.05rem; padding: 0.3rem 0.7rem; }
  .acq-filters { gap: 0.8rem; margin-bottom: 2.4rem; }
  .acq-filter { padding: 0.85rem 1.2rem; font-size: 1.25rem; }
}
@media (max-width: 480px) {
  .acq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .acq-card {
    padding: 1rem;
    gap: 0.65rem;
    border-radius: 1.1rem;
    justify-content: flex-start;
  }
  .acq-card-top { gap: 0.7rem; }
  .acq-logo {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 0.8rem;
    padding: 0.3rem;
  }
  .acq-logo.has-img { padding: 0.3rem; }
  .acq-meta h3 {
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
    line-height: 1.15;
  }
  .acq-tier {
    font-size: 0.95rem;
    line-height: 1.15;
  }
  .acq-tags {
    gap: 0.3rem;
    margin-top: auto;
  }
  .acq-tags span {
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
  }
  .acq-filters {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.35rem;
    margin-bottom: 1.6rem;
  }
  .acq-filter {
    min-height: 3.2rem;
    padding: 0.45rem 0.15rem;
    font-size: 0.98rem;
  }
  .acq-footnote { margin-top: 1.8rem; font-size: 1.2rem; }
  .acquirers { padding: 3.2rem 0 3.6rem; }
  .acquirers .section-header { margin-bottom: 1.2rem; }
  .acquirers .section-header p { font-size: 1.4rem; }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  padding: 4rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.trust-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 2rem; height: 2rem; }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}
.trust-item span {
  font-size: 1.35rem;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- PRICING PILLS / ORDER / COMPARE ---------- */
.pricing-pill {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.6rem 2rem;
  border-radius: 10rem;
  white-space: nowrap;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-pill--soft {
  background: #fff;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.compare-wrap {
  margin-top: 6rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
.compare-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  color: var(--text-dark);
}
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  min-width: 64rem;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 1.4rem 1.6rem;
  text-align: center;
  font-size: 1.45rem;
  border-bottom: 1px solid var(--border-light);
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
}
.compare-table thead th {
  background: #0c0c0c;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.compare-table tbody tr:last-child td { border-bottom: none; font-weight: 700; }
.compare-table .ok { color: #15803d; font-weight: 700; }
.compare-table .no { color: #b0b0b0; }
.compare-table .muted { color: var(--text-muted); }

@media (max-width: 800px) {
  .pricing-wrapper--3 .pricing-card--recommended { order: -1; }
  .pricing-wrapper--3 .pricing-card--wl { order: 0; }
  .pricing-wrapper--3 .pricing-card--full { order: 1; }
}

/* ---------- FEATURE BADGE ---------- */
.feature-badge {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(0,194,110,0.12);
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 10rem 0;
  background: var(--bg-light);
}
.faq-list {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}
.faq-item:hover {
  border-color: var(--border-accent);
}
.faq-item.open {
  border-color: var(--accent);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 2.4rem;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--text-dark);
  text-align: left;
}
.faq-chevron {
  width: 2rem;
  height: 2rem;
  color: var(--text-muted);
  transition: all var(--transition-base);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 80rem; }
.faq-answer p {
  margin: 0;
  padding: 0 2.4rem 2.4rem;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1.7;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 4.8rem 0;
  text-align: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 56rem;
  height: 22rem;
  background: radial-gradient(ellipse, rgba(0,194,110,0.22), transparent 70%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: 4rem;
  color: var(--text-white);
  max-width: 80rem;
  margin: 0 auto 1.4rem;
}
.final-cta p {
  color: rgba(255,255,255,0.7);
  max-width: 52rem;
  margin: 0 auto 2.4rem;
  font-size: 1.75rem;
  line-height: 1.5;
}
.final-cta .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.final-cta .btn-outline {
  color: var(--text-white);
  border-color: rgba(255,255,255,0.3);
}

@media (max-width: 730px) {
  .final-cta { padding: 6.4rem 0; }
  .final-cta h2 { font-size: 3.2rem; margin-bottom: 1.6rem; }
  .final-cta p { font-size: 1.8rem; margin-bottom: 2.4rem; }
  .final-cta .cta-buttons { flex-direction: column; width: 100%; }
  .final-cta .cta-buttons .btn-primary,
  .final-cta .cta-buttons .btn-outline { width: 100%; }
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 4.8rem 0 2rem;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.2rem;
  margin-bottom: 2.4rem;
}
.footer-brand { max-width: 34rem; }
.footer-brand .logo {
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 1.45rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.4rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social-link {
  width: 3.6rem;
  height: 3.6rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}
.footer-social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.footer-social-link svg { width: 1.6rem; height: 1.6rem; }

.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.footer-col a {
  display: block;
  font-size: 1.45rem;
  color: var(--text-muted);
  margin-bottom: 0;
  padding: 0.35rem 0;
  line-height: 1.35;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 1.6rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-muted);
}
.footer-bottom p { margin: 0; }

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 3.2rem;
    margin-bottom: 3.2rem;
  }
  .footer-brand { max-width: 100%; }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 4.8rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
    text-align: left;
  }
  .footer-top {
    gap: 2.8rem;
    margin-bottom: 2.4rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .footer-brand p {
    font-size: 1.45rem;
    margin-bottom: 1.6rem;
    max-width: 34rem;
  }
  .footer-socials { gap: 1rem; }
  .footer-social-link {
    width: 4.4rem;
    height: 4.4rem;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    padding: 2rem 1.6rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
  }
  .footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--accent);
  }
  .footer-col a {
    font-size: 1.45rem;
    min-height: 4rem;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 0.4rem 0;
  }
  .footer-bottom {
    padding-top: 2rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 2.8rem;
  right: 2.8rem;
  z-index: 90;
  width: 5.6rem;
  height: 6.8rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 2.8rem; height: 2.8rem; color: var(--text-white); }

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  padding: 1.2rem 1.6rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-accent);
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.4rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Lead Modal ---------- */
.lead-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lead-modal-overlay.active { opacity: 1; pointer-events: all; }
.lead-modal {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 4rem;
  max-width: 44rem;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.lead-modal-close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  color: var(--text-muted);
  font-size: 2.4rem;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-modal-header {
  text-align: center;
  margin-bottom: 2.8rem;
}
.lead-modal-icon { font-size: 3.2rem; margin-bottom: 1.2rem; }
.lead-modal-header h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}
.lead-modal-header p {
  font-size: 1.4rem;
  color: var(--text-muted);
}
.lead-field { margin-bottom: 1.6rem; }
.lead-field label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 0.6rem;
}
.lead-field input,
.lead-field select {
  width: 100%;
  padding: 1.2rem 1.6rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-size: 1.6rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}
.lead-field input:focus,
.lead-field select:focus {
  outline: none;
  border-color: var(--accent);
}
.lead-submit {
  width: 100%;
  padding: 1.6rem;
  background: #25D366;
  color: var(--text-white);
  font-weight: 800;
  font-size: 1.6rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
  transition: opacity var(--transition-fast);
  border: none;
  cursor: pointer;
}
.lead-submit:hover { opacity: 0.9; }
.lead-modal-hint {
  display: block;
  text-align: center;
  margin-top: 1.2rem;
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* ---------- Exit Popup ---------- */
.exit-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.exit-popup-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup {
  background: var(--bg-white);
  border: 2px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 4rem;
  max-width: 48rem;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.exit-popup-close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  color: var(--text-muted);
  font-size: 2.4rem;
}
.exit-popup-icon { font-size: 3.2rem; margin-bottom: 1.6rem; }
.exit-popup h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}
.exit-popup p {
  color: var(--text-muted);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ---------- Demo Credentials ---------- */
.demo-credentials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.2rem 2rem;
  margin-top: 1.6rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
}
.demo-credentials strong { color: var(--text-white); }
.demo-credentials a { color: var(--accent); font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .sticky-cta-bar { display: block; }
  /* Float duplicates sticky CTA and covers copy — hide on mobile */
  .whatsapp-float { display: none !important; }
}

/* ====================================================
   MOBILE-FIRST PASS (phones & small tablets)
   ==================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 1.6rem;
    width: 100%;
  }

  /* Safe area + room for sticky CTA */
  body {
    padding-bottom: calc(7.2rem + env(safe-area-inset-bottom, 0px));
  }

  .navbar {
    padding: 1.4rem 0;
    padding-top: max(1.4rem, env(safe-area-inset-top, 0px));
  }
  .navbar.scrolled { padding: 1.4rem 0; padding-top: max(1.4rem, env(safe-area-inset-top, 0px)); }
  .logo { font-size: 1.7rem; gap: 0.8rem; }
  .logo-wordmark { height: 5.2rem; max-width: 78vw; }
  .logo-icon { width: 3.2rem; height: 3.2rem; }
  .mobile-menu-btn {
    width: 4.4rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-nav {
    padding: max(2rem, env(safe-area-inset-top)) 2rem max(2rem, env(safe-area-inset-bottom));
    gap: 2.4rem;
  }
  .mobile-nav a {
    font-size: 1.8rem;
    min-height: 4.4rem;
    display: flex;
    align-items: center;
  }

  /* ----- HERO ----- */
  .hero {
    padding-top: calc(6.4rem + env(safe-area-inset-top, 0px));
  }
  .hero-inner {
    padding-top: 3.2rem;
    padding-bottom: 4.8rem;
    gap: 2.8rem;
  }
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
    letter-spacing: -0.03em;
  }
  .hero-subtitle {
    font-size: 1.55rem;
    margin-bottom: 2.4rem;
    line-height: 1.55;
  }
  .hero-cta-row {
    gap: 1.2rem;
  }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline {
    min-height: 4.8rem;
    font-size: 1.5rem;
    padding: 1.4rem 2rem;
  }
  .hero-showcase h2 {
    font-size: 2.1rem;
    margin-bottom: 1.6rem;
    line-height: 1.3;
    padding: 0 0.4rem;
  }
  .hero-showcase .showcase-video {
    margin-bottom: 1.6rem;
    border-radius: 1.2rem;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.85), 0 12px 40px rgba(0,0,0,0.45);
    width: 100%;
  }
  .hero-showcase .showcase-cta .btn-primary {
    width: 100%;
    min-height: 4.8rem;
  }

  /* ----- SECTIONS ----- */
  .section-header { margin-bottom: 3.2rem; }
  .section-header h2 { font-size: 2.6rem; margin-bottom: 1.2rem; }
  .section-header p { font-size: 1.55rem; }

  .why-us,
  .features-section,
  .pricing,
  .acquirers,
  .faq {
    padding: 3.6rem 0;
  }
  .trust-strip { padding: 2.4rem 0; }
  .final-cta { padding: 3.6rem 0; }

  .why-us-header {
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
  }
  .why-us-intro { font-size: 1.55rem; max-width: 100%; }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .why-us-card {
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
    padding: 2.4rem 0;
  }
  .why-us-card:last-child { border-bottom: none; }
  .why-us-card h3 { font-size: 1.8rem; }
  .why-us-card p { font-size: 1.5rem; }

  .features-header {
    margin-bottom: 2.8rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .feature-card {
    padding: 2.4rem 2rem;
  }
  .feature-card h3 { font-size: 1.8rem; }
  .feature-card p { font-size: 1.5rem; }
  .feature-card .feature-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 0.4rem;
  }

  .pricing { padding-top: 5.6rem; }
  .pricing-wrapper,
  .pricing-wrapper--3 {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 2.4rem;
  }
  .pricing-card {
    padding: 3.2rem 2rem 2.4rem;
  }
  .pricing-price .amount { font-size: 4.8rem; }
  .pricing-price .currency { font-size: 2rem; }
  .pricing-feature { font-size: 1.45rem; align-items: flex-start; }
  .pricing-pill {
    font-size: 1.15rem;
    padding: 0.5rem 1.4rem;
    white-space: normal;
    text-align: center;
    max-width: 90%;
    line-height: 1.3;
  }

  .compare-wrap { margin-top: 4rem; }
  .compare-title { font-size: 2rem; margin-bottom: 1.6rem; }
  .compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1.6rem;
    padding: 0 1.6rem 0.8rem;
  }
  .compare-scroll::after {
    content: '← deslize para comparar →';
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 1rem;
  }
  .compare-table {
    min-width: 56rem;
  }
  .compare-table th,
  .compare-table td {
    padding: 1.1rem 1.2rem;
    font-size: 1.3rem;
  }

  .acq-filters {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.4rem;
    width: 100%;
    margin: 0 0 2rem;
    padding: 0;
    overflow: visible;
    justify-content: stretch;
  }
  .acq-filter {
    width: 100%;
    min-width: 0;
    min-height: 3.4rem;
    padding: 0.55rem 0.2rem;
    font-size: 1.05rem;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-self: stretch;
    box-sizing: border-box;
  }
  .acq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .acq-card {
    min-height: 0;
    padding: 1rem;
    border-radius: 1.1rem;
    gap: 0.65rem;
    justify-content: flex-start;
  }
  .acq-card-top { gap: 0.7rem; }
  .acq-logo {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 0.8rem;
  }
  .acq-meta h3 { font-size: 1.2rem; margin-bottom: 0.15rem; }
  .acq-tier { font-size: 0.95rem; }
  .acq-tags span { font-size: 0.9rem; padding: 0.2rem 0.5rem; }
  .acq-footnote { font-size: 1.2rem; margin-top: 1.8rem; padding: 0 0.4rem; }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .faq-question {
    padding: 1.8rem 1.6rem;
    font-size: 1.45rem;
    min-height: 4.8rem;
  }
  .faq-answer p {
    padding: 0 1.6rem 1.8rem;
    font-size: 1.45rem;
  }

  .final-cta h2 { font-size: 2.6rem; margin-bottom: 1.6rem; }
  .final-cta p { font-size: 1.55rem; margin-bottom: 2.4rem; }

  /* Sticky CTA — safe area */
  .sticky-cta-bar {
    padding: 1rem 1.6rem calc(1rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 32px rgba(0,0,0,0.08);
  }
  .sticky-cta-btn {
    min-height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
  }

  /* Modals → mobile sheets */
  .lead-modal-overlay,
  .exit-popup-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .lead-modal,
  .exit-popup {
    max-width: 100%;
    width: 100%;
    border-radius: 2rem 2rem 0 0;
    padding: 2.4rem 1.6rem calc(2.4rem + env(safe-area-inset-bottom, 0px));
    max-height: min(92vh, 100%);
    overflow-y: auto;
  }
  .lead-modal-header { margin-bottom: 2rem; }
  .lead-field input,
  .lead-field select {
    min-height: 4.8rem;
    font-size: 1.6rem; /* iOS zoom prevention */
  }
  .lead-submit { min-height: 5.2rem; }

  .btn-primary,
  .btn-outline {
    min-height: 4.8rem;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-showcase h2 { font-size: 1.9rem; }
  .acq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .acq-card { padding: 0.9rem; gap: 0.6rem; }
  .acq-logo { width: 3.2rem; height: 3.2rem; }
  .acq-meta h3 { font-size: 1.15rem; }
  .pricing-price .amount { font-size: 4.2rem; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .logo-marquee { animation: none; }
}


/* ====================================================
   PodPay-level polish layer (animations + tech surface)
   ==================================================== */

:root {
  --emerald: #00c26e;
  --emerald-deep: #0d3323;
  --dot: rgba(0, 194, 110, 0.14);
}

/* Floating glass pill navbar (PodPay style) */
.navbar {
  position: fixed;
  top: 1.6rem;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  pointer-events: none;
}
.navbar-inner {
  pointer-events: auto;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem 1.4rem 0.8rem 1.8rem;
  border-radius: 999px;
  background: rgba(8, 16, 12, 0.72);
  border: 1px solid rgba(0, 194, 110, 0.28);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    0 0 0 1px rgba(0,194,110,0.08),
    0 20px 50px rgba(0,0,0,0.35),
    0 0 40px rgba(0,194,110,0.12);
  position: relative;
  overflow: hidden;
}
.navbar-inner::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 120deg, transparent 0deg, rgba(0,194,110,0.35) 40deg, transparent 90deg);
  animation: nav-spin 8s linear infinite;
  opacity: 0.35;
  pointer-events: none;
}
.navbar-inner::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background: rgba(8, 16, 12, 0.88);
  z-index: 0;
  pointer-events: none;
}
.navbar-inner > * { position: relative; z-index: 1; }
@keyframes nav-spin { to { transform: rotate(360deg); } }

.navbar.scrolled .navbar-inner {
  background: rgba(255,255,255,0.86);
  border-color: rgba(0,194,110,0.22);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.navbar.scrolled .navbar-inner::after {
  background: rgba(255,255,255,0.92);
}
.navbar.scrolled .logo { color: var(--text-dark); }
.navbar.scrolled .nav-links a { color: var(--text-body); }
.navbar.scrolled .mobile-menu-btn { color: var(--text-dark); }

.logo-icon {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,194,110,0.45);
}
.logo-icon svg { stroke: #04140c !important; }

/* Dot grid + glow orbs in hero */
.hero {
  padding-top: 11rem;
  min-height: auto;
}
.hero-bg {
  background-image:
    radial-gradient(circle at 1px 1px, var(--dot) 1px, transparent 0);
  background-size: 28px 28px;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,194,110,0.22), transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 30%, rgba(0,194,110,0.14), transparent 55%),
    linear-gradient(180deg, #050806 0%, #07140e 50%, #0d3323 100%);
  pointer-events: none;
}
.hero-bg::after {
  bottom: -10rem;
  right: 10%;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, rgba(0,194,110,0.22) 0%, transparent 68%);
  filter: blur(10px);
  animation: orb-float 10s ease-in-out infinite alternate;
}
@keyframes orb-float {
  from { transform: translate(-4%, 2%) scale(1); }
  to { transform: translate(6%, -4%) scale(1.08); }
}

.hero h1 {
  font-size: clamp(3.4rem, 5.2vw, 5.6rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero .text-accent {
  background: linear-gradient(90deg, #00c26e, #6ee7b0 50%, #00e080);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(0,194,110,0.25);
}

/* Soft emerald line under hero title block */
.hero-content::after {
  content: '';
  display: block;
  width: min(42rem, 80%);
  height: 1px;
  margin: 3.2rem auto 0;
  background: linear-gradient(90deg, transparent, #00c26e, transparent);
  opacity: 0.7;
}

/* Dashboard mock (tech product surface) */
.hero-product {
  width: 100%;
  max-width: 104rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.dash-frame {
  position: relative;
  border-radius: 2rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,194,110,0.65), rgba(255,255,255,0.08) 40%, rgba(0,194,110,0.35));
  box-shadow:
    0 40px 100px rgba(0,0,0,0.45),
    0 0 60px rgba(0,194,110,0.15);
  overflow: hidden;
}
.dash-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(0,194,110,0.2), transparent 50%);
  pointer-events: none;
  z-index: 2;
}
.dash-inner {
  position: relative;
  border-radius: calc(2rem - 1px);
  background: #0b1210;
  overflow: hidden;
  display: grid;
  grid-template-columns: 6.4rem 1fr;
  min-height: 36rem;
}
.dash-side {
  background: #080d0b;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 1.8rem 0;
}
.dash-side span {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.dash-side span:first-child {
  background: rgba(0,194,110,0.2);
  border-color: rgba(0,194,110,0.45);
  box-shadow: 0 0 16px rgba(0,194,110,0.35);
}
.dash-main { padding: 2rem; }
.dash-title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.dash-sub {
  color: rgba(255,255,255,0.45);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.dash-kpi {
  background: #121a17;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.2rem;
  padding: 1.4rem;
}
.dash-kpi small {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.dash-kpi strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.dash-kpi em {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  color: #00c26e;
  font-size: 1.15rem;
  font-weight: 600;
}
.dash-panels {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.2rem;
}
.dash-panel {
  background: #121a17;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.2rem;
  padding: 1.4rem;
  min-height: 14rem;
}
.dash-panel h4 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.dash-panel h4::before {
  content: '';
  width: 3px;
  height: 1.4rem;
  border-radius: 2px;
  background: #00c26e;
}
.dash-bars { display: grid; gap: 1rem; }
.dash-bar-row { display: grid; grid-template-columns: 9rem 1fr 3.2rem; gap: 0.8rem; align-items: center; color: rgba(255,255,255,0.55); font-size: 1.2rem; }
.dash-bar-track { height: 0.7rem; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, #00c26e, #6ee7b0); box-shadow: 0 0 12px rgba(0,194,110,0.45); }
.dash-chart {
  height: 10rem;
  margin-top: 0.4rem;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(0,194,110,0.22), transparent 70%),
    radial-gradient(ellipse at 70% 40%, rgba(0,194,110,0.35), transparent 55%),
    #0d1411;
  position: relative;
  overflow: hidden;
}
.dash-chart svg { width: 100%; height: 100%; display: block; }
.dash-float {
  position: absolute;
  right: 2.4rem;
  top: 2.4rem;
  z-index: 3;
  background: rgba(8,16,12,0.9);
  border: 1px solid rgba(0,194,110,0.4);
  color: #fff;
  border-radius: 1.2rem;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 24px rgba(0,194,110,0.2);
  animation: toast-in 0.8s var(--transition-spring) both, float-y 4s ease-in-out 1s infinite;
  font-size: 1.3rem;
}
.dash-float strong { color: #00c26e; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .dash-panels { grid-template-columns: 1fr; }
  .dash-inner { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-float { display: none; }
}

/* Cards — hover + 3D tilt ready */
.why-us-card,
.feature-card,
.pricing-card,
.acq-card,
.faq-item {
  border-radius: 1.6rem !important;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.why-us-card:hover,
.feature-card:hover,
.pricing-card:hover,
.acq-card:hover {
  box-shadow:
    0 28px 60px rgba(0,0,0,0.12),
    0 0 0 1px rgba(0,194,110,0.28),
    0 0 40px rgba(0,194,110,0.12);
}
.why-us-card:hover .why-us-icon,
.feature-card:hover .feature-icon,
.pricing-card:hover .pricing-check,
.acq-card:hover .acq-logo {
  transform: scale(1.18) translateZ(24px);
}
.why-us-icon,
.feature-icon,
.acq-logo {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  transform-style: preserve-3d;
}

/* Spotlight that follows the mouse */
.tilt-card {
  position: relative;
  overflow: hidden;
}
.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(0,194,110,0.22),
    transparent 42%
  );
  z-index: 1;
}
.tilt-card:hover::after { opacity: 1; }
.tilt-card > * { position: relative; z-index: 2; }

/* Buttons scale like PodPay */
.btn-primary,
.btn-outline,
.nav-cta,
.acq-filter {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}
.btn-demo {
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.btn-primary:hover:not(.btn-demo),
.nav-cta:hover {
  transform: translateY(-3px) scale(1.06) !important;
}
.btn-outline:hover {
  transform: translateY(-3px) scale(1.05) !important;
}
.acq-filter:hover {
  transform: scale(1.08);
}
.nav-links a {
  transition: color 0.2s ease, transform 0.25s ease;
}
.nav-links a:hover {
  transform: translateY(-2px);
}
.faq-item:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(0,194,110,0.35);
  box-shadow: 0 16px 40px rgba(0,194,110,0.1);
}
.whatsapp-float:hover {
  transform: scale(1.18) !important;
}

.feature-card--featured,
.pricing-card--full,
.pricing-card--recommended {
  box-shadow: 0 0 0 1px rgba(0,194,110,0.35), 0 24px 60px rgba(0,194,110,0.12);
}

/* Acquirers dark section emerald */
.acquirers {
  background:
    radial-gradient(ellipse at top, rgba(0,194,110,0.18), transparent 50%),
    linear-gradient(180deg, #050806, #0d3323) !important;
}

/* Final CTA emerald */
.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(0,194,110,0.25), transparent 55%),
    linear-gradient(135deg, #050806, #0d3323 60%, #062218) !important;
}

/* Stronger reveals — animation once, then hover owns transform */
.reveal {
  opacity: 0;
  filter: blur(4px);
  animation: none;
}
.reveal.visible {
  opacity: 1;
  filter: none;
  animation: reveal-in 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(28px) scale(0.98); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}

/* Emerald gradient dividers */
.section-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,194,110,0.55), transparent);
  border: 0;
  margin: 0;
}

/* Sticky / WA float accents */
.whatsapp-float {
  box-shadow: 0 12px 30px rgba(0,194,110,0.35) !important;
}

@media (max-width: 900px) {
  .navbar-inner {
    max-width: calc(100% - 2.4rem);
    margin: 0 1.2rem;
  }
  .hero { padding-top: 9.5rem; }
}


/* ====================================================
   MOTION PACK — PodPay-level presence
   ==================================================== */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 300;
  background: linear-gradient(90deg, #00c26e, #6ee7b0, #00e080);
  box-shadow: 0 0 16px rgba(0,194,110,0.55);
  pointer-events: none;
  transform-origin: left;
}

.hero-particles,
.section-particles {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
}
.acquirers,
.final-cta {
  isolation: isolate;
}
.acquirers .container,
.final-cta .container {
  position: relative;
  z-index: 1;
}
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: orb-drift 14s ease-in-out infinite alternate;
}
.hero-orbs span:nth-child(1) {
  width: 28rem; height: 28rem; left: 8%; top: 18%;
  background: radial-gradient(circle, rgba(0,194,110,0.55), transparent 70%);
}
.hero-orbs span:nth-child(2) {
  width: 36rem; height: 36rem; right: 5%; top: 35%;
  background: radial-gradient(circle, rgba(0,224,128,0.4), transparent 70%);
  animation-duration: 18s; animation-delay: -4s;
}
.hero-orbs span:nth-child(3) {
  width: 22rem; height: 22rem; left: 40%; bottom: 8%;
  background: radial-gradient(circle, rgba(110,231,176,0.35), transparent 70%);
  animation-duration: 12s; animation-delay: -2s;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(6%, -8%) scale(1.15); }
}

.hero-beam {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 90%);
  height: 1px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0,194,110,0.85), transparent);
  overflow: hidden;
}
.hero-beam--top { top: 7.2rem; }
.hero-beam--mid { top: auto; bottom: 42%; opacity: 0.55; }
.hero-beam::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transform: translateX(-100%);
  animation: beam-sweep 3.6s ease-in-out infinite;
}
@keyframes beam-sweep {
  0% { transform: translateX(-120%); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

.hero-content {
  opacity: 0;
  animation: hero-rise 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-showcase {
  opacity: 0;
  animation: hero-rise 0.9s cubic-bezier(0.16,1,0.3,1) 0.45s both;
}
.hero-product {
  opacity: 0;
  animation: hero-rise 1s cubic-bezier(0.16,1,0.3,1) 0.7s both;
}
.hero-cta-row > * {
  /* no base opacity:0 — fill-mode backwards handles intro without hover flash */
  animation: hero-rise 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-cta-row > *:nth-child(1) { animation-delay: 0.35s; }
.hero-cta-row > *:nth-child(2) { animation-delay: 0.48s; }
.hero-cta-row > *:nth-child(3) { animation-delay: 0.6s; }
/* Demo button: entrance + glow. Hover must NOT redeclare animation. */
.hero-cta-row > .btn-demo {
  animation:
    hero-rise 0.7s cubic-bezier(0.16,1,0.3,1) 0.48s both,
    demo-glow 2.4s ease-in-out 1.2s infinite;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px) scale(0.98); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}

.text-accent {
  background-size: 200% auto;
  animation: shimmer-text 4.5s linear infinite;
}
@keyframes shimmer-text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero .text-accent {
  background-image: linear-gradient(90deg, #00c26e, #b6f5d4, #00e080, #00c26e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dash-frame {
  animation: dash-float 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes dash-float {
  0%, 100% { transform: translateY(var(--par, 0px)); }
  50% { transform: translateY(calc(var(--par, 0px) - 12px)); }
}
.dash-bar-fill {
  width: 0 !important;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
.dash-bars.is-on .dash-bar-fill { width: var(--w) !important; }

.dash-kpi strong {
  font-variant-numeric: tabular-nums;
}

/* Staggered grid children */
.why-us-grid .why-us-card,
.features-grid .feature-card,
.pricing-wrapper .pricing-card,
.acq-grid .acq-card,
.trust-grid .trust-item {
  --stagger: 0;
}
.why-us-grid .why-us-card.reveal.visible,
.features-grid .feature-card.reveal.visible,
.pricing-wrapper .pricing-card.reveal.visible,
.acq-grid .acq-card.reveal.visible {
  animation-delay: calc(var(--stagger, 0) * 70ms) !important;
}

/* Magnetic buttons */
.btn-primary,
.btn-outline,
.btn-demo,
.nav-cta {
  position: relative;
  will-change: transform;
}

/* FAQ open spring */
.faq-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.faq-item.open {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,194,110,0.12);
  border-color: rgba(0,194,110,0.35);
}

/* Trust strip pulse icons */
.trust-icon {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), color 0.3s ease;
}
.trust-item:hover .trust-icon {
  transform: scale(1.15) rotate(-6deg);
  color: var(--accent);
}

/* Final CTA aurora */
.final-cta::after {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 20% 40%, rgba(0,194,110,0.25), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(0,224,128,0.18), transparent 40%);
  animation: aurora-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes aurora-drift {
  from { transform: translate(-3%, -2%) scale(1); }
  to { transform: translate(4%, 3%) scale(1.08); }
}

/* Showcase video breathe */
.showcase-video:not(.is-playing) {
  animation: video-breathe 5s ease-in-out infinite;
}
@keyframes video-breathe {
  0%, 100% { box-shadow: 0 0 2px 2px rgba(0,0,0,0.48), 0 0 0 4px rgba(0,194,110,0.35), 0 0 40px rgba(0,194,110,0.15); }
  50% { box-shadow: 0 0 2px 2px rgba(0,0,0,0.48), 0 0 0 4px rgba(0,194,110,0.55), 0 0 70px rgba(0,194,110,0.28); }
}
.showcase-play-icon {
  animation: play-pulse 2.2s ease-in-out infinite;
  pointer-events: none; /* clicks always hit the full-area button */
}
@keyframes play-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .hero-particles,
  .section-particles,
  .hero-orbs,
  .hero-beam,
  .dash-frame,
  .showcase-video,
  .showcase-play-icon,
  .final-cta::after,
  .text-accent,
  .hero-content,
  .hero-cta-row > * {
    animation: none !important;
  }
  .hero-content, .hero-showcase, .hero-product, .hero-cta-row > * { opacity: 1; transform: none; filter: none; }
}

/* Mobile only: pause continuous CSS motion — desktop effect unchanged */
@media (max-width: 768px) {
  .final-cta::after,
  .showcase-video:not(.is-playing),
  .showcase-play-icon,
  .hero-orbs,
  .hero-beam {
    animation: none !important;
  }
}

/* Código Fonte brand lockup: crop the supplied artwork without altering it. */
.logo:not(.logo--footer) {
  width: 14.5rem;
  height: 6.2rem;
  overflow: hidden;
  border-radius: 0.9rem;
  background: #020201;
}
.logo-wordmark {
  position: absolute !important;
  left: 0 !important;
  top: -1.7rem !important;
  width: 14.5rem !important;
  height: auto !important;
  max-width: none !important;
  transform: none !important;
  object-fit: unset !important;
}
.logo--footer {
  width: 22rem;
  height: 9.4rem;
  overflow: hidden;
  border-radius: 1rem;
  background: #020201;
}
.logo--footer .logo-lockup {
  position: absolute;
  left: 0;
  top: -2.55rem;
  width: 22rem;
  height: auto;
  max-width: none;
  object-fit: unset;
}
@media (max-width: 768px) {
  .logo:not(.logo--footer) {
    width: 13.5rem;
    height: 5.8rem;
  }
  .logo-wordmark {
    width: 13.5rem !important;
    top: -1.58rem !important;
  }
}

/* Transparent Código Fonte lockup. */
.logo:not(.logo--footer) {
  width: 17rem;
  height: 6rem;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.logo-wordmark {
  left: 0 !important;
  top: 50% !important;
  width: 17rem !important;
  height: auto !important;
  transform: translateY(-50%) !important;
}
.logo--footer {
  width: 24rem;
  height: 11rem;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.logo--footer .logo-lockup {
  left: 0;
  top: 50%;
  width: 24rem;
  height: auto;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .logo:not(.logo--footer) {
    width: 14.5rem;
    height: 5.8rem;
  }
  .logo-wordmark {
    width: 14.5rem !important;
  }
}
