/* =========================================================
   Condo Dealer, Design System
   ========================================================= */

:root {
  /* Brand */
  --purple-500: #7C3AED;
  --purple-600: #6D28D9;
  --purple-700: #5B21B6;
  --purple-800: #4C1D95;
  --purple-950: #2E1065;

  --yellow-400: #FBBF24;
  --yellow-500: #F59E0B;

  --blue-800: #1E3A8A;
  --blue-900: #1E293B;

  /* Neutrals */
  --ink-900: #0B1220;
  --ink-800: #111827;
  --ink-700: #1F2937;
  --ink-600: #334155;
  --ink-500: #475569;
  --ink-400: #64748B;
  --ink-300: #94A3B8;
  --ink-200: #CBD5E1;
  --ink-100: #E2E8F0;
  --ink-50:  #F1F5F9;

  --bg: #FFFFFF;
  --bg-soft: #FAFAFB;
  --bg-elev: #FFFFFF;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 10px rgba(15, 23, 42, 0.05), 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.08), 0 30px 60px rgba(15, 23, 42, 0.10);
  --shadow-brand: 0 20px 60px -20px rgba(124, 58, 237, 0.35);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 900px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;
}

/* =========================================================
   Base
   ========================================================= */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.5rem); line-height: 1.05; letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.15rem); line-height: 1.08; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.25; }
h4 { font-size: 1.05rem; line-height: 1.35; font-weight: 600; }

p { margin: 0; }

::selection { background: color-mix(in srgb, var(--purple-600) 22%, transparent); color: var(--ink-900); }

/* =========================================================
   Container / Layout helpers
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; }

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
.section--soft { background: var(--bg-soft); }
.section--dark {
  background: linear-gradient(180deg, #0A0A1A 0%, #0B0B22 100%);
  color: rgba(255,255,255,0.82);
}
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-700);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--purple-600), var(--yellow-500));
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--yellow-400); }
.section--dark .eyebrow::before { background: linear-gradient(90deg, var(--yellow-400), var(--purple-500)); }

.section-header { max-width: 780px; margin-bottom: 56px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-top: 16px; }
.section-header p {
  margin-top: 18px;
  color: var(--ink-500);
  font-size: 1.125rem;
  line-height: 1.55;
}
.section--dark .section-header p { color: rgba(255,255,255,0.72); }

.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .grid.cols-4, .grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4, .grid.cols-5 { grid-template-columns: 1fr; }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.3s ease, color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  box-shadow: 0 24px 70px -18px rgba(124, 58, 237, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-800);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--ink-50); border-color: var(--ink-200); }

.btn--light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn--light:hover { background: rgba(255,255,255,0.14); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--purple-700);
  font-size: 14px;
  transition: gap 0.25s var(--ease);
}
.link-arrow:hover { gap: 12px; }
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(2px); }

/* =========================================================
   Nav
   ========================================================= */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1180px;
  z-index: 100;
  border-radius: 999px;
  padding: 10px 14px 10px 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.3s ease, background 0.3s ease, transform 0.4s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  font-size: 16px;
}
.nav-brand svg,
.nav-brand picture,
.nav-brand picture img {
  display: block;
  width: 34px;
  height: auto;
}
.nav-brand span em { font-style: normal; color: var(--purple-700); font-weight: 700; }

@media (max-width: 900px) {
  .nav-brand svg,
  .nav-brand picture,
  .nav-brand picture img {
    width: 40px;
  }
  .nav-brand span {
    font-size: 17px;
  }
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-600);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--ink-900); background: var(--ink-50); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 18px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--ink-800);
  position: relative;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--ink-800); border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { padding: 8px 8px 8px 18px; }
  .nav-brand { white-space: nowrap; }
}

