/* =====================================================
   Mais Connecta — Replica fiel ao Figma (propriedades extraídas via MCP)
   Frame: 1446 × 10267 px
   ===================================================== */

:root {
  /* Tokens extraídos das telas */
  --pink: #ed1b5c;
  --pink-alt: #e11d48;       /* usado em "Nosso Método" */
  --pink-logo: #ed336b;      /* logo mark do header */
  --pink-tint: #fde8ef;      /* contact + tabs */
  --pink-tint-2: #fce8ef;    /* for-whom */
  --pink-tint-3: #fbe3e9;    /* contact bg gradient end */

  --dark: #11131e;           /* footer, tab ativo, "Conheça a equipe" */
  --dark-2: #1a1a26;         /* solution pillars container */
  --dark-3: #292b36;          /* arrow circle no btn "Conheça a equipe" */

  --bg-light: #f5f5f6;       /* sections light */
  --bg-clients: #fafafb;     /* clients strip */
  --bg-card-team: #f5f5f6;

  --text-dark: #11131e;
  --text-dark-2: #111523;
  --text-dark-3: #111;
  --text-body: #4d5261;
  --text-body-2: #59616f;
  --text-body-3: #6b7385;
  --text-body-4: #4f5766;
  --text-body-5: #444;
  --text-mute: #808594;
  --text-input-label: #2e3340;
  --text-input-placeholder: #9ea3ad;
  --text-on-dark-soft: #b8bdcc;
  --text-step-inactive: #8c919e;

  --border: #d9dbe0;
  --border-2: #dbdbe0;
  --border-3: #d1cfc7;
  --border-divider: #d1d5db;
  --content-max: 1216px;
  --page-gutter: max(32px, calc((100vw - var(--content-max)) / 2));

  /* Pillar pastels */
  --pillar-1-bg: #f4efe8;
  --pillar-1-icon: #efe9e1;
  --pillar-2-bg: #f3bdd3;
  --pillar-2-icon: #f2c6d1;
  --pillar-3-bg: #fadfae;
  --pillar-3-icon: #f7d99e;
  --pillar-4-bg: #e8e8ea;
  --pillar-4-icon: #e0e0e3;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; }

section,
[id] {
  scroll-margin-top: 96px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity .78s cubic-bezier(.22,1,.36,1),
    transform .78s cubic-bezier(.22,1,.36,1),
    filter .78s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-slide-left {
  transform: translate3d(-42px, 0, 0);
}

.reveal-on-scroll.reveal-slide-right {
  transform: translate3d(42px, 0, 0);
}

.reveal-on-scroll.reveal-zoom {
  transform: translate3d(0, 24px, 0) scale(.96);
  filter: blur(4px);
}

.reveal-on-scroll.reveal-lift {
  transform: translate3d(0, 46px, 0) scale(.985);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.section-animate {
  position: relative;
}

.section-animate::before {
  content: '';
  position: absolute;
  left: var(--page-gutter);
  right: var(--page-gutter);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,27,92,.35), transparent);
  opacity: 0;
  transform: scaleX(.58);
  transform-origin: center;
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}

.section-animate.section-in-view::before {
  opacity: 1;
  transform: scaleX(1);
}

@keyframes heroEnterUp {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroLineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.hero-eyebrow,
.hero-title,
.hero-subtitle,
.hero-support,
.hero-buttons,
.social-proof {
  opacity: 0;
  animation: heroEnterUp .78s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-eyebrow { animation-delay: .12s; }
.hero-title { animation-delay: .22s; }
.hero-subtitle { animation-delay: .34s; }
.hero-support { animation-delay: .44s; }
.hero-buttons { animation-delay: .54s; }
.social-proof { animation-delay: .64s; }

.hero-eyebrow .line {
  transform-origin: left;
  animation: heroLineGrow .72s cubic-bezier(.22,1,.36,1) .42s both;
}

.btn-primary-hero,
.btn-secondary-hero,
.btn-header-outline,
.btn-pink-pill,
.btn-focus,
.btn-outline-pink,
.btn-submit-form,
.view-all,
.view-all-pill,
.fw-cta {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.btn-primary-hero:hover,
.btn-secondary-hero:hover,
.btn-header-outline:hover,
.btn-pink-pill:hover,
.btn-focus:hover,
.btn-outline-pink:hover,
.btn-submit-form:hover,
.view-all:hover,
.view-all-pill:hover {
  transform: translateY(-2px);
}

/* Page is centered at 1446 frame */
.page {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
  overflow-x: clip;
}

/* =========================================================
   HERO + HEADER (nodeId 41:8)
   ========================================================= */
.hero-wrap {
  position: relative;
  background: #18212c;
  overflow: hidden;
}

.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/img/capa.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(13, 19, 29, 0.82) 0%, rgba(13, 19, 29, 0.58) 36%, rgba(13, 19, 29, 0.24) 68%, rgba(13, 19, 29, 0.08) 100%),
    linear-gradient(180deg, rgba(13, 19, 29, 0.20) 0%, rgba(13, 19, 29, 0.10) 45%, rgba(13, 19, 29, 0.62) 100%);
  z-index: 0;
  pointer-events: none;
}

@keyframes heroBgScaleIn {
  to {
    transform: scale(1);
  }
}

/* Header: absolute over hero (Figma puts it inside hero wrap) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--page-gutter);
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  backdrop-filter: inherit;
  -webkit-backdrop-filter: inherit;
}

.site-header.header-on-light,
.site-header.menu-open {
  background: #0a0b0e;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(17, 19, 30, 0.18);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-main {
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 1001;
}
.nav-main a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.nav-main a:hover { opacity: 0.85; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1001;
}
.phone {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.btn-header-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1.5px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.btn-header-outline:hover { background: rgba(255,255,255,0.08); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: #fff;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

/* Hero section */
.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  height: 100vh;
  width: 100%;
  z-index: 1;
}

.hero-text {
  width: min(calc(var(--page-gutter) + 748px), 58vw);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 104px 48px 80px var(--page-gutter);
  overflow: visible;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow p {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 1.04px;
}
.hero-eyebrow .line {
  background: #fff;
  height: 2px;
  width: 32px;
  border-radius: 1px;
}

.hero-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: #fff;
}

.hero-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  opacity: 0.7;
  max-width: 514px;
}

