/* Landing pública — minimalista, foco total no CTA de WhatsApp */

.landing-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  z-index: 10;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand-mark .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-600);
}

.client-link {
  font-size: 13px;
  color: var(--ink-500);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.client-link:hover {
  border-color: var(--ink-300);
  color: var(--ink-900);
}

/* ---------- Hero + prédio de fundo (descendo os andares ao rolar) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  gap: 28px;
  overflow: hidden;
}

.hero-building {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-building img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 148%;
  max-width: none;
  transform: translate(-50%, 0) scale(1);
  transform-origin: 50% 0%;
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 62% 48% at 50% 40%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.68) 55%, rgba(255, 255, 255, 0.3) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, var(--white) 94%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 16ch;
  color: var(--ink-900);
  text-wrap: balance;
}

.hero p.lede {
  font-size: 1.05rem;
  color: var(--ink-500);
  max-width: 42ch;
}

.whatsapp-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.whatsapp-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.34);
}

.whatsapp-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero .subnote {
  font-size: 13px;
  color: var(--ink-300);
}

@media (prefers-reduced-motion: reduce) {
  .hero-building img {
    transition: none;
  }
}

/* ---------- Stats strip — destaque com a cor da empresa ---------- */

.stats-strip {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 56px 24px;
  flex-wrap: wrap;
  background: var(--ink-900);
}

.stat-item {
  text-align: center;
  padding: 20px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item .stat-number {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--company-yellow);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat-item .stat-label {
  margin-top: 10px;
  font-size: 13px;
  color: #b7c0c7;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Generic section scaffolding ---------- */

.section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 22ch;
  text-wrap: balance;
}

.section-head p {
  font-size: 15px;
  color: var(--ink-500);
  max-width: 46ch;
}

/* ---------- Sobre nós — texto corrido, justificado ---------- */

.about-section {
  background: var(--ink-050);
}

.about-copy {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink-700);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* ---------- Antes & depois ---------- */

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.showcase-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.showcase-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
  z-index: 2;
}

.showcase-frame.before .showcase-tag {
  background: var(--ink-700);
}

.showcase-frame.after .showcase-tag {
  background: var(--green-600);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink-900);
  color: var(--white);
  text-align: center;
  padding: 88px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 18ch;
  text-wrap: balance;
}

.cta-band p {
  font-size: 15px;
  color: #b7c0c7;
  max-width: 40ch;
}

.landing-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  font-size: 12px;
  color: var(--ink-300);
  border-top: 1px solid var(--border);
}

@media (max-width: 760px) {
  .showcase {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
  .stats-strip {
    gap: 14px;
  }
  .stat-item {
    padding: 16px 26px;
  }
  .section {
    padding: 72px 20px;
  }
}

@media (max-width: 520px) {
  .landing-header {
    padding: 20px;
  }
  .hero {
    padding: 110px 20px 70px;
  }
}

/* ---------- Portal da Transparência ---------- */

.landing-header.static-header {
  position: static;
  border-bottom: 1px solid var(--border);
}

.page-hero {
  padding: 64px 24px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 20ch;
  text-wrap: balance;
}

.page-hero p {
  font-size: 1rem;
  color: var(--ink-500);
  max-width: 56ch;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 780px;
  margin: 0 auto 8px;
}

.trust-stat {
  text-align: center;
  padding: 22px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.trust-stat .trust-number {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-700);
  font-variant-numeric: tabular-nums;
}

.trust-stat .trust-label {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--ink-500);
}

.trust-card {
  max-width: 780px;
  margin: 0 auto 20px;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-card.positive {
  border-color: var(--green-600);
  background: var(--green-050);
}

.trust-card .trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card .trust-icon svg {
  width: 18px;
  height: 18px;
}

.trust-card h3 {
  font-size: 15.5px;
  font-weight: 650;
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-700);
}

.trust-card .trust-meta {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-500);
}

.trust-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-700);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

.trust-download:hover {
  border-color: var(--brand-500);
}

.mini-label {
  font-size: 12.5px;
  font-weight: 650;
  color: var(--ink-500);
  margin-bottom: 14px;
}

.court-breakdown {
  max-width: 780px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.court-bar-row {
  display: grid;
  grid-template-columns: 168px 1fr 28px;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-700);
}

.court-bar-track {
  height: 8px;
  border-radius: 999px;
  background: var(--ink-100);
  overflow: hidden;
}

.court-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--brand-600);
}

.court-bar-row .count {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--ink-500);
}

@media (max-width: 640px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }
  .trust-card {
    flex-direction: column;
  }
  .court-bar-row {
    grid-template-columns: 120px 1fr 24px;
  }
}