/* Mobile menu overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  padding: 18px 4px;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
  border-bottom: 1px solid var(--ink-100);
  letter-spacing: -0.015em;
}
.nav-mobile a:last-of-type { border-bottom: 0; }
.nav-mobile .btn { margin-top: 24px; justify-content: center; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero--compact { padding: 160px 0 80px; }
.hero-inner--single { grid-template-columns: minmax(0, 900px); }

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
}
.hero::before {
  width: 520px; height: 520px;
  top: -160px; left: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.55), transparent 60%);
}
.hero::after {
  width: 560px; height: 560px;
  top: 40px; right: -180px;
  background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.35), transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 140px 0 80px; }
}

.hero h1 { margin-top: 22px; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--purple-600) 0%, var(--purple-800) 40%, var(--blue-800) 65%, var(--yellow-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.05em;
}
.hero p.lead {
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-500);
  max-width: 560px;
}

.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 24px;
  border-right: 1px solid var(--ink-100);
}
.hero-meta-item:last-child { border-right: 0; padding-right: 0; }
.hero-meta-item strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.hero-meta-item span {
  font-size: 12px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
}
.hero-visual .orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(15,23,42,0.08);
  animation: orbitSpin 40s linear infinite;
}
.hero-visual .orbit.o2 {
  inset: 12%;
  border-color: rgba(124,58,237,0.14);
  animation-duration: 30s;
  animation-direction: reverse;
}
.hero-visual .orbit.o3 { inset: 26%; border-color: rgba(245,158,11,0.18); animation-duration: 22s; }

@keyframes orbitSpin { to { transform: rotate(360deg); } }

.hero-visual .core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44%;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(76, 29, 149, 0.35));
  animation: float 6s ease-in-out infinite;
}
.hero-visual .core img { width: 100%; height: auto; display: block; }
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 8px)); }
}

.hero-visual .chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
  display: flex; align-items: center; gap: 8px;
  animation: floatChip 5s ease-in-out infinite;
}
.hero-visual .chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-600), var(--yellow-500));
}
.hero-visual .chip.c1 { top: 4%; left: -8%; animation-delay: 0s; }
.hero-visual .chip.c2 { top: 22%; right: -6%; animation-delay: 0.6s; }
.hero-visual .chip.c3 { bottom: 30%; left: -10%; animation-delay: 1.2s; }
.hero-visual .chip.c4 { bottom: 8%; right: -4%; animation-delay: 1.8s; }

@keyframes floatChip {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

@media (max-width: 980px) {
  .hero-visual { display: none; }
}

/* Marquee logos strip */
.trust-strip {
  padding: 44px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 100px;
}
.trust-strip p {
  text-align: center;
  color: var(--ink-400);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.trust-logos {
  display: flex;
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-logos span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-300);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.trust-logos span:hover { color: var(--ink-600); }

/* Services variant: shorter, more subtle, no hover treatment */
.trust-services span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-500);
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trust-services span + span::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink-200);
  margin-right: 10px;
}

/* Portfolio strip: compact, subtle secondary reference */
.portfolio-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) {
  .portfolio-strip { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
}
.portfolio-lead h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-top: 14px;
}
.portfolio-lead p {
  margin-top: 12px;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.55;
}
.portfolio-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}
@media (max-width: 560px) { .portfolio-list { grid-template-columns: 1fr; } }
.portfolio-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  min-height: 56px;
}
.portfolio-list li:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 560px) {
  .portfolio-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .portfolio-list li:last-child { border-bottom: 0; }
}
.portfolio-list strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-900);
  font-size: 15px;
  letter-spacing: -0.01em;
  flex: 0 0 auto;
  min-width: 110px;
}
.portfolio-list .portfolio-logo {
  flex: 0 0 auto;
  min-width: 110px;
  display: flex;
  align-items: center;
}
.portfolio-list .portfolio-logo img {
  display: block;
  height: 26px;
  width: auto;
}
.portfolio-list span {
  color: var(--ink-500);
  font-size: 13px;
}

/* =========================================================
   Manifesto (What Condo Dealer is / isn't)
   ========================================================= */

.manifesto {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .manifesto { grid-template-columns: 1fr; gap: 40px; } }

.manifesto .content h2 { margin-top: 16px; }
.manifesto .content > p {
  margin-top: 24px;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-600);
}

.not-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.not-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-500);
  font-size: 15px;
}
.not-list li:last-child { border-bottom: 0; }
.not-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(15,23,42,0.04);
  position: relative;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 1.5px;
  color: var(--ink-400);
}