.hero-support {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin-top: -8px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}
.btn-primary-hero {
  background: var(--pink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: background .18s;
}
.btn-primary-hero:hover { background: #c91653; }
.btn-primary-hero .arrow { font-size: 18px; line-height: 1; }

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px 16px 22px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
.btn-secondary-hero:hover { background: rgba(255,255,255,0.06); }
.btn-secondary-hero svg { width: 26px; height: 26px; flex-shrink: 0; }

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  width: fit-content;
  max-width: 100%;
}
.avatars {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 192px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #fff;
  background-size: cover;
  background-position: center;
  margin-right: -12px;
  position: relative;
  outline: 2px solid #2a313c;
  flex: 0 0 48px;
}
.avatar:last-child { margin-right: 0; }
.avatar.a1 { background-image: url('assets/img/client-1.jpg'); }
.avatar.a2 { background-image: url('assets/img/client-2.jpg'); }
.avatar.a3 { background-image: url('assets/img/client-3.jpg'); }
.avatar.a4 { background-image: url('assets/img/client-4.jpg'); }
.avatar.a5 { background-image: url('assets/img/client-5.jpg'); }

.sp-divider {
  width: 1px;
  height: 36px;
  background: var(--border-divider);
}
.sp-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.hero-photo {
  display: none;
}

.fw-scroll-hint {
  display: none;
}

.pillars-body {
  display: contents;
}

/* Clients strip */
.clients {
  background: var(--bg-clients);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 36px var(--page-gutter);
  width: 100%;
}
.clients-tagline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 600;
  font-size: 15px;
  color: #0f1014;
  flex-shrink: 0;
}
.clients-divider {
  width: 1px;
  height: 44px;
  background: var(--border-divider);
}
.clients-marquee {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientsMarquee 36s linear infinite;
}
.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}
@keyframes clientsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-right: 28px;
}
.client-logo img {
  height: 58px;
  width: auto;
  display: block;
}
.client-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.client-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-weight: 800;
  font-size: 14px;
}
.client-text {
  display: flex;
  flex-direction: column;
}
.client-text .name {
  font-weight: 800;
  font-size: 19px;
  color: #9ca3af;
  letter-spacing: -0.38px;
}
.client-text .sub {
  font-weight: 500;
  font-size: 8px;
  color: #9ca3af;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
.client-text .sub-2 {
  font-weight: 500;
  font-size: 7px;
  color: #9ca3af;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* =========================================================
   SOLUTIONS GRID (nodeId 20:2)
   ========================================================= */
.solutions {
  background: var(--bg-light);
  padding: 88px var(--page-gutter);
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}

.section-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.label-pink-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.label-pink-line p {
  font-weight: 500;
  font-size: 13px;
  color: var(--pink);
  letter-spacing: 1.95px;
}
.label-pink-line .line {
  background: var(--pink);
  width: 32px;
  height: 1.5px;
}

.solutions h2 {
  font-weight: 600;
  font-size: 39px;
  line-height: 1.1;
  letter-spacing: -1.12px;
  color: var(--text-dark-2);
  text-align: center;
}
.solutions h2 .accent { color: var(--pink); }

.section-desc-center {
  width: 720px;
  max-width: 100%;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-body-2);
  text-align: center;
}

.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.cards-row {
  display: flex;
  gap: 16px;
  width: 100%;
}
.sol-card {
  background: #fff;
  border-radius: 16px;
  height: 466px;
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.sol-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(17,19,30,.12);
}
.sol-card.no-photo {
  justify-content: flex-end;
}
.sol-card-dark {
  background: #7a808e;
  color: #fff;
}
.sol-photo {
  flex: 1 0 0;
  min-height: 0;
  width: 100%;
  background: #e1e1e8;
  background-size: cover;
  background-position: center;
  transition: transform .45s ease, filter .45s ease;
}
.sol-card:hover .sol-photo {
  transform: scale(1.045);
  filter: saturate(1.08);
}
.sol-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sol-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sol-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--pink-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sol-card-dark .sol-icon-box { background: #fff; }
.sol-icon-box svg { width: 26px; height: 26px; }
.sol-card h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  color: var(--text-dark-2);
}
.sol-card-dark h3 { color: #fff; }
.sol-card p {
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-body-2);
}
.sol-card-dark p { color: #fff; }
.section-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* =========================================================
   FOR WHOM (nodeId 56:2)
   ========================================================= */
.for-whom {
  background: var(--bg-light);
  padding: 88px var(--page-gutter);
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.for-whom h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -1.04px;
  color: var(--text-dark);
  text-align: center;
}
.for-whom h2 .accent { color: var(--pink); }

.label-pink-line .tracking-fw p { letter-spacing: 2.34px; }

.for-whom .desc {
  width: 680px;
  max-width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body-3);
  text-align: center;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 13px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 13px;
  color: #4d5261;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: all .18s;
}
.tab:hover { border-color: var(--text-dark); }
.tab-active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}
.tab svg { width: 16px; height: 16px; }

.fw-row {
  display: flex;
  gap: 18px;
  width: 100%;
}
.fw-card {
  flex: 1 0 0;
  min-width: 0;
  height: 380px;
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .28s ease, box-shadow .28s ease;
}
.fw-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 36px rgba(17,19,30,.10);
}
.fw-card-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fw-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--pink-tint-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fw-icon-box svg { width: 32px; height: 32px; }
.fw-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fw-card h3 {
  font-weight: 600;
  font-size: 22px;
  color: var(--text-dark);
}
.fw-card p {
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-body-3);
}
.fw-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fw-cta span {
  font-weight: 500;
  font-size: 14px;
  color: var(--pink);
}
.fw-cta svg { width: 20px; height: 20px; }

.bottom-cta-bar {
  background: #fff;
  border-radius: 100px;
  padding: 22px 22px 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bcta-left { display: inline-flex; align-items: center; gap: 18px; }
.bcta-icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 100px;
  background: var(--pink-tint-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bcta-icon-box svg { width: 28px; height: 28px; }
.bcta-text { display: flex; flex-direction: column; gap: 4px; }
.bcta-text strong { font-weight: 600; font-size: 16px; color: var(--text-dark); }
.bcta-text span { font-weight: 400; font-size: 13.5px; color: var(--text-body-3); }
.btn-pink-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px 16px 24px;
  background: var(--pink);
  border-radius: 100px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.btn-pink-pill:hover { background: #c91653; }
.btn-pink-pill svg { width: 18px; height: 18px; }

/* =========================================================
   SOLUTION PILLARS (nodeId 36:221)
   ========================================================= */
.pillars {
  background: var(--dark-2);
  border-radius: 28px;
  padding: 56px var(--page-gutter);
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}

.pillars-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 48px;
  width: 100%;
}
.pillars-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pillars-label p {
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  letter-spacing: 3px;
}
.pillars-label .line {
  background: var(--pink);
  width: 28px;
  height: 1.5px;
}
.pillars h2 {
  font-weight: 600;
  font-size: 39px;
  line-height: 1.12;
  letter-spacing: -1.12px;
  color: #fff;
  text-align: center;
}
.pillars h2 .accent { color: var(--pink); display: block; }
.pillars-desc {
  width: 760px;
  max-width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-on-dark-soft);
  text-align: center;
}

.pillars-sublabel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: center;
  text-align: center;
}
.pillars-sublabel svg { width: 14px; height: 14px; }
.pillars-sublabel p {
  font-weight: 500;
  font-size: 13px;
  color: #fff;
}

