/* ============================================================
   G&D Code Labs — style.css v2 (refined, premium, less white)
   ============================================================ */

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

:root {
  /* Brand */
  --blue:       #2563eb;
  --blue-dark:  #1e40af;
  --blue-light: #eff6ff;
  --indigo:     #4f46e5;
  --indigo-dim: #6366f1;
  --green-wa:   #22c55e;
  --green-dark: #16a34a;

  /* Neutrals — off-white palette, no pure white */
  --white:      #fdfdfe;
  --bg-0:       #f5f7fb;   /* hero / very light blue-grey */
  --bg-1:       #f0f4f9;   /* primary section background */
  --bg-2:       #e8eef6;   /* slightly deeper for contrast */
  --bg-card:    #ffffff;   /* card surface — white but surrounded by tinted bg */

  /* Text */
  --text-1:     #0d1526;
  --text-2:     #2d3a52;
  --text-3:     #5a6a85;
  --text-4:     #8fa0bb;

  /* Borders */
  --border:     rgba(37,99,235,.10);
  --border-md:  rgba(37,99,235,.18);

  /* Shadows — richer than before */
  --shadow-xs:  0 1px 3px rgba(13,21,38,.06);
  --shadow-sm:  0 2px 8px rgba(13,21,38,.07), 0 1px 3px rgba(13,21,38,.05);
  --shadow-md:  0 6px 20px rgba(13,21,38,.09), 0 2px 6px rgba(13,21,38,.05);
  --shadow-lg:  0 16px 40px rgba(13,21,38,.11), 0 4px 12px rgba(13,21,38,.06);
  --shadow-xl:  0 28px 64px rgba(13,21,38,.13), 0 8px 20px rgba(13,21,38,.07);

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --font:       'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
  --tr:         0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-2);
  background: var(--bg-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- SCROLL REVEAL — safe fallback: visible by default ---- */
.reveal { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(22px); }
.js-ready .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245,247,251,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37,99,235,.08);
  transition: box-shadow var(--tr), background var(--tr);
}
.navbar.scrolled {
  background: rgba(245,247,251,.97);
  box-shadow: 0 4px 28px rgba(13,21,38,.08);
}
.nav-inner { display: flex; align-items: center; height: 68px; gap: 32px; }
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  color: #fff; font-family: var(--font); font-weight: 800; font-size: .85rem;
  box-shadow: 0 4px 14px rgba(79,70,229,.38);
}
.brand-name { font-family: var(--font); font-weight: 700; font-size: 1.05rem; color: var(--text-1); letter-spacing: -.3px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  font-family: var(--font); font-weight: 500; font-size: .9rem; color: var(--text-3);
  padding: 6px 14px; border-radius: var(--radius-sm);
  transition: color var(--tr), background var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-light); }
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-wa); color: #fff;
  font-family: var(--font); font-weight: 600; font-size: .875rem;
  padding: 9px 18px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(34,197,94,.35);
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
}
.btn-nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,197,94,.42); }
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; gap: 5px; background: none;
  border: 1px solid var(--border-md); border-radius: var(--radius-sm); cursor: pointer; margin-left: auto;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text-2); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — bg-0 com blobs mais ricos
   ============================================================ */
.hero {
  position: relative;
  padding: 152px 0 104px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f5ff 0%, #f5f7fb 50%, #eef4fb 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hb-blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.hb-1 { width: 750px; height: 550px; top: -180px; left: -180px; background: radial-gradient(circle, rgba(79,70,229,.18), transparent 70%); opacity: .8; }
.hb-2 { width: 650px; height: 500px; top: -100px; right: -120px; background: radial-gradient(circle, rgba(37,99,235,.15), transparent 70%); opacity: .7; }
.hb-3 { width: 450px; height: 400px; bottom: -80px; left: 35%; background: radial-gradient(circle, rgba(79,70,229,.10), transparent 70%); opacity: .6; }
.hb-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 40%, transparent 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(79,70,229,.1); color: var(--indigo);
  font-family: var(--font); font-weight: 600; font-size: .82rem;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(79,70,229,.18); margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font); font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800; color: var(--text-1); line-height: 1.17;
  letter-spacing: -1px; margin-bottom: 20px;
}
.ht-highlight {
  font-style: italic;
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 1.05rem; color: var(--text-3); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: #fff;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  box-shadow: 0 6px 22px rgba(34,197,94,.42);
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
}
.btn-primary-hero:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(34,197,94,.48); }
.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.85); color: var(--text-2);
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  padding: 13px 24px; border-radius: 999px;
  border: 1px solid var(--border-md); box-shadow: var(--shadow-md);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr), color var(--tr);
}
.btn-ghost-hero:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 4px; }
.ht-item { display: flex; align-items: center; gap: 7px; font-size: .855rem; color: var(--text-3); font-weight: 500; letter-spacing: .01em; }
.ht-item i { color: var(--blue); font-size: .9rem; opacity: .85; }

