/* PayMais — original site styles. Brand: navy #1a2e5a, green #3fcf8e */

:root {
  --navy: #1a2e5a;
  --navy-900: #0f1d3a;
  --navy-700: #1a2e5a;
  --navy-600: #243a6e;
  --navy-500: #2e4a87;
  --green: #3fcf8e;
  --green-bright: #4ee29c;
  --green-dim: #2faa72;
  --ink: #f5f7fb;
  --ink-dim: rgba(245, 247, 251, 0.72);
  --ink-faint: rgba(245, 247, 251, 0.52);
  --line: rgba(245, 247, 251, 0.10);
  --line-strong: rgba(245, 247, 251, 0.18);
  --bg: #0c1730;
  --bg-light: #f5f1ea;
  --bg-light-ink: #11203f;
  --radius: 22px;
  --radius-sm: 14px;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

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

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-family: 'DM Sans', sans-serif;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12, 23, 48, 0.75);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  right: 5px; top: 5px;
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 2px;
}
.brand-word {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.brand-word .mais { color: var(--green); }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-dim);
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--green);
  color: var(--navy-900);
  box-shadow: 0 0 0 0 rgba(63, 207, 142, 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--green-bright);
  box-shadow: 0 12px 32px -12px rgba(63, 207, 142, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-arrow {
  width: 18px; height: 18px;
  transition: transform 0.2s ease;
}
.btn:hover .btn-arrow { transform: translate(2px, -2px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(63, 207, 142, 0.18), transparent 70%),
    radial-gradient(50% 40% at 0% 90%, rgba(63, 207, 142, 0.10), transparent 70%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(63, 207, 142, 0.10);
  border: 1px solid rgba(63, 207, 142, 0.28);
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(63, 207, 142, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(63, 207, 142, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(63, 207, 142, 0.05); }
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 28px;
  font-weight: 800;
}
.hero h1 .accent {
  color: var(--green);
  display: inline-block;
  position: relative;
}
[data-accent-treatment="gradient"] .hero h1 .accent {
  background: linear-gradient(120deg, var(--green) 10%, #a3f0c8 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-dim);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-faint);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-item svg { color: var(--green); flex-shrink: 0; }

/* Hero visual: stylized phone composition */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  perspective: 1200px;
}
.phone-stack {
  position: absolute;
  inset: 0;
}
.phone-card {
  position: absolute;
  background: linear-gradient(155deg, var(--navy-600), var(--navy-900));
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 18px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
  transform-style: preserve-3d;
}
.phone-front {
  inset: 8% 14% 8% 14%;
  border-radius: 36px;
  background: linear-gradient(160deg, #0e1a35, #1a2e5a);
  transform: rotate(-4deg);
  z-index: 2;
}
.phone-back {
  inset: 14% 4% 14% 32%;
  background: linear-gradient(160deg, #1d3164, #0f1d3a);
  transform: rotate(8deg);
  z-index: 1;
  opacity: 0.72;
}
.phone-screen {
  height: 100%;
  background: #0a1428;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.phone-screen::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 6px;
  background: #050b1c;
  border-radius: 4px;
}
.phone-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 28px;
  margin-bottom: 6px;
}
.phone-h {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: auto;
}
.phone-amount {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 4px;
}
.phone-amount-big {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.phone-installments {
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.phone-btn {
  background: var(--green);
  color: var(--navy-900);
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
}
.hero-floating {
  position: absolute;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  z-index: 5;
  box-shadow: 0 18px 50px -18px rgba(0,0,0,0.7);
}
.hero-floating-1 {
  bottom: 8%; left: -4%;
  animation: float-a 6s ease-in-out infinite;
}
.hero-floating-2 {
  top: 8%; right: -2%;
  animation: float-b 7s ease-in-out infinite;
}
@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(63, 207, 142, 0.16);
  display: grid; place-items: center;
  color: var(--green);
  flex-shrink: 0;
}
.float-label { color: var(--ink-faint); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.float-value { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; }

/* Editorial hero variant */
[data-hero-variant="editorial"] .hero-grid {
  grid-template-columns: 1fr;
  gap: 0;
}
[data-hero-variant="editorial"] .hero-visual { display: none; }
[data-hero-variant="editorial"] .hero h1 {
  font-size: clamp(56px, 10vw, 144px);
  text-wrap: balance;
}
[data-hero-variant="editorial"] .hero-sub {
  font-size: 22px;
  max-width: 720px;
  margin-top: 32px;
}
[data-hero-variant="editorial"] .hero {
  padding: 60px 0 100px;
  border-bottom: 1px solid var(--line);
}
.editorial-marquee {
  display: none;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.editorial-marquee::before, .editorial-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.editorial-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.editorial-marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--ink-dim);
  letter-spacing: -0.01em;
}
.marquee-track .star { color: var(--green); margin-right: 56px; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
[data-hero-variant="editorial"] .editorial-marquee { display: block; }

@media (max-width: 920px) {
  .hero { padding: 56px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 4 / 4; max-width: 460px; margin: 0 auto; }
}

/* ============ Section primitives ============ */
.section {
  padding: 110px 0;
  position: relative;
}
.section-light {
  background: var(--bg-light);
  color: var(--bg-light-ink);
}
.section-light .eyebrow { color: var(--green-dim); }
.section-light .eyebrow::before { background: var(--green-dim); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 720px;
}
.section-kicker {
  max-width: 380px;
  color: var(--ink-dim);
  font-size: 16px;
}
.section-light .section-kicker { color: rgba(17, 32, 63, 0.7); }

@media (max-width: 920px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 44px; }
}

/* ============ Lojistas (3 cards) ============ */
.lojistas {
  border-top: 1px solid var(--line);
}
.lojistas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(63, 207, 142, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 207, 142, 0.35);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(63, 207, 142, 0.12);
  display: grid; place-items: center;
  color: var(--green);
  margin-bottom: 28px;
  border: 1px solid rgba(63, 207, 142, 0.22);
}
.benefit-h {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.benefit-p {
  color: var(--ink-dim);
  font-size: 15.5px;
  line-height: 1.55;
}
.benefit-num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}

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

/* ============ Como funciona (timeline) ============ */
.como {
  background: linear-gradient(180deg, var(--bg) 0%, #0a1326 100%);
}
.como-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.como-timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(63, 207, 142, 0.2) 50%, rgba(63, 207, 142, 0.05) 100%);
}
.como-step {
  position: relative;
  text-align: left;
  padding-top: 0;
}
.como-step-num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--green);
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--green);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.como-step:hover .como-step-num {
  background: var(--green);
  color: var(--navy-900);
  transform: scale(1.05);
}
.como-step h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.como-step p {
  color: var(--ink-dim);
  font-size: 15.5px;
  max-width: 320px;
}
.como-step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
@media (max-width: 920px) {
  .como-timeline { grid-template-columns: 1fr; gap: 40px; }
  .como-timeline::before { display: none; }
}

/* ============ Aparelhos grid ============ */
.aparelhos { background: var(--bg-light); color: var(--bg-light-ink); }
.aparelhos .section-title { color: var(--bg-light-ink); }
.aparelhos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.phone-card-prod {
  background: #fff;
  border: 1px solid rgba(17, 32, 63, 0.08);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.phone-card-prod:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(17, 32, 63, 0.25);
}
.phone-illu {
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #f5f1ea 0%, #ebe4d6 100%);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.phone-illu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 12px,
    rgba(17, 32, 63, 0.04) 12px,
    rgba(17, 32, 63, 0.04) 13px
  );
}
.phone-illu::after {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(50% 60% at 50% 60%, rgba(63, 207, 142, 0.18), transparent 70%);
  pointer-events: none;
}
.phone-svg {
  width: 55%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 28px rgba(17, 32, 63, 0.25));
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.phone-card-prod:hover .phone-svg {
  transform: translateY(-6px) rotate(-3deg);
}
.phone-tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.phone-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 32, 63, 0.55);
}
.phone-stock {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-dim);
  display: flex; align-items: center; gap: 6px;
}
.phone-stock::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-dim);
}
.phone-name {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.phone-spec {
  font-size: 13px;
  color: rgba(17, 32, 63, 0.6);
  margin-bottom: 16px;
}
.phone-price-block {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(17, 32, 63, 0.18);
}
.phone-cta-row {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed rgba(17, 32, 63, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.phone-12x {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--bg-light-ink);
  letter-spacing: -0.01em;
}
.phone-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.phone-card-prod:hover .phone-arrow {
  transform: translateX(3px);
}
.phone-entrada {
  font-size: 11px;
  color: rgba(17, 32, 63, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.phone-entrada strong {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--bg-light-ink);
  letter-spacing: -0.01em;
  text-transform: none;
  display: block;
  margin-top: 2px;
}
.phone-installment {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
}
.phone-installment .x {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--bg-light-ink);
  letter-spacing: -0.03em;
}
.phone-installment .of {
  font-size: 13px;
  color: rgba(17, 32, 63, 0.6);
}
.phone-installment .amt {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--green-dim);
  letter-spacing: -0.02em;
}

@media (max-width: 1100px) {
  .aparelhos-grid { grid-template-columns: repeat(3, 1fr); }
  .phone-card-prod:nth-child(n+4) { grid-column: span 1; }
}
@media (max-width: 720px) {
  .aparelhos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Negativados callout ============ */
.negativ {
  position: relative;
  overflow: hidden;
}
.negativ-card {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  border-radius: 32px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.negativ-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(63, 207, 142, 0.20), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(63, 207, 142, 0.10), transparent 60%);
  pointer-events: none;
}
.negativ-card > * { position: relative; z-index: 1; }
.negativ-h {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.negativ-h .accent { color: var(--green); }
.negativ-p {
  color: var(--ink-dim);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}
.negativ-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.negativ-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  color: var(--ink);
}
.negativ-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy-900);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.negativ-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.negativ-stamp-circle {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px dashed rgba(63, 207, 142, 0.5);
  display: grid;
  place-items: center;
  position: relative;
  animation: rotate 40s linear infinite;
}
.negativ-stamp-circle::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: rgba(63, 207, 142, 0.06);
  border: 1px solid rgba(63, 207, 142, 0.3);
}
.negativ-stamp-inner {
  position: relative;
  text-align: center;
}
.negativ-stamp-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 84px;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
}
.negativ-stamp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 6px;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 920px) {
  .negativ-card { grid-template-columns: 1fr; padding: 56px 32px; gap: 40px; }
  .negativ-stamp-circle { width: 220px; height: 220px; }
  .negativ-stamp-num { font-size: 64px; }
}