.is-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #ffffff, #F5F3FF);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.is-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
}
.is-card h3 { font-size: 1.35rem; margin-bottom: 20px; }
.is-card p { color: var(--ink-600); font-size: 1.05rem; line-height: 1.6; }
.is-card p + p { margin-top: 16px; }
.is-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-700);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124,58,237,0.08);
  margin-bottom: 20px;
}

/* =========================================================
   Pillars (Modelo de Negócio)
   ========================================================= */

.pillar-card {
  padding: 36px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
}
.pillar-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--purple-600), var(--yellow-500));
  transition: width 0.5s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink-100);
}
.pillar-card:hover::after { width: 100%; }

.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
  color: var(--purple-700);
  margin-bottom: 24px;
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pillar-card p { color: var(--ink-500); font-size: 15px; line-height: 1.55; }
.pillar-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink-100);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

/* =========================================================
   Audiences (4 públicos)
   ========================================================= */

.audience-tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .audience-tabs { grid-template-columns: 1fr; gap: 24px; } }

.audience-list {
  display: flex; flex-direction: column; gap: 4px;
  list-style: none; padding: 0; margin: 0;
}
.audience-list button {
  width: 100%;
  text-align: left;
  padding: 20px 20px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--ink-500);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.audience-list button:hover { background: var(--ink-50); color: var(--ink-800); }
.audience-list button.active {
  background: #fff;
  color: var(--ink-900);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.audience-list button .arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.audience-list button.active .arrow { opacity: 1; transform: translateX(0); color: var(--purple-600); }

.audience-panel {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-lg);
  padding: 48px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 50%),
    radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.10), transparent 55%),
    linear-gradient(160deg, #FCFCFD, #F5F3FF);
  border: 1px solid var(--border);
  overflow: hidden;
}
.audience-content { position: absolute; inset: 48px; opacity: 0; transform: translateY(10px); transition: opacity 0.35s ease, transform 0.35s ease; pointer-events: none; }
.audience-content.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; inset: auto; }
.audience-content h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 16px; }
.audience-content p { color: var(--ink-600); font-size: 1.05rem; line-height: 1.6; }
.audience-benefits {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  list-style: none; padding: 0;
}
@media (max-width: 640px) { .audience-benefits { grid-template-columns: 1fr; } }
.audience-benefits li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-700);
  font-size: 15px;
}
.audience-benefits li svg {
  width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px;
  color: var(--purple-600);
}

/* =========================================================
   Ecosystem cards
   ========================================================= */

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.eco-grid > .eco-card:nth-child(4),
.eco-grid > .eco-card:nth-child(5) { grid-column: span 1; }
@media (min-width: 900px) {
  .eco-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .eco-grid > .eco-card { grid-column: span 2; }
  .eco-grid > .eco-card:nth-child(4) { grid-column: 2 / span 2; }
  .eco-grid > .eco-card:nth-child(5) { grid-column: 4 / span 2; }
}
@media (max-width: 900px) { .eco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .eco-grid { grid-template-columns: 1fr; } }

.eco-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.eco-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.eco-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gc1, var(--purple-600)), var(--gc2, var(--yellow-500)));
}

.eco-logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.9rem;
  color: var(--ink-900);
  margin-bottom: 4px;
  line-height: 1;
}
.eco-logo .dot { color: var(--gc1, var(--purple-600)); }
.eco-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 20px;
  display: block;
}
.eco-card p { color: var(--ink-500); font-size: 15px; line-height: 1.6; }