.pillar-row {
  display: flex;
  gap: 16px;
  width: 100%;
}
.pillar-card {
  flex: 1 0 0;
  min-width: 0;
  height: auto;
  min-height: 430px;
  border-radius: 16px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: pillarEnter .72s cubic-bezier(.22,1,.36,1) forwards;
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
  will-change: transform;
}
.pillar-card:nth-child(2) { animation-delay: .08s; }
.pillar-card:nth-child(3) { animation-delay: .16s; }
.pillar-card:nth-child(4) { animation-delay: .24s; }
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.34) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  pointer-events: none;
}
.pillar-card:hover,
.pillar-card:focus-visible,
.pillar-card.pillar-active {
  transform: translateY(-10px);
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
  filter: saturate(1.06);
}
.pillar-card:hover {
  transform: translateY(-14px) scale(1.012);
  box-shadow: 0 28px 56px rgba(0,0,0,.28);
}
.pillar-card:hover::before,
.pillar-card:focus-visible::before,
.pillar-card.pillar-active::before {
  transform: translateX(120%);
}
.pillar-card:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}
.pillar-card.pillar-active .pillar-arrow-circle {
  background: var(--pink);
  transform: scale(1.08);
}
.pillar-card.pillar-active .pillar-icon-box svg {
  animation: pillarIconPulse 1.6s ease-in-out infinite;
}
.pillar-card.p1 { background: var(--pillar-1-bg); }
.pillar-card.p2 { background: var(--pillar-2-bg); }
.pillar-card.p3 { background: var(--pillar-3-bg); }
.pillar-card.p4 { background: var(--pillar-4-bg); }
.pillar-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pillar-num {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
}
.pillar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pillar-card.p1 .pillar-icon-box { background: var(--pillar-1-icon); }
.pillar-card.p2 .pillar-icon-box { background: var(--pillar-2-icon); }
.pillar-card.p3 .pillar-icon-box { background: var(--pillar-3-icon); }
.pillar-card.p4 .pillar-icon-box { background: var(--pillar-4-icon); }
.pillar-icon-box svg { width: 36px; height: 36px; color: var(--text-dark); }
.pillar-card.p2 .pillar-icon-box svg,
.pillar-card.p3 .pillar-icon-box svg,
.pillar-card.p4 .pillar-icon-box svg { width: 32px; height: 32px; }

.pillar-middle {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .28s ease;
}
.pillar-title-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar-card h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.05;
  color: var(--text-dark);
}
.pillar-title-underline {
  width: 28px;
  height: 1.5px;
  background: var(--pink);
}
.pillar-card p {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-body-4);
}
.pillar-extra {
  display: grid;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid rgba(17,19,30,.16);
}
.pillar-extra span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(17,19,30,.74);
}
.pillar-extra span::before {
  content: '';
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--pink);
}
.pillar-arrow {
  display: flex;
  justify-content: flex-end;
}
.pillar-arrow-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease, background .22s ease;
}
.pillar-arrow-circle svg { width: 20px; height: 20px; }

.focus-panel {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 28px 32px 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  width: 100%;
  height: 196px;
  min-height: 196px;
  box-sizing: border-box;
  animation: focusPanelEnter .8s cubic-bezier(.22,1,.36,1) .25s both;
}
.focus-left {
  flex: 1 0 0;
  min-width: 0;
  height: 132px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.focus-title-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 92px;
  min-height: 92px;
  justify-content: flex-start;
  overflow: visible;
}
.focus-eyebrow {
  font-weight: 500;
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 1.98px;
}
.focus-title {
  font-weight: 600;
  font-size: 21px;
  color: #fff;
  line-height: 1.2;
  max-width: 460px;
}
.pillar-timeline {
  width: 100%;
  display: flex;
  justify-content: center;
}
.stepper {
  display: flex;
  align-items: center;
  width: min(100%, 760px);
}
.step {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-step-inactive);
  transition: border-color .35s ease, color .35s ease, box-shadow .35s ease, background .35s ease;
}
.step-active {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 0 6px rgba(237,27,92,.10);
}
.step-dash {
  flex: 1 1 auto;
  height: 2px;
  background: rgba(255,255,255,0.16);
}
.focus-divider {
  width: 1px;
  height: 130px;
  background: rgba(255,255,255,0.12);
}
.focus-middle {
  flex: 1 0 0;
  min-width: 0;
  height: 96px;
  min-height: 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.focus-middle p {
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-on-dark-soft);
  transition: opacity .2s ease, transform .2s ease;
  height: 66px;
  min-height: 66px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.btn-focus {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 26px 20px 28px;
  background: var(--pink);
  border-radius: 100px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.btn-focus:hover { background: #c91653; }
.btn-focus svg { width: 18px; height: 18px; }

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

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

@keyframes pillarIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .pillar-card,
  .focus-panel,
  .clients-track,
  .pillar-card.pillar-active .pillar-icon-box svg {
    animation: none;
  }
  .pillar-card {
    opacity: 1;
    transform: none;
  }
  .pillar-card,
  .pillar-arrow-circle,
  .focus-middle p,
  .testi-card {
    transition: none;
  }
  .testi-card.testi-enter-next,
  .testi-card.testi-enter-prev,
  .testi-card.testi-exit-next,
  .testi-card.testi-exit-prev {
    animation: none;
  }
  .about .about-eyebrow,
  .about h2,
  .about-paragraphs,
  .about-cta-wrap,
  .about-stats,
  .founder-card,
  .team-panel,
  .team-member,
  .founder-info,
  .hero-eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-support,
  .hero-buttons,
  .social-proof,
  .hero-wrap::before,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }
  .section-animate::before,
  .hero-eyebrow .line {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   NOSSO MÉTODO (nodeId 36:35)
   ========================================================= */
.method {
  background: var(--bg-light);
  padding: 96px var(--page-gutter);
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}
.method-header {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  width: 100%;
}
.method-headline-col {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.method-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.method-label .line {
  width: 28px;
  height: 2px;
  background: var(--pink-alt);
}
.method-label p {
  font-weight: 500;
  font-size: 13px;
  color: var(--pink-alt);
  letter-spacing: 1.95px;
}
.method h2 {
  font-weight: 500;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--text-dark-3);
}
.method-desc-col {
  width: 420px;
  padding-top: 72px;
}
.method-desc-col p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body-5);
}

.method-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.method-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.method-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 12%, rgba(237,27,92,.10), transparent 30%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 44px rgba(17,19,30,.12);
  border-color: rgba(237,27,92,.18);
}
.method-card:hover::before {
  opacity: 1;
}
.method-illust {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-illust > * {
  width: 220px;
  height: 220px;
  transition: transform .35s ease, filter .35s ease;
}
.method-card:hover .method-illust > * {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 14px 18px rgba(17,19,30,.10));
}
.method-title-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.method-title-row .num {
  font-weight: 500;
  font-size: 24px;
  color: var(--pink-alt);
}
.method-title-row .sep {
  font-weight: 400;
  font-size: 20px;
  color: #ccc;
}
.method-title-row .ttl {
  font-weight: 500;
  font-size: 24px;
  color: var(--text-dark-3);
}
.method-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body-5);
}
.method-card .saiba {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark-3);
  text-decoration: underline;
  white-space: pre;
  transition: color .22s ease, transform .22s ease;
  display: inline-block;
  align-self: flex-start;
}
.method-card:hover .saiba {
  color: var(--pink);
  transform: translateX(6px);
}