/* Dashboard Mock */
.hero-visual { position: relative; }
.dash-mock {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(37,99,235,.14);
  box-shadow: 0 32px 72px rgba(13,21,38,.13), 0 8px 24px rgba(37,99,235,.08), 0 0 0 8px rgba(79,70,229,.04);
  overflow: hidden;
}
.dash-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(90deg, #f4f6fb, #eef3fb);
  border-bottom: 1px solid rgba(37,99,235,.08);
}
.dtb-dots { display: flex; gap: 6px; }
.d-red { width: 11px; height: 11px; border-radius: 50%; background: #f87171; }
.d-yellow { width: 11px; height: 11px; border-radius: 50%; background: #fbbf24; }
.d-green { width: 11px; height: 11px; border-radius: 50%; background: #4ade80; }
.dtb-label { font-family: var(--font); font-size: .8rem; font-weight: 600; color: var(--text-3); margin-left: 4px; }
.dash-content { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.dc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dc-stat {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.dcs-label { font-size: .7rem; color: var(--text-3); font-weight: 500; }
.dcs-num { font-family: var(--font); font-size: 1.15rem; font-weight: 800; color: var(--text-1); line-height: 1; }
.dcs-trend { font-size: .7rem; font-weight: 600; display: flex; align-items: center; gap: 2px; }
.dcs-trend.up { color: #16a34a; }
.dcs-trend.neutral { color: var(--text-3); }
.dc-bars { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.dcb-title { font-size: .75rem; font-weight: 600; color: var(--text-3); margin-bottom: 12px; }
.dcb-chart { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.dcb-bar { flex: 1; height: var(--h); background: linear-gradient(180deg, rgba(79,70,229,.22), rgba(79,70,229,.08)); border-radius: 4px 4px 0 0; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 2px; }
.dcb-bar.active { background: linear-gradient(180deg, var(--indigo), rgba(79,70,229,.6)); }
.dcb-bar span { font-size: .6rem; color: var(--text-3); }
.dcb-bar.active span { color: #fff; }
.dc-list { display: flex; flex-direction: column; gap: 8px; }
.dcl-title { font-size: .75rem; font-weight: 600; color: var(--text-3); margin-bottom: 2px; }
.dcl-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.dcl-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; flex-shrink: 0; font-family: var(--font); }
.av-pink { background: #fce7f3; color: #be185d; }
.av-blue { background: #dbeafe; color: #1d4ed8; }
.dcl-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.dcl-info strong { font-size: .78rem; font-weight: 700; color: var(--text-1); font-family: var(--font); }
.dcl-info span { font-size: .7rem; color: var(--text-3); }
.dcl-badge { font-size: .65rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; white-space: nowrap; font-family: var(--font); }
.dcl-badge.confirmed { background: #dcfce7; color: #15803d; }
.dcl-badge.pending { background: #fef9c3; color: #92400e; }

.float-pill {
  position: absolute; display: flex; align-items: center; gap: 11px;
  background: var(--bg-card); border: 1px solid rgba(37,99,235,.14); border-radius: var(--radius-lg);
  padding: 11px 16px; box-shadow: 0 12px 32px rgba(13,21,38,.12), 0 2px 8px rgba(13,21,38,.05); font-family: var(--font); z-index: 2;
  animation: float 4s ease-in-out infinite alternate;
}
.float-pill i { font-size: 1.25rem; color: var(--indigo); flex-shrink: 0; }
.float-pill div { display: flex; flex-direction: column; gap: 2px; }
.float-pill strong { font-size: .8rem; font-weight: 700; color: var(--text-1); }
.float-pill span { font-size: .68rem; color: var(--text-3); }
.fp-1 { top: -18px; right: -16px; animation-delay: 0s; }
.fp-2 { bottom: 32px; left: -20px; animation-delay: 1.8s; }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-10px); } }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(79,70,229,.09); color: var(--indigo);
  font-family: var(--font); font-weight: 600; font-size: .78rem;
  padding: 5px 14px; border-radius: 999px; border: 1px solid rgba(79,70,229,.16);
  margin-bottom: 16px; letter-spacing: .3px; text-transform: uppercase;
}
.section-tag.light { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.28); }
.section-title { font-family: var(--font); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--text-1); line-height: 1.22; letter-spacing: -.5px; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--text-3); line-height: 1.7; }

/* ============================================================
   BENEFITS — bg-card sobre bg-1
   ============================================================ */
.section-benefits {
  padding: 88px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit-card {
  padding: 32px 26px;
  min-height: 200px;
  background: var(--bg-card);
  border: 1.5px solid rgba(37,99,235,.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(13,21,38,.06), 0 1px 3px rgba(13,21,38,.03);
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(13,21,38,.09), 0 4px 10px rgba(37,99,235,.07); border-color: rgba(37,99,235,.22); }
.bc-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(37,99,235,.08));
  color: var(--indigo); font-size: 1.3rem; margin-bottom: 16px;
  border: 1px solid rgba(79,70,229,.1);
}
.benefit-card h3 { font-family: var(--font); font-size: .975rem; font-weight: 700; color: var(--text-1); margin-bottom: 8px; line-height: 1.3; }
.benefit-card p { font-size: .875rem; color: var(--text-3); line-height: 1.6; }

/* ============================================================
   PROBLEMS — fundo azul-ardósia escuro = contraste nobre
   ============================================================ */
.section-problems {
  padding: 96px 0;
  background: linear-gradient(140deg, #1a2f52 0%, #1e3460 50%, #243870 100%);
  position: relative;
  overflow: hidden;
}
.section-problems::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.problems-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.problems-left .section-tag { background: rgba(255,255,255,.12); color: #a5b4fc; border-color: rgba(165,180,252,.2); }
.problems-left .section-title { color: #f0f4ff; }
.problems-left .section-sub { color: rgba(200,210,240,.75); margin-bottom: 32px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: #fff;
  font-family: var(--font); font-weight: 700; font-size: .95rem;
  padding: 13px 24px; border-radius: 999px;
  box-shadow: 0 5px 18px rgba(34,197,94,.4);
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(34,197,94,.45); }
.problem-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.problem-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: background var(--tr), transform var(--tr);
}
.problem-list li:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.pl-icon {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); background: rgba(255,159,64,.15); color: #fb923c;
  font-size: 1rem; flex-shrink: 0; border: 1px solid rgba(251,146,60,.2);
}
.pl-text { display: flex; flex-direction: column; gap: 3px; }
.pl-text strong { font-size: .9rem; font-weight: 700; color: #e8f0ff; font-family: var(--font); }
.pl-text span { font-size: .82rem; color: rgba(190,205,240,.7); }
.problems-callout {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(79,70,229,.2);
  border: 1px solid rgba(165,180,252,.25);
  border-radius: var(--radius-lg); padding: 18px 20px;
}
.problems-callout i { color: #a5b4fc; font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.problems-callout p { font-size: .9rem; color: rgba(200,215,255,.85); line-height: 1.6; }
.problems-callout strong { color: #e8f0ff; }

/* ============================================================
   SOLUTIONS — bg-card sobre bg-0
   ============================================================ */
.section-solutions { padding: 96px 0; background: var(--bg-0); }.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; padding-top: 10px; }
.solution-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1.5px solid rgba(37,99,235,.12);
  border-radius: var(--radius-xl); padding: 32px;
  position: relative;
  box-shadow: 0 4px 16px rgba(13,21,38,.07), 0 1px 4px rgba(13,21,38,.04);
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.solution-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(13,21,38,.11), 0 6px 16px rgba(37,99,235,.08); border-color: rgba(37,99,235,.25); }
.solution-card.featured { background: linear-gradient(155deg, #1e3a7a 0%, #2563eb 60%, #3b82f6 100%); border-color: transparent; box-shadow: 0 20px 52px rgba(37,99,235,.32), 0 6px 18px rgba(37,99,235,.18); }
.solution-card.featured:hover { border-color: transparent; box-shadow: 0 28px 64px rgba(37,99,235,.38), 0 8px 24px rgba(37,99,235,.2); }
.sc-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #fbbf24; color: #78350f; font-family: var(--font); font-size: .75rem; font-weight: 700; padding: 4px 14px; border-radius: 999px; white-space: nowrap; box-shadow: 0 4px 12px rgba(251,191,36,.4); }
.sc-top { margin-bottom: 20px; }
.sc-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); background: rgba(79,70,229,.1); color: var(--indigo); font-size: 1.4rem; margin-bottom: 16px; }
.solution-card.featured .sc-icon { background: rgba(255,255,255,.15); color: #fff; }
.solution-card h3 { font-family: var(--font); font-size: 1.1rem; font-weight: 800; color: var(--text-1); margin-bottom: 10px; line-height: 1.3; }
.solution-card.featured h3 { color: #fff; }
.solution-card p { font-size: .9rem; color: var(--text-3); line-height: 1.65; }
.solution-card.featured p { color: rgba(255,255,255,.78); }
.sc-list { display: flex; flex-direction: column; gap: 8px; margin: 0 0 24px; flex: 1; }
.sc-list li { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--text-2); }
.sc-list li i { color: var(--indigo); font-size: 1rem; flex-shrink: 0; }
.solution-card.featured .sc-list li { color: rgba(255,255,255,.85); }
.solution-card.featured .sc-list li i { color: #a5f3fc; }
.sc-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font); font-weight: 600; font-size: .9rem; color: var(--blue);
  border: 1.5px solid rgba(37,99,235,.28); padding: 10px 18px; border-radius: 999px;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  margin-top: auto; width: fit-content;
}
.sc-cta:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.featured-cta { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }
.featured-cta:hover { background: rgba(255,255,255,.22); color: #fff; border-color: rgba(255,255,255,.4); }

/* ============================================================
   BUSINESS TYPES — bg-1
   ============================================================ */
.section-business { padding: 96px 0; background: var(--bg-1); }
.business-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.business-card {
  background: var(--bg-card);
  border: 1.5px solid rgba(37,99,235,.1);
  border-radius: var(--radius-xl); padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(13,21,38,.06), 0 1px 3px rgba(13,21,38,.04);
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.business-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(13,21,38,.1), 0 4px 12px rgba(37,99,235,.07); border-color: rgba(37,99,235,.22); }
.biz-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); background: linear-gradient(135deg, #eff6ff, #eef2ff); color: var(--indigo); font-size: 1.4rem; margin-bottom: 16px; border: 1px solid rgba(79,70,229,.1); }
.business-card h3 { font-family: var(--font); font-size: 1rem; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.business-card p { font-size: .855rem; color: var(--text-3); line-height: 1.6; margin-bottom: 16px; }
.biz-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.biz-tags span { background: var(--blue-light); color: var(--blue); border: 1px solid rgba(37,99,235,.15); font-family: var(--font); font-weight: 600; font-size: .72rem; padding: 3px 10px; border-radius: 999px; }

/* ============================================================
   PORTFOLIO — bg-0
   ============================================================ */
.section-portfolio { padding: 96px 0; background: var(--bg-0); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card {
  background: var(--bg-card);
  border: 1.5px solid rgba(37,99,235,.1);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 4px 16px rgba(13,21,38,.07), 0 1px 4px rgba(13,21,38,.04);
  transition: box-shadow var(--tr), transform var(--tr);
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(13,21,38,.11), 0 6px 16px rgba(37,99,235,.07); }

/* Browser mockup frame */
.pc-browser {
  margin: 16px 16px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(37,99,235,.12);
  box-shadow: 0 4px 20px rgba(13,21,38,.1), 0 1px 4px rgba(13,21,38,.06);
}
.pcb-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  background: linear-gradient(90deg, #f0f4fb, #eaeff8);
  border-bottom: 1px solid rgba(37,99,235,.1);
}
.pcb-dots { display: flex; gap: 5px; flex-shrink: 0; }
.pcb-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #f87171; }
.dot-yellow { background: #fbbf24; }
.dot-green  { background: #4ade80; }
.pcb-url {
  flex: 1; display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(37,99,235,.1);
  border-radius: 6px; padding: 3px 10px;
  font-family: var(--font); font-size: .68rem; font-weight: 500;
  color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pcb-url i { font-size: .65rem; color: #16a34a; flex-shrink: 0; }

/* Screen area — 16:9 ratio */
.pcb-screen {
  position: relative;
  width: 100%; aspect-ratio: 16 / 9;
  background: var(--bg-2);
  overflow: hidden;
}
.pc-img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center center;
  display: block;
  background: var(--bg-2);
  transition: transform .5s ease;
}
.portfolio-card:hover .pc-img { transform: scale(1.03); }

/* Placeholder shown when image is missing or fails */
.pc-placeholder {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
}
.pc-placeholder i { font-size: 2rem; color: var(--indigo); opacity: .5; }
.pc-placeholder span { font-family: var(--font); font-size: .8rem; font-weight: 600; color: var(--text-3); }

/* If img src is missing (no onerror needed for missing files) — show placeholder by default */
.pc-img[src="images/projetos/salao.jpg"],
.pc-img[src="images/projetos/dashboard.jpg"],
.pc-img[src="images/projetos/site.jpg"] { display: block; }

.pc-body { padding: 18px 20px 22px; }
.pc-body h4 { font-family: var(--font); font-size: 1rem; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.pc-body p { font-size: .875rem; color: var(--text-3); margin-bottom: 14px; line-height: 1.55; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pc-tags span { background: var(--blue-light); color: var(--blue); border: 1px solid rgba(37,99,235,.15); font-family: var(--font); font-weight: 600; font-size: .72rem; padding: 3px 10px; border-radius: 999px; }

/* ============================================================
   HOW IT WORKS — bg-1
   ============================================================ */
.section-how { padding: 96px 0; background: var(--bg-1); }
.how-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.how-card {
  background: var(--bg-card); border: 1.5px solid rgba(37,99,235,.1);
  border-radius: var(--radius-xl); padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(13,21,38,.06), 0 1px 3px rgba(13,21,38,.04);
  transition: box-shadow var(--tr), transform var(--tr);
}
.how-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(13,21,38,.09), 0 4px 10px rgba(37,99,235,.07); }
.hw-step { font-family: var(--font); font-size: 2rem; font-weight: 900; color: var(--bg-2); line-height: 1; margin-bottom: 12px; letter-spacing: -1px; }
.hw-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(79,70,229,.1), rgba(37,99,235,.07)); border-radius: var(--radius); color: var(--indigo); font-size: 1.2rem; margin-bottom: 14px; border: 1px solid rgba(79,70,229,.1); }
.how-card h3 { font-family: var(--font); font-size: .95rem; font-weight: 700; color: var(--text-1); margin-bottom: 8px; line-height: 1.3; }
.how-card p { font-size: .845rem; color: var(--text-3); line-height: 1.6; }
.how-arrow { display: flex; align-items: center; justify-content: center; padding: 0 12px; margin-top: 40px; color: var(--text-4); font-size: 1.3rem; }

/* ============================================================
   POR QUE ESCOLHER — bg-0, cards premium
   ============================================================ */
.section-why { padding: 96px 0; background: var(--bg-0); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--bg-card);
  border: 1.5px solid rgba(37,99,235,.1);
  border-radius: var(--radius-xl); padding: 32px 26px;
  box-shadow: 0 4px 16px rgba(13,21,38,.07), 0 1px 4px rgba(13,21,38,.04);
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--blue));
  opacity: 0;
  transition: opacity var(--tr);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(13,21,38,.1), 0 6px 16px rgba(37,99,235,.07); border-color: rgba(37,99,235,.22); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(37,99,235,.08));
  color: var(--indigo); font-size: 1.4rem;
  border: 1px solid rgba(79,70,229,.12);
  box-shadow: 0 4px 12px rgba(79,70,229,.1);
}
.why-card h3 { font-family: var(--font); font-size: 1.02rem; font-weight: 700; color: var(--text-1); margin-bottom: 10px; line-height: 1.3; }
.why-card p { font-size: .875rem; color: var(--text-3); line-height: 1.65; }

/* ============================================================
   CONTACT SECTION — bg-0
   ============================================================ */
.section-contact { padding: 96px 0; background: var(--bg-0); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Form wrapper */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1.5px solid rgba(37,99,235,.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(13,21,38,.07), 0 1px 4px rgba(13,21,38,.04);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label {
  font-family: var(--font); font-size: .82rem; font-weight: 600;
  color: var(--text-2); letter-spacing: .01em;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: var(--font-body); font-size: .9rem; color: var(--text-1);
  background: var(--bg-0);
  border: 1.5px solid rgba(37,99,235,.14);
  border-radius: var(--radius);
  padding: 11px 15px;
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
  resize: none;
  -webkit-appearance: none;
}
.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235a6a85' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--text-4); }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--blue);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.btn-cf-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--blue); color: #fff;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 5px 20px rgba(37,99,235,.35);
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
}
.btn-cf-submit:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.42); }

.cf-note {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--text-4); margin-top: -6px;
}
.cf-note i { font-size: .75rem; }

/* Success state */
.cf-success {
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 14px; padding: 24px 0;
}
.cfs-icon { font-size: 3rem; color: var(--green-wa); line-height: 1; }
.cf-success h3 { font-family: var(--font); font-size: 1.4rem; font-weight: 800; color: var(--text-1); }
.cf-success p { font-size: .9rem; color: var(--text-3); line-height: 1.65; max-width: 340px; }
.btn-cfs-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: #fff;
  font-family: var(--font); font-weight: 700; font-size: .9rem;
  padding: 11px 22px; border-radius: 999px; margin-top: 6px;
  box-shadow: 0 4px 14px rgba(34,197,94,.35);
  transition: background var(--tr), transform var(--tr);
}
.btn-cfs-wa:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Info cards */
.contact-info { display: flex; flex-direction: column; gap: 16px; }

.ci-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg-card);
  border: 1.5px solid rgba(37,99,235,.1);
  border-radius: var(--radius-xl);
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(13,21,38,.05);
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.ci-card:hover { transform: translateX(4px); box-shadow: 0 6px 22px rgba(13,21,38,.08); border-color: rgba(37,99,235,.2); }

.ci-card-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); font-size: 1.25rem;
  border: 1px solid rgba(79,70,229,.12);
}
.ci-wa   .ci-card-icon { background: #dcfce7; color: #16a34a; border-color: rgba(22,163,74,.15); }
.ci-email .ci-card-icon { background: var(--blue-light); color: var(--blue); }
.ci-location .ci-card-icon { background: #eef2ff; color: var(--indigo); }

.ci-card-body { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.ci-card-body strong { font-family: var(--font); font-size: .9rem; font-weight: 700; color: var(--text-1); }
.ci-card-body > span { font-size: .82rem; color: var(--text-3); margin-bottom: 8px; }

.ci-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font); font-weight: 600; font-size: .85rem;
  padding: 8px 16px; border-radius: 999px; width: fit-content;
  transition: background var(--tr), color var(--tr), transform var(--tr);
}
.ci-btn-wa    { background: #f0fdf4; color: #16a34a; border: 1px solid rgba(22,163,74,.2); }
.ci-btn-wa:hover { background: var(--green-wa); color: #fff; transform: translateY(-1px); }
.ci-btn-email { background: var(--blue-light); color: var(--blue); border: 1px solid rgba(37,99,235,.15); }
.ci-btn-email:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }

.ci-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.ci-tags span { background: #eef2ff; color: var(--indigo); border: 1px solid rgba(79,70,229,.15); font-family: var(--font); font-weight: 600; font-size: .72rem; padding: 3px 10px; border-radius: 999px; }

.ci-hours {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 20px;
}
.ci-hours i { font-size: 1.1rem; color: var(--indigo); flex-shrink: 0; }
.ci-hours div { display: flex; flex-direction: column; gap: 2px; }
.ci-hours strong { font-family: var(--font); font-size: .85rem; font-weight: 700; color: var(--text-1); }
.ci-hours span { font-size: .8rem; color: var(--text-3); }

/* ============================================================
   CTA FINAL — bg-1
   ============================================================ */
.section-cta { padding: 96px 0; background: var(--bg-1); }
.cta-box {
  background: linear-gradient(140deg, #101828 0%, #1a2a5e 50%, #1e40af 100%);
  border-radius: var(--radius-xl); padding: 72px 48px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 32px 80px rgba(13,21,38,.25);
}
.cta-deco { position: absolute; inset: 0; pointer-events: none; }
.cd-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.07); }
.cd-1 { width: 500px; height: 500px; top: -250px; right: -150px; }
.cd-2 { width: 350px; height: 350px; bottom: -150px; left: -80px; }
.cta-content { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.cta-content h2 { font-family: var(--font); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.5px; margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,.72); line-height: 1.65; margin-bottom: 36px; }
.btn-cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-wa); color: #fff;
  font-family: var(--font); font-weight: 700; font-size: 1.1rem;
  padding: 17px 36px; border-radius: 999px;
  box-shadow: 0 8px 28px rgba(34,197,94,.5);
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
}
.btn-cta-big:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(34,197,94,.55); }
.cta-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 20px; font-size: .875rem; color: rgba(255,255,255,.5); }