.eco-card[data-brand="llz"]        { --gc1: #7C3AED; --gc2: #4C1D95; }
.eco-card[data-brand="lavandery"]  { --gc1: #06B6D4; --gc2: #0EA5E9; }
.eco-card[data-brand="ai"]         { --gc1: #6366F1; --gc2: #A855F7; }
.eco-card[data-brand="academy"]    { --gc1: #F59E0B; --gc2: #EA580C; }
.eco-card[data-brand="consvicta"]  { --gc1: #10B981; --gc2: #059669; }

/* =========================================================
   Purpose / Mission / Vision
   ========================================================= */

.pmv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pmv { grid-template-columns: 1fr; } }

.pmv-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.pmv-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.pmv-card .label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  background: linear-gradient(90deg, var(--yellow-400), var(--purple-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block; margin-bottom: 18px;
}
.pmv-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 14px; }
.pmv-card p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.6; }

/* =========================================================
   Brand meaning (V symbol)
   ========================================================= */

.brand-meaning {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .brand-meaning { grid-template-columns: 1fr; gap: 48px; } }

.brand-meaning .visual {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #050510;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.brand-meaning .visual picture,
.brand-meaning .visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* Dark theme for the brand-meaning section (glow-friendly backdrop) */
.section--marca {
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.14), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.10), transparent 55%),
    linear-gradient(180deg, #0A0A15 0%, #0D0D1F 100%);
  color: rgba(255, 255, 255, 0.72);
}
.section--marca h2 { color: #fff; }
.section--marca .eyebrow { color: var(--yellow-400); }
.section--marca .eyebrow::before { background: linear-gradient(90deg, var(--yellow-400), var(--purple-500)); }
.section--marca .marca-lead {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.55;
}

.section--marca .v-list li {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}
.section--marca .v-list li:hover { background: rgba(255, 255, 255, 0.07); }

.section--marca .connection-panel {
  background:
    linear-gradient(120deg, rgba(124, 58, 237, 0.18), rgba(245, 158, 11, 0.14));
  border-color: rgba(255, 255, 255, 0.10);
}
.section--marca .connection-panel .side { color: #fff; }
.section--marca .connection-panel .side span { color: rgba(255, 255, 255, 0.55); }
.section--marca .connection-panel .arrow { color: var(--yellow-400); }

.v-list {
  list-style: none;
  padding: 0; margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 560px) { .v-list { grid-template-columns: 1fr; } }
.v-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--ink-800);
  font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.v-list li:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.v-list li .letter {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-600), var(--yellow-500));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
}

.connection-panel {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #F5F3FF, #FEF3C7);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}
@media (max-width: 640px) { .connection-panel { grid-template-columns: 1fr; gap: 12px; } }
.connection-panel .side {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.015em;
}
.connection-panel .side span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: var(--font-sans);
}
.connection-panel .arrow {
  color: var(--purple-600);
  font-size: 22px;
}

/* =========================================================
   Quote block
   ========================================================= */

.quote {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.25;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  font-weight: 600;
}
.quote p .grad {
  background: linear-gradient(90deg, var(--purple-600), var(--yellow-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =========================================================
   Contact form
   ========================================================= */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h2 { margin-top: 16px; }
.contact-info > p { margin-top: 20px; color: var(--ink-500); font-size: 1.1rem; line-height: 1.55; }

.contact-facts { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-fact {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-fact .icon {
  width: 44px; height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(135deg, #F5F3FF, #FEF3C7);
  display: grid; place-items: center;
  color: var(--purple-700);
}
.contact-fact .icon svg { width: 20px; height: 20px; }
.contact-fact strong { display: block; color: var(--ink-900); font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.contact-fact span { color: var(--ink-500); font-size: 14px; }

.contact-form {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink-900);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--purple-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124,58,237,0.10);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2364748B' stroke-width='1.5'><path d='M3 5l3 3 3-3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
}

.form-note {
  font-size: 12px;
  color: var(--ink-400);
  line-height: 1.5;
  margin-top: 4px;
}
.form-status {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-status.ok { display: block; background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }
.form-status.err { display: block; background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }

/* =========================================================
   Footer
   ========================================================= */

footer {
  padding: 80px 0 40px;
  background: #060612;
  color: rgba(255,255,255,0.65);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand {
  display: inline-block;
}
.footer-brand picture,
.footer-brand img {
  display: block;
  width: 180px;
  height: auto;
}

.footer-tagline {
  margin-top: 16px;
  max-width: 320px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.6;
}
.footer-col h4 {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-sans);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}
.footer-legal {
  display: flex; flex-direction: column; gap: 6px;
}
.footer-credit a {
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-credit a:hover { color: #fff; }
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-bottom .socials a:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.25); }
.footer-bottom .socials svg { width: 16px; height: 16px; }

/* =========================================================
   Reveal on scroll
   ========================================================= */

/* Only hide reveals when JS is available; without JS, everything is visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-visual .core, .hero-visual .chip, .hero-visual .orbit { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   CTA block
   ========================================================= */

.cta-block {
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px);
  background:
    radial-gradient(circle at 20% 20%, rgba(124,58,237,0.35), transparent 55%),
    radial-gradient(circle at 85% 40%, rgba(245,158,11,0.30), transparent 60%),
    linear-gradient(135deg, #0F0B24, #1E1B4B);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35));
  pointer-events: none;
}
.cta-block-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .cta-block-inner { grid-template-columns: 1fr; text-align: left; } }
.cta-block h2 { color: #fff; letter-spacing: -0.03em; }
.cta-block p { color: rgba(255,255,255,0.72); margin-top: 20px; font-size: 1.1rem; line-height: 1.55; max-width: 560px; }
.cta-block .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 900px) { .cta-block .actions { justify-content: flex-start; } }

/* =========================================================
   Parceiros page: selectivity, process
   ========================================================= */

.selectivity {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .selectivity { grid-template-columns: 1fr; gap: 40px; } }

.selectivity-copy h2 { margin-top: 16px; }
.selectivity-copy p {
  margin-top: 20px;
  color: var(--ink-500);
  font-size: 1.1rem;
  line-height: 1.6;
}

.selectivity-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #0F0B24 0%, #1E1B4B 100%);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.selectivity-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 70%);
}
.selectivity-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.selectivity-stat strong {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.selectivity-stat span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-400);
}
.selectivity-card > p {
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* Process steps */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-100);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  box-shadow: var(--shadow-brand);
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================
   Network stats block
   ========================================================= */

.network-block {
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px);
  background:
    radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.28), transparent 55%),
    radial-gradient(circle at 88% 80%, rgba(245, 158, 11, 0.22), transparent 60%),
    linear-gradient(135deg, #0F0B24 0%, #1E1B4B 100%);
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .network-block { grid-template-columns: 1fr; gap: 40px; } }

.network-header h2 {
  color: #fff;
  margin-top: 16px;
  letter-spacing: -0.03em;
}
.network-header .eyebrow { color: var(--yellow-400); }
.network-header .eyebrow::before {
  background: linear-gradient(90deg, var(--yellow-400), var(--purple-500));
}
.network-header p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 460px;
}

.network-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
@media (max-width: 560px) { .network-stats { grid-template-columns: 1fr; } }

.network-stat {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: transform 0.35s var(--ease), background 0.3s ease;
}
.network-stat:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.07); }
.network-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(120deg, #ffffff 0%, #C4B5FD 60%, #FBBF24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.network-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================
   Modern visual layer: scroll progress, cursor orb,
   ambient blobs, grid pattern, timeline connector,
   glass cards, animated icons
   ========================================================= */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  right: 0;
  height: 3px;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--purple-600) 0%, var(--purple-500) 40%, var(--yellow-500) 100%);
  z-index: 200;
  pointer-events: none;
  will-change: transform;
}