.method-bottom-row {
  display: flex;
  gap: 16px;
  width: 100%;
}
.method-bottom-block {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.method-bottom-block .line {
  width: 100%;
  height: 1.5px;
  background: var(--pink-alt);
}
.method-bottom-block p {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-body-5);
}
.method-bottom-spacer {
  flex: 1 0 0;
}

/* =========================================================
   CASES (nodeId 36:326)
   ========================================================= */
.cases {
  background: #fff;
  padding: 80px var(--page-gutter) 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}
.cases-header {
  display: flex;
  gap: 48px;
  align-items: flex-end;
  width: 100%;
}
.cases-header-left {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.label-dot-pink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label-dot-pink .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}
.label-dot-pink p {
  font-weight: 500;
  font-size: 13px;
  color: var(--pink);
  letter-spacing: 2.6px;
}
.cases h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -1.04px;
  color: var(--text-dark);
}
.cases-header-right {
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cases-header-right > p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}
.view-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.view-all p {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}
.view-all svg { width: 20px; height: 20px; }

.cases-grid {
  display: flex;
  gap: 16px;
  width: 100%;
  align-items: stretch;
}
.case-card {
  flex: 1 0 0;
  min-width: 0;
  border-radius: 18px;
  padding: 17px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image:
    linear-gradient(90deg, rgba(10,12,18,0.78) 0%, rgba(10,12,18,0.38) 45%, rgba(10,12,18,0.12) 100%),
    linear-gradient(180deg, rgba(10,12,18,0.10) 0%, rgba(10,12,18,0.54) 56%, rgba(10,12,18,0.82) 100%),
    url('https://images.unsplash.com/photo-1556228720-195a672e8a03?w=900&q=80');
  background-size: cover;
  background-position: center;
  background-color: #d2d6dc;
  color: #fff;
  min-height: 763px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(28px);
  animation: caseReveal .8s cubic-bezier(.22,1,.36,1) forwards;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.case-card::before,
.case-small::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 25%, rgba(237,27,92,0.20), transparent 26%),
    linear-gradient(115deg, rgba(0,0,0,0.42), transparent 48%);
  opacity: .68;
  z-index: -1;
  transition: opacity .35s ease;
}
.case-card:not(.case-col):hover,
.case-small:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(17,19,30,.22);
  filter: saturate(1.08);
}
.case-card:not(.case-col):hover::before,
.case-small:hover::before {
  opacity: .92;
}
.case-card.case-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  background: transparent;
  min-height: auto;
}
.case-small {
  border-radius: 18px;
  padding: 17px 24px;
  background-image:
    linear-gradient(90deg, rgba(10,12,18,0.76) 0%, rgba(10,12,18,0.34) 48%, rgba(10,12,18,0.10) 100%),
    linear-gradient(180deg, rgba(10,12,18,0.08) 0%, rgba(10,12,18,0.46) 58%, rgba(10,12,18,0.78) 100%),
    url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=900&q=80');
  background-size: cover;
  background-position: center;
  background-color: #d2d6dc;
  color: #fff;
  flex: 1 0 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(28px);
  animation: caseReveal .8s cubic-bezier(.22,1,.36,1) .12s forwards;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.case-small.case-3 {
  background-image:
    linear-gradient(90deg, rgba(10,12,18,0.74) 0%, rgba(10,12,18,0.32) 48%, rgba(10,12,18,0.08) 100%),
    linear-gradient(180deg, rgba(10,12,18,0.08) 0%, rgba(10,12,18,0.45) 58%, rgba(10,12,18,0.78) 100%),
    url('https://images.unsplash.com/photo-1542435503-956c469947f6?w=900&q=80');
  animation-delay: .22s;
}
.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.tag-destaque {
  background: #fff;
  border-radius: 100px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 1.32px;
}
.case-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .24s ease, background .24s ease;
}
.case-arrow-btn svg { width: 20px; height: 20px; }
.case-card:hover .case-arrow-btn,
.case-small:hover .case-arrow-btn {
  transform: rotate(45deg) scale(1.06);
  background: var(--pink);
}
.case-card:hover .case-arrow-btn svg,
.case-small:hover .case-arrow-btn svg {
  stroke: #fff;
}

.case-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.case-text {
  width: 279px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-text h3 {
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.32px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.36);
}
.case-small h3 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.24px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.36);
}
.case-sub {
  font-weight: 400;
  font-size: 13.5px;
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 12px rgba(0,0,0,.34);
}
.case-underline {
  width: 34px;
  height: 1.5px;
  background: var(--pink);
}
.case-text p {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.36);
}
.stats-card {
  width: 230px;
  padding: 22px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.05)),
    rgba(10,12,18,.30);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
}