/* ============ Counters ============ */
.numeros { padding: 90px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
}
.counters-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.counter-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.counter-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
}
.counter-plus {
  color: var(--green);
  margin-right: 4px;
}
.counter-num {}
.counter-unit {
  font-size: 0.5em;
  color: var(--green);
  margin-left: 6px;
  font-weight: 700;
}
.counter-label {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
@media (max-width: 920px) {
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Depoimentos ============ */
.depoimentos {
  padding: 110px 0;
}
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.depo-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.depo-card:hover {
  border-color: rgba(63, 207, 142, 0.3);
  transform: translateY(-3px);
}
.depo-quote {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
  flex: 1;
}
.depo-quote::before {
  content: '\201C';
  font-size: 48px;
  color: var(--green);
  line-height: 0;
  margin-right: 4px;
  vertical-align: -10px;
}
.depo-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.depo-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  color: var(--navy-900);
}
.depo-avatar.a1 { background: linear-gradient(135deg, #3fcf8e, #2faa72); }
.depo-avatar.a2 { background: linear-gradient(135deg, #f5d97c, #e0a347); color: #4a3210; }
.depo-avatar.a3 { background: linear-gradient(135deg, #c5a3ff, #8b6dd8); color: #2a1a4a; }
.depo-name {
  font-weight: 600;
  font-size: 15px;
}
.depo-meta {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 2px;
}
.depo-stars {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
@media (max-width: 920px) {
  .depo-grid { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq {
  padding: 110px 0;
  background: linear-gradient(180deg, #0a1326 0%, var(--bg) 100%);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s ease;
}
.faq-item.is-open { border-bottom-color: rgba(63, 207, 142, 0.3); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
}
.faq-num {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}
.faq-item.is-open .faq-num { color: var(--green); }
.faq-q-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.faq-icon {
  color: var(--ink-faint);
  display: grid; place-items: center;
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--green);
}
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.is-open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a {
  overflow: hidden;
  color: var(--ink-dim);
  font-size: 15.5px;
  line-height: 1.6;
  padding-left: 42px;
}
.faq-item.is-open .faq-a { padding-bottom: 26px; }
@media (max-width: 920px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-a { padding-left: 0; }
}

/* ============ CTA Banner ============ */
.cta-banner {
  padding: 80px 0 120px;
}
.cta-card {
  background:
    radial-gradient(60% 80% at 80% 50%, rgba(63, 207, 142, 0.15), transparent 60%),
    linear-gradient(135deg, var(--navy-600), var(--navy-900));
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-h {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.cta-p {
  color: var(--ink-dim);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 460px;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; }
@media (max-width: 920px) {
  .cta-card { grid-template-columns: 1fr; padding: 48px 32px; }
  .cta-actions { justify-self: stretch; }
}

/* ============ Footer ============ */
.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
  background: #08111f;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-blurb {
  color: var(--ink-faint);
  font-size: 14px;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--ink-dim);
  font-size: 14.5px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-faint);
}
.footer-cnpj {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ Reveal (disabled — elements always visible) ============ */
[data-reveal] {
  opacity: 1;
  transform: none;
}