/* ============================================================
   FOOTER — bg-card sobre bg-1
   ============================================================ */
.footer { background: var(--bg-1); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .nav-brand { margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; color: var(--text-3); line-height: 1.65; margin-bottom: 10px; }
.footer-region { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--blue); font-weight: 600; margin-bottom: 20px !important; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: var(--bg-card); border: 1px solid var(--border); color: var(--text-3); font-size: 1rem; box-shadow: var(--shadow-xs); transition: color var(--tr), border-color var(--tr), box-shadow var(--tr); }
.footer-social a:hover { color: var(--indigo); border-color: rgba(79,70,229,.25); box-shadow: var(--shadow-sm); }
.footer-col h4 { font-family: var(--font); font-size: .82rem; font-weight: 700; color: var(--text-1); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .875rem; color: var(--text-3); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--blue); }
.footer-wa-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--green-wa); color: #fff; font-family: var(--font); font-weight: 700; font-size: .9rem; padding: 11px 18px; border-radius: 999px; margin-bottom: 12px; box-shadow: 0 4px 14px rgba(34,197,94,.3); transition: background var(--tr); }
.footer-wa-btn:hover { background: var(--green-dark); }
.footer-email-link { display: flex; align-items: center; gap: 7px; font-size: .875rem; color: var(--text-3); margin-bottom: 10px; transition: color var(--tr); }
.footer-email-link:hover { color: var(--blue); }
.footer-hours { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--text-4); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; font-size: .82rem; color: var(--text-4); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
#whatsappFloat {
  position: fixed; right: 24px; bottom: 80px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-wa); color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(34,197,94,.5);
  transition: transform var(--tr), box-shadow var(--tr);
}
#whatsappFloat:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(34,197,94,.6); }
.wf-tip { position: absolute; right: 68px; background: var(--text-1); color: #fff; font-family: var(--font); font-size: .78rem; font-weight: 600; padding: 5px 12px; border-radius: 8px; white-space: nowrap; pointer-events: none; opacity: 0; transform: translateX(8px); transition: opacity var(--tr), transform var(--tr); }
#whatsappFloat:hover .wf-tip { opacity: 1; transform: translateX(0); }
.back-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border-md); color: var(--text-2);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-md);
  opacity: 1; transform: none; pointer-events: all;
  transition: box-shadow var(--tr), color var(--tr), border-color var(--tr);
}
.back-top.visible { opacity: 1; transform: none; pointer-events: all; }
.back-top:hover { box-shadow: var(--shadow-lg); color: var(--blue); border-color: rgba(37,99,235,.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .benefits-grid  { grid-template-columns: repeat(2, 1fr); }
  .business-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand   { grid-column: span 2; }
}
@media (max-width: 900px) {
  .hero-grid      { grid-template-columns: 1fr; }
  .hero-visual    { display: none; }
  .hero           { padding: 120px 0 60px; }
  .problems-grid  { grid-template-columns: 1fr; gap: 40px; }
  .solutions-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .portfolio-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .how-grid       { grid-template-columns: 1fr; gap: 16px; }
  .how-arrow      { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { gap: 0; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(245,247,251,.97);
    backdrop-filter: blur(20px);
    padding: 24px; gap: 8px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg); z-index: 999;
  }
  .nav-links.open .nav-link { padding: 12px 16px; font-size: 1rem; border-radius: var(--radius); }
  .benefits-grid  { grid-template-columns: 1fr; }
  .business-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-brand   { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .hero-title     { font-size: 1.9rem; }
  .hero-trust     { flex-direction: column; gap: 10px; }
  .section-title  { font-size: 1.65rem; }
  .contact-grid   { grid-template-columns: 1fr; }
  .cf-row         { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .cta-box        { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .hero-actions   { flex-direction: column; }
  .btn-primary-hero, .btn-ghost-hero { justify-content: center; }
}

/* ============================================================
   PORTFOLIO RESULTADO — cards antes/depois
   ============================================================ */
.pc-resultado {
  display: flex; flex-direction: column; gap: 8px;
  margin: 12px 0;
}
.pcr-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: .82rem; line-height: 1.5;
}
.pcr-antes {
  background: #fff5f5; border: 1px solid rgba(239,68,68,.15);
}
.pcr-depois {
  background: #f0fdf4; border: 1px solid rgba(34,197,94,.18);
}
.pcr-label {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font); font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .3px; margin-bottom: 2px;
}
.pcr-antes .pcr-label { color: #ef4444; }
.pcr-depois .pcr-label { color: #16a34a; }
.pcr-item span:last-child { color: var(--text-3); }

/* ============================================================
   SEÇÃO FUNDADOR / AUTORIDADE
   ============================================================ */
.section-founder {
  padding: 96px 0;
  background: var(--bg-0);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}
.founder-lead {
  font-size: 1.08rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 500;
}
.founder-body {
  font-size: .95rem;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 14px;
}
.founder-badges {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 28px;
}
.fb-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .875rem; color: var(--text-2);
}
.fb-item i {
  font-size: 1rem; color: var(--indigo); flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: #eef2ff; border-radius: var(--radius-sm);
}

/* Founder card */
.founder-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 20px;
}
.fc-avatar {
  display: flex; justify-content: center;
}
.fca-inner {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: #fff;
  box-shadow: 0 8px 24px rgba(79,70,229,.3);
}
.fc-info {
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.fc-info strong {
  font-family: var(--font); font-size: 1.1rem; font-weight: 800; color: var(--text-1);
}
.fc-info span {
  font-size: .85rem; color: var(--text-3);
}
.fc-quote {
  background: var(--bg-0);
  border-left: 3px solid var(--indigo);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
  position: relative;
}
.fc-quote i {
  font-size: 1.4rem; color: var(--indigo); opacity: .3;
  position: absolute; top: 8px; left: 12px;
}
.fc-quote p {
  font-size: .875rem; color: var(--text-3);
  line-height: 1.65; font-style: italic;
  padding-left: 8px;
}
.fc-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; border-top: 1px solid var(--border); padding-top: 20px;
}
.fcs-item {
  text-align: center;
  display: flex; flex-direction: column; gap: 3px;
}
.fcs-item strong {
  font-family: var(--font); font-size: 1.4rem; font-weight: 800;
  color: var(--indigo);
}
.fcs-item span {
  font-size: .72rem; color: var(--text-4); line-height: 1.3;
}

@media (max-width: 1000px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-card { max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   SEÇÃO PARCERIAS
   ============================================================ */
.section-partnership {
  padding: 96px 0;
  background: var(--bg-1);
}
.pship-tag { background: #fffbeb; color: #d97706; border: 1px solid rgba(217,119,6,.2); }
.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}
.pship-benefits {
  display: flex; flex-direction: column; gap: 20px;
  margin: 28px 0;
}
.pb-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.pb-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #fffbeb; border: 1px solid rgba(217,119,6,.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #d97706;
}
.pb-body {
  display: flex; flex-direction: column; gap: 4px;
}
.pb-body strong {
  font-family: var(--font); font-size: .95rem; font-weight: 700; color: var(--text-1);
}
.pb-body span {
  font-size: .875rem; color: var(--text-3); line-height: 1.6;
}
.pship-cta { margin-top: 8px; }

/* Partnership visual card */
.pv-card {
  background: var(--bg-card);
  border: 1.5px solid rgba(217,119,6,.15);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.pvc-icon {
  width: 52px; height: 52px;
  background: #fffbeb; border: 1px solid rgba(217,119,6,.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #d97706;
  margin-bottom: 16px;
}
.pv-card h4 {
  font-family: var(--font); font-size: 1rem; font-weight: 800;
  color: var(--text-1); margin-bottom: 16px;
}
.pvc-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.pvc-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--text-2);
}
.pvc-list li i { color: var(--green-wa); font-size: .95rem; flex-shrink: 0; }
.pvc-footer {
  display: flex; align-items: flex-start; gap: 8px;
  padding-top: 16px; border-top: 1px solid var(--border);
  font-size: .82rem; color: var(--text-3);
}
.pvc-footer i { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 1000px) {
  .partnership-grid { grid-template-columns: 1fr; }
  .pv-card { max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   SEO TEXT
   ============================================================ */
.seo-text {
  padding: 32px 0 40px;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.seo-text h2 {
  font-family: var(--font); font-size: .9rem; font-weight: 700;
  color: var(--text-3); margin-bottom: 8px;
}
.seo-text p {
  font-size: .85rem; color: var(--text-4); line-height: 1.7; max-width: 800px;
}