@keyframes caseReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-label {
  font-weight: 400;
  font-size: 11px;
  color: #fff;
}
.stat-val {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.3px;
  color: #fff;
}
.stat-foot {
  font-weight: 400;
  font-size: 11px;
  color: #fff;
}

/* =========================================================
   TESTIMONIALS (nodeId 36:512)
   ========================================================= */
.testimonials {
  background: var(--bg-light);
  padding: 80px var(--page-gutter) 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.testi-header {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
}
.testi-header-left {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonials h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.96px;
  color: var(--text-dark);
}
.testi-header-left > p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
}
.testi-controls {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--border-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-btn svg { width: 18px; height: 18px; }
.view-all-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 22px;
  background: #fff;
  border: 1px solid var(--border-3);
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}
.view-all-pill svg { width: 18px; height: 18px; }

.testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 28px;
  align-items: center;
  width: 100%;
  will-change: transform, opacity;
  transform-origin: center;
}
.testi-card.testi-enter-next {
  animation: testiEnterNext .42s cubic-bezier(.22,1,.36,1) both;
}
.testi-card.testi-enter-prev {
  animation: testiEnterPrev .42s cubic-bezier(.22,1,.36,1) both;
}
.testi-card.testi-exit-next {
  animation: testiExitNext .28s cubic-bezier(.55,.06,.68,.19) both;
}
.testi-card.testi-exit-prev {
  animation: testiExitPrev .28s cubic-bezier(.55,.06,.68,.19) both;
}
.testi-photo {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.testi-photo.p1 { background-image: linear-gradient(135deg,#7c6657,#594d47); }
.testi-photo.p2 { background-image: linear-gradient(135deg,#3a3a3f,#1a1a1f); }
.testi-quote-col {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-mark { width: 36px; height: 32px; color: var(--pink); }
.quote-mark svg { width: 36px; height: 32px; }
.testi-quote-col > p {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-dark);
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.testi-author-line {
  width: 28px;
  height: 1.5px;
  background: var(--pink);
}
.testi-author strong {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
}
.testi-author .role {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-mute);
}
.testi-divider {
  width: 1px;
  height: 220px;
  background: var(--border-3);
}
.testi-stat-col {
  width: 360px;
  height: 220px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.testi-stat-col strong {
  font-weight: 600;
  font-size: 76px;
  letter-spacing: -2.28px;
  color: var(--text-dark);
  line-height: 1;
}
.testi-stat-col > div {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-body);
}

.testi-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 16px;
  width: 100%;
}
.testi-bottom p {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-body);
}
.btn-outline-pink {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px 16px 26px;
  background: #fff;
  border: 1.5px solid var(--pink);
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  color: var(--pink);
}
.btn-outline-pink:hover { background: var(--pink); color: #fff; }
.btn-outline-pink svg { width: 18px; height: 18px; }

@keyframes testiEnterNext {
  from {
    opacity: 0;
    transform: translateX(80px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes testiEnterPrev {
  from {
    opacity: 0;
    transform: translateX(-80px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes testiExitNext {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-70px) scale(.985);
  }
}

@keyframes testiExitPrev {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(70px) scale(.985);
  }
}

/* =========================================================
   ABOUT (nodeId 60:2)
   ========================================================= */
.about {
  background: #fff;
  padding: 72px var(--page-gutter);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
}
.about-left {
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-eyebrow {
  font-weight: 500;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 2.16px;
}
.about .about-eyebrow,
.about h2,
.about-paragraphs,
.about-cta-wrap,
.about-stats,
.founder-card,
.team-panel {
  opacity: 0;
  transform: translateY(26px);
}
.about.about-animate .about-eyebrow { animation: aboutRise .62s cubic-bezier(.22,1,.36,1) forwards; }
.about.about-animate h2 { animation: aboutRise .62s cubic-bezier(.22,1,.36,1) .08s forwards; }
.about.about-animate .about-paragraphs { animation: aboutRise .62s cubic-bezier(.22,1,.36,1) .16s forwards; }
.about.about-animate .about-cta-wrap { animation: aboutRise .62s cubic-bezier(.22,1,.36,1) .24s forwards; }
.about.about-animate .about-stats { animation: aboutRise .62s cubic-bezier(.22,1,.36,1) .32s forwards; }
.about.about-animate .founder-card { animation: founderReveal .82s cubic-bezier(.22,1,.36,1) .18s forwards; }
.about.about-animate .team-panel { animation: aboutRise .7s cubic-bezier(.22,1,.36,1) .3s forwards; }
.about h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--text-dark);
}
.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}
.about-paragraphs p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
  text-wrap: balance;
}
.about-cta-wrap { padding-top: 12px; }
.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px 18px 26px;
  background: var(--dark);
  border-radius: 100px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.btn-dark-pill:hover {
  background: #1f2230;
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(17,19,30,.18);
}
.btn-dark-pill .arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 100px;
  background: var(--dark-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-dark-pill .arrow-circle svg { width: 16px; height: 16px; }

.about-stats {
  display: flex;
  gap: 32px;
  padding-top: 40px;
  align-items: flex-start;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1 1 0;
}
.about-stat strong {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.45px;
  color: var(--text-dark);
  display: inline-block;
  min-width: 0;
  white-space: nowrap;
}
.about-stat span {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.35;
}

.founder-card {
  flex: 1 0 0;
  height: 737px;
  border-radius: 20px;
  background: #000;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%),
    url('assets/img/founder-photo.jpeg');
  background-size: cover;
  background-position: center 22%;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .38s ease, box-shadow .38s ease, filter .38s ease;
}
.founder-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 18%, rgba(237,27,92,.16), transparent 26%),
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,.30) 100%);
  opacity: .75;
  transition: opacity .32s ease;
}
.founder-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 50px rgba(17,19,30,.20);
  filter: saturate(1.06);
}
.founder-card:hover::before { opacity: 1; }
.founder-card.is-switching {
  animation: founderSwitch .34s ease both;
}
.founder-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  position: relative;
  z-index: 1;
  transform: translateY(10px);
  opacity: 0;
}
.about.about-animate .founder-info {
  animation: aboutRise .56s cubic-bezier(.22,1,.36,1) .58s forwards;
}
.founder-info strong {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}
.founder-info span {
  font-weight: 400;
  font-size: 13px;
  color: #ebebf0;
}