/* Cursor-following soft orb (desktop only, decorative) */
.cursor-orb {
  position: fixed;
  top: 0; left: 0;
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(124, 58, 237, 0.14), rgba(245, 158, 11, 0.06) 45%, transparent 70%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.section--dark ~ * .cursor-orb,
.section--dark .cursor-orb { mix-blend-mode: screen; }
@media (prefers-reduced-motion: reduce) { .cursor-orb { display: none; } }

/* Ambient grid pattern behind soft sections */
.section--soft {
  position: relative;
  overflow: hidden;
}
.section--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.section--soft > * { position: relative; z-index: 1; }

/* Floating ambient blobs for dark sections */
.section--dark, .section--marca {
  position: relative;
  overflow: hidden;
}
.section--dark::before,
.section--marca::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28), transparent 65%);
  filter: blur(60px);
  top: -160px; left: -160px;
  animation: blobFloat 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.section--dark::after,
.section--marca::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.20), transparent 65%);
  filter: blur(60px);
  bottom: -140px; right: -140px;
  animation: blobFloat 26s ease-in-out infinite alternate-reverse;
  pointer-events: none;
  z-index: 0;
}
.section--dark > *, .section--marca > * { position: relative; z-index: 1; }

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, 20px) scale(1.05); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}
@media (prefers-reduced-motion: reduce) {
  .section--dark::before, .section--dark::after,
  .section--marca::before, .section--marca::after { animation: none; }
}