.team-panel {
  width: 250px;
  height: 737px;
  background: var(--bg-card-team);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-header strong {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
}
.team-header span {
  font-weight: 400;
  font-size: 12.5px;
  color: var(--text-body);
}
.team-grid {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team-member {
  flex: 1 1 0;
  width: 100%;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: translateY(18px) scale(.97);
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}
.about.about-animate .team-member {
  animation: teamPop .58s cubic-bezier(.22,1,.36,1) forwards;
}
.about.about-animate .team-member:nth-child(1) { animation-delay: .44s; }
.about.about-animate .team-member:nth-child(2) { animation-delay: .52s; }
.about.about-animate .team-member:nth-child(3) { animation-delay: .60s; }
.team-member:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 32px rgba(17,19,30,.18);
  filter: saturate(1.08);
}
.team-member:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}
.team-member.team-member-active {
  box-shadow: 0 0 0 2px var(--pink), 0 18px 32px rgba(17,19,30,.18);
}
.team-member::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(13,15,23,0.9) 100%);
  transition: background .26s ease;
}
.team-member:hover::after {
  background: linear-gradient(180deg, rgba(237,27,92,.05) 20%, rgba(13,15,23,0.96) 100%);
}
.team-name {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
}
.team-name strong {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.team-name span {
  font-weight: 400;
  font-size: 11px;
  color: #e5e5eb;
}

.about-v2 {
  position: relative;
  display: block;
  padding: 96px var(--page-gutter);
  background:
    radial-gradient(circle at 14% 4%, rgba(237,27,92,.08), transparent 40%),
    linear-gradient(180deg, #fff 0%, #f7f7f9 100%);
  overflow: hidden;
}
.about-team-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Sobre — bloco de conteúdo (acima) */
.about-team-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}
.about-team-content h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.14;
  letter-spacing: -0.9px;
  color: var(--text-dark);
  text-wrap: balance;
}
.about-team-copy {
  display: grid;
  gap: 14px;
}
.about-team-copy p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-body);
  text-wrap: pretty;
}
.about-v2 .about-stats {
  padding-top: 4px;
  gap: 26px;
}
.about-v2 .about-stat strong { font-size: 27px; }
.about-v2 .about-cta-wrap { padding-top: 6px; }

/* Sobre — carrossel do time (direita) */
.about-team-carousel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
.team-carousel-viewport {
  cursor: grab;
  touch-action: pan-y;
}
.team-carousel-track {
  display: flex;
  gap: 18px;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.team-card {
  flex: 0 0 31%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18,21,32,.08);
  box-shadow: 0 22px 48px rgba(17,19,30,.12);
}
.team-card-media {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
  background-color: var(--dark-2);
  filter: grayscale(100%);
}
.team-card-placeholder .team-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(237,27,92,.40), transparent 62%),
    linear-gradient(165deg, #2a3043 0%, #11131e 100%);
}
.team-card-placeholder .team-card-media::after {
  content: attr(data-initial);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,.22);
}
.team-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-card-name {
  font-weight: 600;
  font-size: 17px;
  color: var(--text-dark);
}
.team-card-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.team-carousel-nav {
  display: flex;
  gap: 10px;
}
.team-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(18,21,32,.16);
  background: #fff;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.team-carousel-btn:hover:not(:disabled) {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: translateY(-2px);
}
.team-carousel-btn svg { width: 19px; height: 19px; }
.team-carousel-btn:disabled { opacity: .32; cursor: default; }

@keyframes aboutRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes founderReveal {
  from {
    opacity: 0;
    transform: translateX(38px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes teamPop {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes founderSwitch {
  0% {
    opacity: .72;
    transform: scale(.985);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================================================
   CONTACT + FOOTER (nodeId 61:2 + 61:88)
   ========================================================= */
.contact {
  width: 100%;
  background:
    radial-gradient(circle at 50% 0%, rgba(237,27,92,.10), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, var(--pink-tint-3) 100%);
}
.contact-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  padding: 88px var(--page-gutter);
  width: 100%;
}
.contact-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(100%, 640px);
  text-align: center;
}
.contact-intro .pill { align-self: center; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 18px;
  background: var(--pink-tint);
  border-radius: 100px;
  align-self: flex-start;
}
.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}
.pill p {
  font-weight: 500;
  font-size: 13px;
  color: var(--pink);
}
.contact h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.96px;
  color: var(--text-dark);
}
.contact h2 .accent { color: var(--pink); display: block; }
.contact-desc {
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
}

.contact-form {
  flex: none;
  width: min(100%, 620px);
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0px 18px 48px 0px rgba(237,26,92,0.10);
}
.field label .req {
  color: var(--pink);
  font-weight: 600;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.field {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-input-label);
}
.field input,
.field textarea,
.field select {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 400;
  font-size: 13.5px;
  color: var(--text-dark);
  width: 100%;
  outline: none;
  transition: border-color .18s;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--pink); }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-input-placeholder); }
.field textarea { height: 110px; resize: vertical; font-family: inherit; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%239ea3ad' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  color: var(--text-input-placeholder);
}