/* Animated shimmer for hero eyebrow */
.hero .eyebrow {
  position: relative;
}
.hero .eyebrow::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-left: 4px;
  background: var(--yellow-500);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  animation: pulseDot 2.4s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Hero mouse parallax for orbits + core */
.hero-visual .core {
  transition: transform 0.4s var(--ease);
}
@media (pointer: fine) {
  .hero-visual { --px: 0; --py: 0; }
  .hero-visual .orbit  { transition: transform 0.6s var(--ease); }
  .hero-visual .orbit  { transform: translate(calc(var(--px, 0) * -10px), calc(var(--py, 0) * -10px)); }
  .hero-visual .orbit.o2 { transform: translate(calc(var(--px, 0) * -18px), calc(var(--py, 0) * -18px)) rotate(var(--r, 0deg)); }
  .hero-visual .orbit.o3 { transform: translate(calc(var(--px, 0) * -26px), calc(var(--py, 0) * -26px)); }
}

/* Enhanced pillar-card: subtle gradient border on hover + icon pulse */
.pillar-card {
  position: relative;
}
.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, rgba(124, 58, 237, 0.4) 45%, rgba(245, 158, 11, 0.4) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.pillar-card:hover::before { opacity: 1; }
.pillar-card:hover .pillar-icon {
  transform: rotate(-6deg) scale(1.05);
  background: linear-gradient(135deg, #EDE9FE, #FEF3C7);
}
.pillar-icon { transition: transform 0.4s var(--ease), background 0.3s ease; }

/* Eco-card sheen on hover */
.eco-card {
  position: relative;
  overflow: hidden;
}
.eco-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.9s var(--ease);
  pointer-events: none;
}
.eco-card:hover::after { transform: translateX(100%); }

/* Timeline connector for parceiros process steps */
.process-steps {
  position: relative;
}
@media (min-width: 901px) {
  .process-steps::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 6%; right: 6%;
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      rgba(124, 58, 237, 0.35) 0 12px,
      transparent 12px 24px
    );
    z-index: 0;
    animation: dashSlide 12s linear infinite;
  }
}
@keyframes dashSlide {
  from { background-position: 0 0; }
  to   { background-position: 240px 0; }
}
.process-step { z-index: 1; }

/* Network-stat number: subtle gradient shine loop */
.network-stat strong {
  background-size: 200% auto;
  animation: shineText 6s ease-in-out infinite;
}
@keyframes shineText {
  0%, 100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

/* Extra reveal variants */
.js .reveal.reveal-left  { transform: translateX(-24px); }
.js .reveal.reveal-right { transform: translateX(24px); }
.js .reveal.reveal-zoom  { transform: scale(0.94); }
.js .reveal.reveal-left.in,
.js .reveal.reveal-right.in,
.js .reveal.reveal-zoom.in { transform: none; }

/* Smooth gradient shift on hero grad text */
.hero h1 .grad {
  background-size: 200% auto;
  animation: gradShift 10s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

/* Section-header eyebrow micro-interaction */
.section-header .eyebrow,
.audience-panel .eyebrow,
.selectivity-copy .eyebrow {
  transition: transform 0.3s ease;
}
.section-header:hover .eyebrow { transform: translateX(4px); }

/* Softer button glow on primary CTA */
.btn--primary {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--purple-500), var(--yellow-500), var(--purple-500));
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  border-radius: inherit;
  filter: blur(10px);
  transition: opacity 0.35s ease;
  animation: gradShift 6s linear infinite;
}
.btn--primary:hover::before { opacity: 0.6; }

/* Hero-meta stat number: gradient + animated shimmer for the key figure */
.hero-meta-item strong {
  transition: transform 0.3s var(--ease);
}
.hero-meta-item:hover strong { transform: translateY(-2px); }

/* Portfolio-strip: subtle logo grayscale-to-color on hover */
.portfolio-list .portfolio-logo img {
  filter: saturate(0.85);
  transition: filter 0.35s ease, transform 0.35s var(--ease);
}
.portfolio-list li:hover .portfolio-logo img {
  filter: saturate(1.1);
  transform: scale(1.04);
}

/* Selectivity card: floating shine */
.selectivity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--sx, 30%) var(--sy, 30%), rgba(124, 58, 237, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.selectivity-card:hover::after { opacity: 1; }

/* Contact form inputs: gradient focus underline */
.field input, .field select, .field textarea {
  position: relative;
}
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: 0 0 0 4px rgba(124,58,237,0.10), 0 8px 24px -8px rgba(124, 58, 237, 0.35);
}

/* Body: subtle grain overlay for warmth (very subtle) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.15  0 0 0 0 0.2  0 0 0 0.6 0'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='0.9'/></svg>");
  background-size: 140px 140px;
}

/* =========================================================
   Flow diagram infographic (Empresa -> Condo Dealer -> Condomínio)
   ========================================================= */

.flow-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 48px clamp(24px, 4vw, 56px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.10), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.10), transparent 55%),
    linear-gradient(160deg, #ffffff, #FAFAFB);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

@media (max-width: 900px) {
  .flow-diagram {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 16px;
  }
}

.flow-node {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 24px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
  position: relative;
}
.flow-node:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.flow-node .flow-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.flow-node .flow-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.flow-node .flow-desc {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 4px;
}
.flow-node--brand .flow-title {
  background: linear-gradient(120deg, var(--purple-600), var(--purple-800));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flow-node--target .flow-title {
  background: linear-gradient(120deg, var(--yellow-500), #EA580C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flow-connector {
  position: relative;
  height: 20px;
  min-width: 80px;
}
.flow-connector svg {
  width: 100%;
  height: 100%;
  display: block;
}
.flow-particle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--purple-600);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
  transform: translate(-50%, -50%);
  animation: particleTravel 3s linear infinite;
}
.flow-particle--right {
  background: var(--yellow-500);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
  animation-delay: 1.5s;
}
@keyframes particleTravel {
  0%   { left: 0%;   opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  10%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  90%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { left: 100%; opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
}
@media (max-width: 900px) {
  .flow-connector {
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .flow-connector svg { display: none; }
  .flow-connector::after {
    content: "";
    width: 2px;
    height: 40px;
    background: repeating-linear-gradient(to bottom, var(--ink-200) 0 6px, transparent 6px 12px);
  }
  .flow-particle { display: none; }
}

.flow-hub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
}
.flow-hub-ring,
.flow-hub-ring--2 {
  position: absolute;
  top: 24px;
  border-radius: 50%;
  border: 1px dashed rgba(124, 58, 237, 0.25);
  animation: orbitSpin 30s linear infinite;
  pointer-events: none;
}
.flow-hub-ring   { width: 140px; height: 140px; }
.flow-hub-ring--2 { width: 180px; height: 180px; top: 4px; border-color: rgba(245, 158, 11, 0.22); animation-duration: 40s; animation-direction: reverse; }
@media (prefers-reduced-motion: reduce) {
  .flow-hub-ring, .flow-hub-ring--2 { animation: none; }
  .flow-particle { animation: none; opacity: 0; }
}
@media (max-width: 900px) {
  .flow-hub-ring, .flow-hub-ring--2 { display: none; }
}

.flow-hub-mark {
  display: block;
  width: 100px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(76, 29, 149, 0.3));
  animation: hubBob 5s ease-in-out infinite;
}
.flow-hub-mark img { width: 100%; height: auto; display: block; }
@keyframes hubBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.flow-hub-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink-800);
  position: relative;
  z-index: 1;
  margin-top: 8px;
}