.btn-submit-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  background: var(--pink);
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  width: 100%;
  cursor: pointer;
}
.btn-submit-form:hover { background: #c91653; }
.btn-submit-form svg { width: 18px; height: 18px; }

.privacy-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.privacy-note svg { width: 14px; height: 14px; }
.privacy-note p {
  font-weight: 400;
  font-size: 11.5px;
  color: var(--text-mute);
}

/* Footer */
.site-footer {
  background: var(--dark);
  width: 100%;
  color: #fff;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 76px var(--page-gutter) 56px;
  width: 100%;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 340px;
}
.footer-logo-img {
  height: 34px;
  display: block;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
}
.footer-socials {
  display: inline-flex;
  gap: 10px;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-socials a:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-2px);
}
.footer-socials svg { width: 19px; height: 19px; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col strong {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.footer-col a,
.footer-col span {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.6);
}
.footer-col a {
  width: fit-content;
  transition: color .18s ease;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--page-gutter);
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.footer-plus {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
}
.footer-plus svg { width: 26px; height: 26px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  :root { --page-gutter: 32px; }
  html { scroll-padding-top: 84px; }
  section,
  [id] {
    scroll-margin-top: 84px;
  }
  .hero-wrap {
    background-color: #18212c;
    background-size: cover;
    background-position: center 34%;
  }
  .site-header {
    padding: 16px var(--page-gutter);
  }
  .hero-wrap::before {
    background-size: cover;
    background-position: center 34%;
  }
  .menu-toggle { display: inline-flex; }
  .nav-main {
    position: absolute;
    top: calc(100% + 1px);
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(17, 19, 30, 0.96);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.22);
  }
  .site-header.menu-open .nav-main { display: flex; }
  .nav-main a {
    padding: 14px 16px;
    border-radius: 10px;
  }
  .nav-main a:hover { background: rgba(255,255,255,0.08); }
  .phone { display: none; }
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100svh;
  }
  .hero-text {
    flex: none;
    width: min(720px, 72vw);
    height: auto;
    min-height: 0;
    overflow: visible;
    justify-content: flex-start;
    padding: 140px var(--page-gutter) 56px;
  }
  .hero-photo { display: none; }
  .clients { flex-direction: column; align-items: flex-start; padding: 32px var(--page-gutter); }
  .clients-divider { width: 100%; height: 1px; }
  .clients-marquee { width: 100%; flex: none; min-height: 52px; }
  .solutions, .for-whom, .pillars, .method, .cases, .testimonials, .about { padding: 56px var(--page-gutter); }
  .method { padding: 56px var(--page-gutter); }
  .pillars { border-radius: 0; }
  .cards-row, .pillar-row, .method-cards, .method-bottom-row, .cases-grid {
    flex-direction: column;
  }
  .sol-card, .pillar-card, .fw-card { height: auto; min-height: 360px; }
  .fw-row {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    gap: 14px;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .fw-row::-webkit-scrollbar { display: none; }
  .fw-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
  .stepper {
    flex-direction: column;
    width: auto;
  }
  .step-dash {
    width: 2px;
    height: 30px;
    flex: 0 0 30px;
  }
  .method-header { flex-direction: column; gap: 32px; }
  .method-desc-col { width: 100%; padding-top: 0; }
  .cases-header { flex-direction: column; align-items: flex-start; }
  .cases-header-right { width: 100%; }
  .case-card { min-height: 480px; }
  .testi-header { flex-direction: column; align-items: stretch; }
  .testi-card { flex-direction: column; }
  .testi-photo { width: 100%; height: 240px; }
  .testi-divider { width: 100%; height: 1px; }
  .testi-stat-col { width: 100%; height: auto; padding: 0; }
  .about { flex-direction: column; }
  .about-left, .founder-card, .team-panel { width: 100%; }
  .focus-panel { flex-direction: column; align-items: stretch; gap: 24px; }
  .focus-panel { height: auto; min-height: 420px; }
  .focus-left, .focus-middle { height: auto; min-height: auto; }
  .focus-title-block { height: auto; min-height: 84px; }
  .focus-middle p { height: auto; min-height: 90px; }
  .focus-divider { display: none; }
  .method h2 { font-size: 31px; }
  .solutions h2, .pillars h2 { font-size: 28px; }
  .for-whom h2, .cases h2, .contact h2 { font-size: 25px; }
  .testimonials h2 { font-size: 24px; }
  .about h2 { font-size: 21px; }
  .hero-title { font-size: 36px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 56px var(--page-gutter) 44px;
  }
  .footer-brand { grid-column: 1 / -1; max-width: 520px; }
}

@media (max-width: 640px) {
  :root { --page-gutter: 24px; }
  .reveal-on-scroll,
  .reveal-on-scroll.revealed,
  .about .about-eyebrow,
  .about h2,
  .about-paragraphs,
  .about-cta-wrap,
  .about-stats,
  .founder-card,
  .team-panel {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  html { scroll-padding-top: 82px; }
  section,
  [id] {
    scroll-margin-top: 82px;
  }
  .site-header {
    padding: 14px var(--page-gutter);
    gap: 12px;
    isolation: isolate;
    background: #0a0b0e;
  }
  .method-card,
  .pillar-card,
  .sol-card,
  .fw-card,
  .case-card,
  .testi-card,
  .founder-card,
  .team-panel,
  .contact-form {
    z-index: 0;
  }
  .logo-img { height: 28px; }
  .btn-header-outline { display: none; }
  .hero-text {
    width: 100%;
    padding: 24px var(--page-gutter) 48px;
    gap: 24px;
  }
  .hero-title {
    font-size: clamp(30px, 8.6vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.4px;
    text-wrap: balance;
  }
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.55;
    max-width: 31ch;
  }
  .hero-bg { display: none; }

  /* hero mobile — layout Figma (182:743): imagem no topo, conteúdo abaixo */
  .hero-wrap {
    background-color: #0a0a0e;
  }
  .hero-wrap::before { display: none; }
  .hero {
    min-height: 0;
    padding-top: 64px;
  }
  .hero-photo {
    order: -1;
    display: block;
    flex: none;
    position: relative;
    height: 360px;
    background-image: url('assets/img/capa.jpg');
    background-size: cover;
    background-position: center top;
  }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 14, 0) 0%, rgba(10, 10, 14, 0) 38%, #0a0a0e 100%);
  }
  .social-proof {
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }
  .sp-caption { font-size: 12px; }
  .avatars {
    min-width: 154px;
  }
  .avatar {
    width: 38px;
    height: 38px;
    margin-right: -10px;
    flex-basis: 38px;
  }
  .clients-divider {
    width: 100%;
    height: 1px;
    background: var(--border-divider);
  }
  .tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .tab {
    flex: 0 1 auto;
    padding: 10px 13px;
    font-size: 12px;
  }
  .bottom-cta-bar { flex-direction: column; gap: 18px; border-radius: 20px; align-items: stretch; }
  .form-row { flex-direction: column; }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .case-bottom { flex-direction: column; align-items: stretch; gap: 24px; }
  .stats-card { width: 100%; }
  .case-text { width: 100%; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary-hero, .btn-secondary-hero { justify-content: center; }
  .contact-main { padding: 56px var(--page-gutter); }
  .solutions, .for-whom, .method, .cases, .testimonials, .about, .pillars { padding: 48px var(--page-gutter); }
  .section-header-center {
    gap: 22px;
  }
  .section-header-center h2,
  .pillars h2,
  .method h2,
  .cases h2,
  .testimonials h2,
  .about h2,
  .contact h2 {
    max-width: 12.5em;
    margin-inline: auto;
    text-wrap: balance;
    letter-spacing: -0.5px;
  }
  .section-header-center h2 br,
  .for-whom .desc br,
  .pillars h2 br,
  .pillars-desc br,
  .cases h2 br,
  .testimonials h2 br,
  .testimonials .testi-header-left > p br,
  .about h2 br,
  .about-paragraphs br,
  .contact h2 br {
    display: none;
  }
  .section-desc-center,
  .for-whom .desc,
  .pillars-desc,
  .method-desc-col p,
  .cases-header-right > p,
  .testimonials .testi-header-left > p,
  .about-paragraphs,
  .contact-desc {
    max-width: 31ch;
    margin-inline: auto;
    text-wrap: pretty;
  }
  .about-paragraphs,
  .contact-desc,
  .cases-header-right > p {
    margin-inline: 0;
  }
  .solutions h2, .pillars h2, .method h2 {
    font-size: 22px;
    line-height: 1.12;
  }
  .for-whom h2, .cases h2, .contact h2 {
    font-size: 21px;
    line-height: 1.14;
  }
  .testimonials h2 { font-size: 21px; }
  .testi-bottom { flex-direction: column; }
  .focus-panel {
    padding: 28px 24px;
    gap: 22px;
  }
  .focus-left {
    gap: 18px;
  }
  .focus-title {
    font-size: 20px;
    line-height: 1.2;
    max-width: 100%;
  }
  .focus-middle {
    min-height: 126px;
    overflow: visible;
    align-items: flex-start;
  }
  .focus-middle p {
    min-height: 0;
    display: block;
    overflow: visible;
    font-size: 13.5px;
    line-height: 1.65;
  }
  .btn-focus {
    width: 100%;
    justify-content: center;
    align-self: stretch;
    margin-top: 2px;
  }
  .sol-content, .fw-card, .pillar-card, .method-card, .contact-form {
    padding: 24px;
  }
  .method-card {
    flex: none;
    height: auto;
    min-height: 0;
    overflow: visible;
    gap: 20px;
  }
  .method-illust {
    height: 150px;
  }
  .method-illust > * {
    width: 150px;
    height: 150px;
  }
  .method-title-row {
    gap: 10px;
  }
  .method-title-row .num,
  .method-title-row .ttl {
    font-size: 22px;
  }
  .fw-card {
    min-height: 280px;
  }
  .pillar-card {
    min-height: 390px;
  }
  .testi-controls {
    display: grid;
    grid-template-columns: 46px 46px 1fr;
    width: 100%;
  }
  .view-all-pill {
    justify-content: center;
    min-width: 0;
    text-align: center;
  }
  .testi-stat-col strong {
    font-size: 52px;
    letter-spacing: -1px;
  }
  .founder-card {
    width: 100%;
    height: 520px !important;
    min-height: 520px;
    border-radius: 18px;
    background-position: center top;
    padding: 24px;
  }
  .founder-info strong { font-size: 22px; }
  .team-panel {
    width: 100%;
    height: auto;
    padding: 22px;
    overflow: hidden;
  }
  .team-header {
    padding-right: 0;
  }
  .team-grid {
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .team-member {
    flex: none;
    aspect-ratio: 1 / 1;
  }
  .team-name {
    bottom: 18px;
    left: 18px;
  }
  .team-name strong { font-size: 16px; }
  .team-name span { font-size: 12px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px var(--page-gutter) 36px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* menu hamburger → right end */
  .menu-toggle { margin-left: auto; }
  .header-actions { margin-left: 0; }

  /* footer logo same size as header logo */
  .footer-logo-img { height: 28px; }

  /* text width: remove narrow constraints */
  .hero-subtitle { max-width: 100%; }
  .section-header-center h2,
  .pillars h2,
  .method h2,
  .cases h2,
  .testimonials h2,
  .about h2,
  .contact h2 { max-width: 100%; margin-inline: 0; }
  .section-desc-center,
  .for-whom .desc,
  .pillars-desc,
  .method-desc-col p,
  .cases-header-right > p,
  .testimonials .testi-header-left > p,
  .about-paragraphs,
  .contact-desc { max-width: 100%; }

  /* carousel: cards occupy ~88% showing peek of next */
  .fw-card { flex: 0 0 88%; }
  .fw-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
  }
  .fw-scroll-hint svg { width: 16px; height: 16px; stroke: #6b7280; }

  /* privacy note: icone um pouco maior */
  .privacy-note svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* oculta o sublabel dos pilares no mobile */
  .pillars-sublabel { display: none; }

  /* processo: timeline on left of stacked cards */
  .pillars-body {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
  }
  .pillars-body .pillar-timeline {
    flex-shrink: 0;
    width: auto;
  }
  .pillars-body .pillar-row {
    flex: 1 1 0;
    min-width: 0;
  }

  /* sticky timeline on left while cards scroll */
  .pillars-body .pillar-timeline {
    position: sticky;
    top: 82px;
    align-self: flex-start;
  }

  /* pillar cards: height auto, no cut-off */
  .pillar-card { flex: none; width: 100%; min-height: 0; height: auto; }

  /* focus panel: hide content, keep only CTA button */
  .focus-panel {
    background: transparent;
    border: none;
    padding: 0;
    height: auto;
    min-height: 0;
    gap: 0;
    animation: none;
  }
  .focus-left,
  .focus-middle,
  .focus-divider { display: none; }
  .btn-focus { width: auto; align-self: center; margin-top: 8px; }

  /* método cards: horizontal carousel */
  .method-cards {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    gap: 14px;
  }
  .method-cards::-webkit-scrollbar { display: none; }
  .method-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

@media (max-width: 1100px) {
  .about-v2 {
    padding: 72px var(--page-gutter) 80px;
  }
  .about-team-content h2 {
    font-size: 27px;
  }
  .team-card {
    flex: 0 0 44%;
  }
}

@media (max-width: 760px) {
  .about-v2 {
    padding: 64px var(--page-gutter) 72px;
  }
  .about-team-content h2 {
    font-size: 24px;
  }
  .about-team-copy p {
    font-size: 14px;
    line-height: 1.7;
  }
  .team-card {
    flex: 0 0 64%;
  }
  .about-v2 .about-cta-wrap,
  .about-v2 .btn-dark-pill {
    width: 100%;
  }
  .about-v2 .btn-dark-pill {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .team-card {
    flex: 0 0 86%;
  }
}

[hidden] {
  display: none !important;
}

.contact-form.form-invalid {
  outline: 2px solid rgba(237, 27, 92, 0.22);
}

.contact-form.form-invalid::after {
  content: 'Preencha os campos obrigatórios com dados válidos para continuar.';
  color: var(--pink);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.contact-form.form-sent::after {
  content: 'Recebemos suas informações. Agora é só conectar este formulário ao seu canal de atendimento.';
  color: #1a7f45;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.btn-submit-form:disabled {
  cursor: default;
  background: #1a7f45;
}


