/* =====================================================
   Maven Estúdio — Vanilla CSS (lavender accent redesign)
   Inspired by crm.natulife.com.br · #a78bfa
   ===================================================== */

:root {
  /* Deep purple-tinted black */
  --background: 260 30% 5%;
  --bg-elev:    260 24% 7%;
  --foreground: 0 0% 100%;

  --card:       260 22% 8.5%;
  --card-soft:  260 18% 11%;

  --muted:        260 14% 14%;
  --muted-foreground: 260 6% 65%;

  --secondary:  260 18% 12%;
  --border:     260 14% 18%;

  /* Lavender / violet accent (#a78bfa = hsl(258 90% 76%)) */
  --accent:        258 90% 76%;
  --accent-strong: 258 80% 70%;
  --accent-soft:   258 90% 76% / 0.18;
  --accent-glow:   258 90% 76% / 0.45;

  --radius: 0.75rem;
  --container-max: 1400px;

  --sans:  'Parkinsans', system-ui, -apple-system, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
}

/* ------- Reset ------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; border: 0 solid hsl(var(--border)); }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  position: relative;
  min-height: 100dvh;

  /* Subtle warm lavender wash that breaks the flat-black look */
  background-image:
    radial-gradient(120% 80% at 50% 0%, hsl(var(--accent) / 0.10), transparent 55%),
    radial-gradient(80% 60% at 100% 100%, hsl(var(--accent) / 0.06), transparent 60%),
    radial-gradient(60% 50% at 0% 60%, hsl(var(--accent) / 0.04), transparent 55%);
  background-attachment: fixed;
}
img, svg, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: transparent; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
p { line-height: 1.7; }
strong { font-weight: 700; color: hsl(var(--foreground)); }

/* The signature: serif italic in lavender — used for headline emphasis */
.accent-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: hsl(var(--accent));
  letter-spacing: -0.005em;
  /* Slightly larger optical size — serif italics tend to look smaller */
  font-size: 1.06em;
  line-height: 1;
}

/* ------- Scrollbar ------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: hsl(var(--background)); }
::-webkit-scrollbar-thumb { background: hsl(var(--border)); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: hsl(var(--accent) / 0.4); }
::selection { background: hsl(var(--accent) / 0.3); color: hsl(var(--foreground)); }

/* ------- Container ------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 3rem 0; position: relative; overflow: hidden; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

/* ------- Icons ------- */
.ic-16 { width: 1rem; height: 1rem; flex-shrink: 0; }
.ic-20 { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.ic-24 { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, filter .3s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
  min-height: 44px;
}
.btn-pill { border-radius: 9999px; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: hsl(var(--accent));
  color: hsl(260 30% 7%);
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -8px hsl(var(--accent-glow));
}
.btn-glow {
  box-shadow:
    0 0 0 1px hsl(var(--accent) / 0.4) inset,
    0 8px 24px -6px hsl(var(--accent-glow)),
    0 0 60px -20px hsl(var(--accent-glow));
}
.btn-glow:hover {
  box-shadow:
    0 0 0 1px hsl(var(--accent) / 0.55) inset,
    0 14px 36px -8px hsl(var(--accent-glow)),
    0 0 80px -16px hsl(var(--accent-glow));
}
.btn-outline {
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  background: transparent;
}
.btn-outline:hover {
  border-color: hsl(var(--accent));
  background: hsl(var(--accent) / 0.06);
  color: hsl(var(--accent));
}

.btn-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  border-bottom: 1px solid hsl(var(--border));
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease;
}
.btn-ghost-link:hover { color: hsl(var(--accent)); border-color: hsl(var(--accent) / 0.6); }
.btn-ghost-link span { transition: transform .25s ease; }
.btn-ghost-link:hover span { transform: translateX(3px); }

/* ------- Eyebrow / shared heads ------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .section-head { margin-bottom: 4.5rem; } }
.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
}
.section-title.align-left { text-align: left; }
.section-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  margin-top: 1.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.section-cta { margin-top: 3rem; display: flex; justify-content: center; }
@media (min-width: 768px) { .section-cta { margin-top: 4rem; } }

/* ------- Badge ------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.05rem;
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: hsl(var(--foreground) / 0.9);
  background: hsl(var(--accent) / 0.04);
  margin-bottom: 2rem;
}
.badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: hsl(var(--accent));
  box-shadow: 0 0 0 0 hsl(var(--accent) / 0.5);
  animation: badge-pulse 2.4s ease-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 hsl(var(--accent) / 0.5); }
  50%      { box-shadow: 0 0 0 7px hsl(var(--accent) / 0); }
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem 0;
  transition: padding .3s ease;
}
@media (min-width: 768px) { .site-header { padding: 1.5rem 0; } }
.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 60rem;
  padding: 0 0.5rem 0 1rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: hsl(var(--background) / 0.55);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid hsl(var(--foreground) / 0.08);
  transition: all .3s ease;
}
@media (min-width: 768px) {
  .header-bar { padding: 0 0.5rem 0 1.25rem; height: 4rem; }
}
.site-header.is-scrolled .header-bar {
  background: hsl(var(--background) / 0.78);
  border-color: hsl(var(--foreground) / 0.14);
  box-shadow: 0 12px 30px -12px hsl(0 0% 0% / 0.5),
              0 0 0 1px hsl(var(--accent) / 0.05);
}
.header-logo img {
  height: 1.5rem;
  width: auto;
}
@media (min-width: 768px) { .header-logo img { height: 2rem; } }

.header-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  flex: 1;
}
@media (min-width: 880px) { .header-nav { display: flex; } }
@media (min-width: 1024px) { .header-nav { gap: 1.75rem; } }
.header-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.75);
  transition: color .2s ease;
}
.header-nav a:hover { color: hsl(var(--accent)); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.header-actions .btn { display: none; }
@media (min-width: 880px) { .header-actions .btn { display: inline-flex; } }

.header-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  border-radius: 9999px;
  transition: background .2s ease;
}
@media (min-width: 880px) { .header-toggle { display: none; } }
.header-toggle:hover { background: hsl(var(--foreground) / 0.08); }
.header-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: hsl(var(--foreground));
  transition: transform .25s ease, opacity .25s ease;
}
.site-header.is-open .header-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.is-open .header-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .header-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: hsl(var(--background) / 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: none;
}
.site-header.is-open .mobile-menu { display: block; }
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 8rem 2rem 2rem;
  height: 100%;
}
.mobile-menu-nav a {
  font-size: 1.75rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}
.mobile-menu-nav .btn { margin-top: 1rem; max-width: 18rem; width: 100%; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, hsl(var(--accent) / 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at center, hsl(260 28% 8%) 0%, hsl(var(--background)) 70%);
  padding: 8rem 0 4rem;
}
@media (min-width: 768px) { .hero { padding: 10rem 0 6rem; } }

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.hero-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-glow-1 {
  top: 10%;
  left: -10%;
  width: 28rem;
  height: 28rem;
  background: hsl(var(--accent) / 0.25);
}
.hero-glow-2 {
  bottom: 0;
  right: -10%;
  width: 32rem;
  height: 32rem;
  background: hsl(280 60% 50% / 0.18);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, hsl(var(--background) / 0.5) 100%),
    linear-gradient(180deg, transparent 70%, hsl(var(--background)) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 56rem;
  margin: 0 auto 1.5rem;
  text-wrap: balance;
}
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 768px) { .hero-lead { font-size: 1.18rem; } }
.hero-lead strong { color: hsl(var(--foreground)); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.25rem;
}

.hero-checks {
  margin-top: 2rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
}
.hero-checks li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-checks .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 9999px;
  background: hsl(var(--accent) / 0.15);
  color: hsl(var(--accent));
  font-size: 0.65rem;
  font-weight: 700;
}
.hero-checks .sep { color: hsl(var(--border)); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 1.5px solid hsl(var(--foreground) / 0.25);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0.5rem;
  z-index: 5;
}
.hero-scroll span {
  display: block;
  width: 3px;
  height: 7px;
  background: hsl(var(--accent));
  border-radius: 9999px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* =====================================================
   ABOUT
   ===================================================== */
.section-about { background: transparent; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-text p {
  color: hsl(var(--muted-foreground));
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.about-text .section-title { margin-bottom: 2rem; text-align: left; }
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .about-features { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .feature-card { padding: 1.75rem; } }
.feature-card:hover {
  transform: translateY(-3px);
  border-color: hsl(var(--accent) / 0.45);
  box-shadow: 0 12px 30px -12px hsl(var(--accent-glow));
}
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--accent) / 0.12);
  border: 1px solid hsl(var(--accent) / 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: hsl(var(--accent));
  transition: transform .4s ease;
}
.feature-card:hover .feature-icon { transform: rotate(8deg); }
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.92rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
}

/* =====================================================
   SERVICES
   ===================================================== */
.section-services { background: hsl(var(--bg-elev)); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.service-card {
  padding: 2rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.7);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(var(--accent) / 0.08), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.service-card:hover {
  border-color: hsl(var(--accent) / 0.4);
  box-shadow: 0 20px 40px -20px hsl(0 0% 0% / 0.7),
              0 0 50px -20px hsl(var(--accent-glow));
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  background: hsl(var(--accent) / 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: hsl(var(--accent));
  transition: transform .3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 {
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.service-card > p {
  position: relative;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.service-features {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-features li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.7);
}
.service-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: hsl(var(--accent) / 0.6);
  margin-right: 0.5rem;
}

/* =====================================================
   PORTFOLIO
   ===================================================== */
.section-portfolio { background: transparent; }
.portfolio-group { margin-bottom: 5rem; }
.portfolio-group:last-of-type { margin-bottom: 0; }
@media (min-width: 768px) { .portfolio-group { margin-bottom: 7rem; } }

.portfolio-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.portfolio-rule h3 {
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .portfolio-rule h3 { font-size: 1.5rem; } }
.rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, hsl(var(--accent) / 0.5), transparent);
}
.rule-line:last-child {
  background: linear-gradient(-90deg, hsl(var(--accent) / 0.5), transparent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.6);
  border-radius: 1rem;
  cursor: pointer;
  transition: all .5s ease;
  height: 100%;
}
.portfolio-card:hover {
  border-color: hsl(var(--accent) / 0.5);
  box-shadow: 0 25px 50px -15px hsl(0 0% 0% / 0.7),
              0 0 50px -20px hsl(var(--accent-glow));
}
.portfolio-cover {
  position: relative;
  overflow: hidden;
  background: hsl(var(--muted));
}
.portfolio-cover.branding-cover { aspect-ratio: 16 / 10; }
.portfolio-cover.web-cover { aspect-ratio: 4 / 3; }
.portfolio-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .7s ease;
}
.portfolio-card:hover .portfolio-cover.branding-cover img { transform: scale(1.05); }
.portfolio-card:hover .portfolio-cover.web-cover img {
  object-position: bottom;
  transition: object-position 3s ease-in-out;
}
.portfolio-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.portfolio-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsl(var(--accent) / 0.12);
  color: hsl(var(--accent));
  border: 1px solid hsl(var(--accent) / 0.25);
  align-self: flex-start;
  margin-bottom: 0.75rem;
}
.portfolio-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color .2s ease;
}
.portfolio-body p {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding-top: 0.75rem;
  border-top: 1px solid hsl(var(--border) / 0.6);
  color: hsl(var(--muted-foreground));
  transition: color .2s ease;
}
.portfolio-card:hover .portfolio-link,
.portfolio-card:hover h4 { color: hsl(var(--accent)); }
.portfolio-link svg { transition: transform .25s ease; }
.portfolio-card:hover .portfolio-link svg { transform: translateX(3px); }

/* =====================================================
   VIDEOMAKER
   ===================================================== */
.section-videomaker { background: transparent; }
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .videos-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  transition: transform .4s ease, border-color .25s ease, box-shadow .4s ease;
}
.video-frame:hover {
  transform: scale(1.015);
  border-color: hsl(var(--accent) / 0.4);
  box-shadow: 0 0 40px -10px hsl(var(--accent-glow));
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* =====================================================
   PROCESS
   ===================================================== */
.section-process { background: hsl(var(--bg-elev)); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.process-card {
  position: relative;
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  overflow: hidden;
  transition: transform .35s ease, border-color .25s ease, box-shadow .35s ease;
}
.process-card:hover {
  transform: translateY(-3px);
  border-color: hsl(var(--accent) / 0.4);
  box-shadow: 0 10px 30px -12px hsl(var(--accent-glow));
}
.process-num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 400;
  color: hsl(var(--accent) / 0.16);
  line-height: 1;
  transition: color .3s ease;
}
.process-card:hover .process-num { color: hsl(var(--accent) / 0.35); }
.process-emoji {
  font-size: 2.25rem;
  display: inline-block;
  margin-bottom: 1rem;
  transition: transform .4s ease;
}
.process-card:hover .process-emoji { transform: scale(1.1) rotate(8deg); }
.process-card h3 {
  position: relative;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  z-index: 2;
}
.process-card p {
  position: relative;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  z-index: 2;
}

/* =====================================================
   STATS
   ===================================================== */
.section-stats {
  background: transparent;
  overflow: hidden;
  position: relative;
}
.stats-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.18;
  z-index: 1;
}
.stats-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid hsl(var(--accent) / 0.35);
  border-radius: 9999px;
}
.stats-rings span:nth-child(1) { width: 400px; height: 400px; }
.stats-rings span:nth-child(2) { width: 600px; height: 600px; }
.stats-rings span:nth-child(3) { width: 800px; height: 800px; }
@media (min-width: 1024px) {
  .stats-rings span:nth-child(1) { width: 500px; height: 500px; }
  .stats-rings span:nth-child(2) { width: 700px; height: 700px; }
  .stats-rings span:nth-child(3) { width: 900px; height: 900px; }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .stats-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.stat { text-align: center; transition: transform .3s ease; }
.stat:hover { transform: scale(1.05); }
.stat-num {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: hsl(var(--accent));
  text-shadow: 0 0 40px hsl(var(--accent-glow));
}
.stat-suffix { display: inline-block; }
.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
@media (min-width: 768px) { .stat-label { font-size: 1rem; } }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.section-testimonials {
  background: hsl(var(--bg-elev));
  overflow: hidden;
  position: relative;
}
.testimonials-wrap {
  position: relative;
  margin-top: 3rem;
  height: 620px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  overflow: hidden;
}
@media (min-width: 640px) { .testimonials-wrap { padding: 0 1.5rem; } }
.testimonials-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 5rem;
  z-index: 5;
  pointer-events: none;
}
.testimonials-fade-top {
  top: 0;
  background: linear-gradient(180deg, hsl(var(--bg-elev)), transparent);
}
.testimonials-fade-bottom {
  bottom: 0;
  background: linear-gradient(0deg, hsl(var(--bg-elev)), transparent);
}
.testimonials-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  height: 100%;
}
@media (min-width: 768px) { .testimonials-cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-cols { grid-template-columns: repeat(3, 1fr); } }
.testimonial-col-md { display: none; }
@media (min-width: 768px) { .testimonial-col-md { display: block; } }
.testimonial-col-lg { display: none; }
@media (min-width: 1024px) { .testimonial-col-lg { display: block; } }
.testimonial-col { overflow: hidden; height: 100%; }
.testimonial-track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: testimonial-scroll linear infinite;
}
@keyframes testimonial-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.testimonial-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  flex-shrink: 0;
  transition: transform .3s ease, border-color .25s ease;
}
.testimonial-card:hover {
  transform: scale(1.01);
  border-color: hsl(var(--accent) / 0.3);
}
.stars {
  color: hsl(var(--accent));
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}
.testimonial-text {
  color: hsl(var(--foreground) / 0.92);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-size: cover;
  background-position: center;
  border: 2px solid hsl(var(--accent) / 0.3);
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 0.95rem; }
.t-role { font-size: 0.82rem; color: hsl(var(--muted-foreground)); }

/* =====================================================
   FAQ
   ===================================================== */
.section-faq { background: transparent; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }
.faq-aside .section-title { margin-bottom: 1rem; }
.faq-aside p {
  color: hsl(var(--muted-foreground));
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .faq-aside { position: sticky; top: 8rem; } }

.faq-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 0.5rem 1.5rem;
}
@media (min-width: 768px) { .faq-card { padding: 0.5rem 2rem; } }
.faq-item {
  border-bottom: 1px solid hsl(var(--border));
}
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: transform .25s ease, color .2s ease;
}
@media (min-width: 768px) { .faq-item summary { font-size: 1.05rem; } }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { transform: translateX(4px); color: hsl(var(--accent)); }
.faq-toggle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: hsl(var(--accent) / 0.12);
  border: 1px solid hsl(var(--accent) / 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background .2s ease;
}
.faq-item summary:hover .faq-toggle { background: hsl(var(--accent) / 0.25); }
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: hsl(var(--accent));
  border-radius: 2px;
  transition: transform .3s ease;
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after  { width: 2px; height: 12px; }
.faq-item[open] .faq-toggle::after { transform: scale(0); }
.faq-answer {
  padding: 0 3rem 1.5rem 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =====================================================
   LET'S WORK TOGETHER
   ===================================================== */
.section-lets-work {
  background: transparent;
  position: relative;
}
.section-lets-work::before {
  content: "";
  position: absolute;
  inset: 20% 0;
  background: radial-gradient(ellipse at center, hsl(var(--accent) / 0.10), transparent 70%);
  pointer-events: none;
}
.lets-work-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  min-height: 50dvh;
  text-align: center;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: avail-pulse 2s ease-out infinite;
}
@keyframes avail-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.lets-work-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  margin: 0;
}
@media (min-width: 1024px) { .lets-work-title { font-size: clamp(4rem, 9vw, 7rem); } }
.lets-work-title .accent-italic { font-size: 1.05em; }

.lets-work-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all .5s ease;
}
.lw-line {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: hsl(var(--border));
  transition: transform .5s ease, opacity .5s ease;
  opacity: 0.6;
}
@media (min-width: 768px) { .lw-line { width: 3rem; } }
.lets-work-button:hover .lw-line { transform: scaleX(0); opacity: 0; }

.lw-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all .4s ease;
  background: hsl(var(--card) / 0.4);
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) { .lw-pill { padding: 1rem 2rem; font-size: 1rem; } }
.lets-work-button:hover .lw-pill {
  background: hsl(var(--accent));
  color: hsl(260 30% 7%);
  border-color: hsl(var(--accent));
  box-shadow: 0 14px 40px -10px hsl(var(--accent-glow));
}

.lets-work-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lets-work-foot p {
  max-width: 28rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}
.lets-work-foot span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}
.footer-brand img {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  max-width: 22rem;
  font-size: 0.92rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--foreground));
  transition: background .2s ease, transform .25s ease, color .2s ease, border-color .25s ease;
}
.footer-socials a:hover {
  background: hsl(var(--accent) / 0.12);
  color: hsl(var(--accent));
  border-color: hsl(var(--accent) / 0.4);
  transform: scale(1.08);
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.92rem;
  color: hsl(var(--muted-foreground));
  transition: color .2s ease;
}
.footer-col a:hover { color: hsl(var(--accent)); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom .footer-credit a {
  color: hsl(var(--accent));
  border-bottom: 1px solid hsl(var(--accent) / 0.35);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.footer-bottom .footer-credit a:hover {
  color: hsl(var(--accent-strong));
  border-bottom-color: hsl(var(--accent-strong));
}

/* =====================================================
   REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.is-visible { opacity: 1; transform: none; }

/* =====================================================
   MOTION UPGRADES — 2026
   ===================================================== */

/* ------- Scroll progress bar ------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, hsl(var(--accent) / 0), hsl(var(--accent)) 60%, hsl(var(--accent-strong)));
  box-shadow: 0 0 12px hsl(var(--accent) / 0.6);
  transition: width .1s linear;
  pointer-events: none;
}

/* ------- Hero word rotator ------- */
.word-rotator {
  display: inline-block;
  position: relative;
}
.word-rotator > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em) rotateX(-40deg);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.word-rotator > span.is-in  { opacity: 1; transform: none; }
.word-rotator > span.is-out { opacity: 0; transform: translateY(-0.45em) rotateX(40deg); }

/* ------- Spotlight glow that follows the cursor ------- */
.feature-card, .service-card, .sim-card {
  position: relative;
}
.feature-card::after, .service-card::after, .sim-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%),
              hsl(var(--accent) / 0.16), transparent 65%);
}
.feature-card:hover::after, .service-card:hover::after, .sim-card:hover::after { opacity: 1; }

/* ------- Button shine sweep ------- */
.btn-glow { position: relative; overflow: hidden; }
.btn-glow::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 4.5s ease-in-out infinite;
}
@keyframes btn-shine {
  0%, 60% { left: -75%; }
  85%, 100% { left: 130%; }
}

/* =====================================================
   SECTION — MAVEN EM AÇÃO (simulações)
   ===================================================== */
.section-sim { position: relative; overflow: hidden; }
.sim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px)  { .sim-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .sim-grid { grid-template-columns: repeat(3, 1fr); } }

.sim-card {
  background: linear-gradient(180deg, hsl(var(--card)), hsl(var(--background)));
  border: 1px solid hsl(var(--border));
  border-radius: 1.25rem;
  padding: 1.25rem;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .4s ease;
}
.sim-card:hover {
  transform: translateY(-6px);
  border-color: hsl(var(--accent) / 0.4);
  box-shadow: 0 24px 60px -28px hsl(var(--accent) / 0.55);
}
.sim-card h3 { font-size: 1.15rem; margin: 1rem 0 .35rem; }
.sim-card > p { color: hsl(var(--muted-foreground)); font-size: .92rem; line-height: 1.55; }
.sim-head { margin-bottom: .9rem; }
.sim-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .02em;
  color: hsl(var(--accent));
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.2);
  padding: .3rem .7rem; border-radius: 9999px;
}
.sim-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: hsl(var(--accent));
  box-shadow: 0 0 0 0 hsl(var(--accent) / 0.55);
  animation: badge-pulse 2.4s ease-out infinite;
}

/* --- viewport "tela" comum às simulações --- */
.sim-chat, .sim-dash, .sim-crm {
  background: hsl(var(--background) / 0.65);
  border: 1px solid hsl(var(--border));
  border-radius: .9rem;
  padding: .85rem;
  min-height: 230px;
}

/* --- Sim 1: Chat IA --- */
.sim-chat { display: flex; flex-direction: column; }
.sim-chat-head { display: flex; align-items: center; gap: .6rem; padding-bottom: .7rem; border-bottom: 1px solid hsl(var(--border)); }
.sim-ava {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-strong)));
  color: #1a1024; font-weight: 800; font-size: .8rem;
}
.sim-ava-name { font-size: .82rem; font-weight: 700; }
.sim-ava-status { font-size: .68rem; color: hsl(var(--muted-foreground)); display: flex; align-items: center; gap: .3rem; }
.sim-online { width: 6px; height: 6px; border-radius: 50%; background: #34d399; box-shadow: 0 0 6px #34d399; }
.sim-chat-body { display: flex; flex-direction: column; gap: .5rem; padding-top: .75rem; flex: 1; }
.sim-msg {
  max-width: 82%;
  padding: .5rem .7rem; border-radius: .8rem; font-size: .8rem; line-height: 1.4;
  opacity: 0; transform: translateY(8px) scale(.96);
  animation: sim-msg-in .35s cubic-bezier(.22,1,.36,1) forwards;
}
.sim-msg.user { align-self: flex-end; background: hsl(var(--accent)); color: #1a1024; border-bottom-right-radius: .25rem; }
.sim-msg.bot  { align-self: flex-start; background: hsl(var(--muted)); color: hsl(var(--foreground)); border-bottom-left-radius: .25rem; }
@keyframes sim-msg-in { to { opacity: 1; transform: none; } }
.sim-typing { display: inline-flex; gap: 3px; align-items: center; }
.sim-typing span {
  width: 5px; height: 5px; border-radius: 50%; background: hsl(var(--muted-foreground));
  animation: sim-typing 1s infinite ease-in-out;
}
.sim-typing span:nth-child(2) { animation-delay: .15s; }
.sim-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes sim-typing { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

/* --- Sim 2: Dashboard --- */
.sim-dash { display: flex; flex-direction: column; gap: 1rem; }
.sim-dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.sim-kpi {
  background: hsl(var(--card-soft)); border: 1px solid hsl(var(--border));
  border-radius: .6rem; padding: .55rem .6rem;
}
.sim-kpi-label { display: block; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: hsl(var(--muted-foreground)); }
.sim-kpi-val { display: block; font-size: 1.15rem; font-weight: 800; font-family: var(--sans); margin-top: .15rem; }
.sim-kpi.up .sim-kpi-val { color: #34d399; }
.sim-bars { display: flex; align-items: flex-end; gap: .4rem; height: 110px; padding-top: .25rem; }
.sim-bars span {
  flex: 1; border-radius: .3rem .3rem 0 0;
  background: linear-gradient(180deg, hsl(var(--accent)), hsl(var(--accent-strong) / 0.35));
  height: var(--h);
  transform-origin: bottom;
  animation: sim-bar 3.2s ease-in-out infinite;
}
.sim-bars span:nth-child(2) { animation-delay: .2s; }
.sim-bars span:nth-child(3) { animation-delay: .4s; }
.sim-bars span:nth-child(4) { animation-delay: .6s; }
.sim-bars span:nth-child(5) { animation-delay: .8s; }
.sim-bars span:nth-child(6) { animation-delay: 1s; }
.sim-bars span:nth-child(7) { animation-delay: 1.2s; }
@keyframes sim-bar { 0%, 100% { transform: scaleY(.45); } 50% { transform: scaleY(1); } }

/* --- Sim 3: CRM pipeline --- */
.sim-crm { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.sim-col {
  background: hsl(var(--card-soft)); border: 1px solid hsl(var(--border));
  border-radius: .6rem; padding: .5rem; display: flex; flex-direction: column; gap: .45rem;
}
.sim-col-h { font-size: .64rem; text-transform: uppercase; letter-spacing: .07em; color: hsl(var(--muted-foreground)); font-weight: 700; }
.sim-deal {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: .5rem; padding: .5rem; font-size: .72rem;
  display: flex; align-items: center; gap: .45rem;
  opacity: .4; transform: translateY(4px);
  animation: sim-crm-step 6s infinite;
}
.sim-deal .sim-deal-ava { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-strong))); flex-shrink: 0; }
.sim-deal p { font-weight: 700; }
.sim-deal .sim-deal-val { color: hsl(var(--muted-foreground)); font-size: .66rem; display: block; }
.sim-col:nth-child(1) .sim-deal { animation-delay: 0s; }
.sim-col:nth-child(2) .sim-deal { animation-delay: 2s; }
.sim-col:nth-child(3) .sim-deal { animation-delay: 4s; }
@keyframes sim-crm-step {
  0%      { opacity: .35; transform: translateY(6px) scale(.97); border-color: hsl(var(--border)); }
  6%, 28% { opacity: 1; transform: translateY(0) scale(1); border-color: hsl(var(--accent) / 0.6); box-shadow: 0 8px 24px -12px hsl(var(--accent) / 0.7); }
  40%,100%{ opacity: .35; transform: translateY(0) scale(.99); border-color: hsl(var(--border)); box-shadow: none; }
}
.sim-deal-check {
  margin-left: auto; color: #34d399; font-weight: 800; opacity: 0;
  animation: sim-crm-check 6s infinite; animation-delay: 4s;
}
@keyframes sim-crm-check { 0%, 5% { opacity: 0; } 8%, 28% { opacity: 1; } 40%, 100% { opacity: 0; } }

/* =====================================================
   TECH MARQUEE (stack)
   ===================================================== */
.tech-strip {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tech-track {
  display: flex;
  gap: .8rem;
  width: max-content;
  animation: tech-scroll 32s linear infinite;
}
.tech-strip:hover .tech-track { animation-play-state: paused; }
.tech-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  white-space: nowrap;
  font-size: .82rem; font-weight: 600; color: hsl(var(--muted-foreground));
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  padding: .5rem .95rem; border-radius: 9999px;
}
.tech-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: hsl(var(--accent)); }
@keyframes tech-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Link "Saiba mais" nos cards de serviço da home */
.service-more {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.1rem;
  font-size: .85rem; font-weight: 600;
  color: hsl(var(--accent));
  transition: gap .2s ease;
}
.service-more svg { width: 15px; height: 15px; transition: transform .2s ease; }
.service-card:hover .service-more { gap: .65rem; }
.service-card:hover .service-more svg { transform: translateX(2px); }

/* =====================================================
   MEGA MENU (dropdown de Serviços)
   ===================================================== */
.nav-mega { position: static; }
.nav-mega-trigger {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: 0.92rem; font-weight: 500;
  color: hsl(var(--foreground) / 0.75);
  background: none; cursor: pointer;
  transition: color .2s ease;
}
.nav-mega-trigger svg { width: 13px; height: 13px; transition: transform .3s ease; }
.nav-mega:hover .nav-mega-trigger,
.nav-mega:focus-within .nav-mega-trigger,
.nav-mega.is-open .nav-mega-trigger { color: hsl(var(--accent)); }
.nav-mega:hover .nav-mega-trigger svg,
.nav-mega.is-open .nav-mega-trigger svg { transform: rotate(180deg); }

.mega-panel {
  position: fixed;
  top: 84px; left: 50%;
  width: min(720px, calc(100vw - 1.5rem));
  transform: translateX(-50%) translateY(10px);
  background: hsl(var(--bg-elev) / 0.92);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid hsl(var(--foreground) / 0.1);
  border-radius: 1.5rem;
  padding: 1.4rem;
  box-shadow: 0 30px 80px -30px hsl(0 0% 0% / 0.75), 0 0 0 1px hsl(var(--accent) / 0.05);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, transform .3s cubic-bezier(.22,1,.36,1), visibility .25s;
  z-index: 60;
}
@media (min-width: 768px) { .mega-panel { top: 92px; } }
.nav-mega:hover .mega-panel,
.nav-mega:focus-within .mega-panel,
.nav-mega.is-open .mega-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; }
.mega-item {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .8rem; border-radius: 1rem;
  transition: background .2s ease;
}
.mega-item:hover { background: hsl(var(--foreground) / 0.05); }
.mega-ico {
  flex-shrink: 0; display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: .8rem;
  background: hsl(var(--accent) / 0.12); color: hsl(var(--accent));
  border: 1px solid hsl(var(--accent) / 0.2);
  transition: transform .25s ease;
}
.mega-item:hover .mega-ico { transform: translateY(-3px) scale(1.06); }
.mega-ico svg { width: 20px; height: 20px; }
.mega-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .15rem; color: hsl(var(--foreground)); }
.mega-item p { font-size: .8rem; color: hsl(var(--muted-foreground)); line-height: 1.4; }
.mega-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid hsl(var(--border));
  font-size: .85rem; color: hsl(var(--muted-foreground));
}
.mega-foot a { color: hsl(var(--accent)); font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s ease; white-space: nowrap; }
.mega-foot a:hover { gap: .6rem; }

/* Mega menu no mobile (acordeão dentro do menu) */
.m-mega { width: 100%; max-width: 22rem; text-align: center; }
.m-mega-trigger {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: 1.5rem; font-weight: 600; color: hsl(var(--foreground) / 0.85);
  font-family: var(--serif); font-style: italic;
}
.m-mega-trigger svg { width: 16px; height: 16px; transition: transform .3s ease; }
.m-mega.is-open .m-mega-trigger svg { transform: rotate(180deg); }
.m-mega-list { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.m-mega.is-open .m-mega-list { grid-template-rows: 1fr; }
.m-mega-list-inner { overflow: hidden; display: flex; flex-direction: column; gap: .9rem; padding-top: 0; }
.m-mega.is-open .m-mega-list-inner { padding-top: 1.1rem; }
.m-mega-list a { font-size: 1rem !important; color: hsl(var(--muted-foreground)) !important; }
.m-mega-list a:hover { color: hsl(var(--accent)) !important; }

/* =====================================================
   SCROLL MOTION — reveal direcional + parallax
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1), filter .9s ease;
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="scale"] { transform: scale(.9); }
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="blur"]  { transform: translateY(28px); filter: blur(10px); }
[data-reveal].is-visible { opacity: 1; transform: none; filter: none; }

[data-parallax] { will-change: transform; }

/* =====================================================
   PÁGINAS DE SERVIÇO — hero
   ===================================================== */
.svc-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 4.5rem;
  text-align: center;
}
@media (min-width: 768px) { .svc-hero { padding: 12rem 0 6rem; } }
.svc-hero .container { position: relative; z-index: 2; }
.svc-hero-badge {
  display: grid; place-items: center;
  width: 76px; height: 76px; border-radius: 1.4rem;
  margin: 0 auto 1.6rem;
  color: hsl(var(--accent));
  background: hsl(var(--accent) / 0.12);
  border: 1px solid hsl(var(--accent) / 0.25);
  box-shadow: 0 20px 50px -20px hsl(var(--accent) / 0.6);
  animation: svc-badge-float 5s ease-in-out infinite;
}
.svc-hero-badge svg { width: 34px; height: 34px; }
@keyframes svc-badge-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.svc-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02; letter-spacing: -0.02em; font-weight: 400;
  margin-bottom: 1.25rem;
}
.svc-hero-lead {
  max-width: 44rem; margin: 0 auto 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: hsl(var(--muted-foreground)); line-height: 1.6;
}
.svc-hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.svc-breadcrumb {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}
.svc-breadcrumb a { color: hsl(var(--muted-foreground)); transition: color .2s ease; }
.svc-breadcrumb a:hover { color: hsl(var(--accent)); }

/* Faixa de destaque (problema → solução) */
.svc-pain { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 768px) { .svc-pain { grid-template-columns: repeat(3, 1fr); } }
.svc-pain-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: 1rem; padding: 1.4rem;
}
.svc-pain-card .pain-x { color: #f87171; font-size: 1.3rem; line-height: 1; }
.svc-pain-card h4 { margin: .6rem 0 .3rem; font-size: 1.05rem; }
.svc-pain-card p { color: hsl(var(--muted-foreground)); font-size: .9rem; line-height: 1.5; }

/* Lista de benefícios com check */
.svc-benefits { display: grid; gap: .9rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 640px) { .svc-benefits { grid-template-columns: 1fr 1fr; } }
.svc-benefit {
  display: flex; gap: .8rem; align-items: flex-start;
  background: hsl(var(--card) / 0.5); border: 1px solid hsl(var(--border));
  border-radius: .9rem; padding: 1rem 1.1rem;
}
.svc-benefit .b-check {
  flex-shrink: 0; display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: hsl(var(--accent) / 0.15); color: hsl(var(--accent));
  font-weight: 800; font-size: .8rem;
}
.svc-benefit p { font-size: .92rem; line-height: 1.5; }
.svc-benefit strong { color: hsl(var(--foreground)); }

/* =====================================================
   KIT DE CONVERSÃO (landing pages de serviço)
   ===================================================== */

/* --- Botão WhatsApp --- */
.btn-wa {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: #06210f;
  font-weight: 700; border-radius: 9999px;
  padding: .95rem 1.6rem; font-size: 1rem;
  box-shadow: 0 14px 40px -12px rgba(37,211,102,.55);
  transition: transform .25s ease, box-shadow .25s ease, filter .2s ease;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -14px rgba(37,211,102,.7); filter: brightness(1.05); }
.btn-wa svg { width: 20px; height: 20px; }
.btn-wa.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* --- WhatsApp flutuante --- */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 70;
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #06210f;
  box-shadow: 0 12px 32px -8px rgba(37,211,102,.6);
  animation: wa-pulse 2.6s ease-out infinite;
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 12px 32px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.45); } 50% { box-shadow: 0 12px 32px -8px rgba(37,211,102,.6), 0 0 0 14px rgba(37,211,102,0); } }
@media (min-width: 880px) { .wa-float { right: 1.6rem; bottom: 1.6rem; } }

/* --- CTA fixo no rodapé (mobile) --- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .7rem .9rem;
  background: hsl(var(--bg-elev) / 0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid hsl(var(--foreground) / 0.1);
  transform: translateY(110%); transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.sticky-cta.is-shown { transform: translateY(0); }
.sticky-cta .sc-txt { font-size: .8rem; line-height: 1.2; }
.sticky-cta .sc-txt strong { display: block; font-size: .92rem; }
.sticky-cta .sc-txt span { color: hsl(var(--muted-foreground)); }
.sticky-cta .btn-wa { padding: .7rem 1.1rem; font-size: .9rem; white-space: nowrap; }
@media (min-width: 880px) { .sticky-cta { display: none; } }

/* --- Faixa de confiança --- */
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem;
  margin-top: 2.2rem;
}
.trust-item { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: hsl(var(--muted-foreground)); }
.trust-item svg { width: 17px; height: 17px; color: hsl(var(--accent)); }
.trust-item strong { color: hsl(var(--foreground)); }
.trust-stars { color: #fbbf24; letter-spacing: 1px; }

/* --- Banda de números --- */
.svc-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .svc-stats { grid-template-columns: repeat(4, 1fr); } }
.svc-stats .stat-box {
  text-align: center; padding: 1.6rem 1rem;
  background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1.1rem;
}
.svc-stats .sb-num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; font-family: var(--sans); line-height: 1; color: hsl(var(--accent)); }
.svc-stats .sb-label { margin-top: .5rem; font-size: .85rem; color: hsl(var(--muted-foreground)); }

/* --- Depoimentos (grid estático) --- */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: 1.1rem; padding: 1.4rem; display: flex; flex-direction: column; gap: .8rem;
}
.testi-card .stars { color: #fbbf24; font-size: .9rem; letter-spacing: 1px; }
.testi-card p { font-size: .92rem; line-height: 1.55; color: hsl(var(--foreground)); }
.testi-card .t-by { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.testi-card .t-ava { width: 38px; height: 38px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; }
.testi-card .t-name { font-size: .85rem; font-weight: 700; }
.testi-card .t-role { font-size: .75rem; color: hsl(var(--muted-foreground)); }

/* --- Garantia / risco reverso --- */
.guarantee {
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  background: linear-gradient(120deg, hsl(var(--accent) / 0.12), hsl(var(--card)));
  border: 1px solid hsl(var(--accent) / 0.25);
  border-radius: 1.4rem; padding: 1.8rem 2rem;
}
.guarantee .g-ico { flex-shrink: 0; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 1rem; background: hsl(var(--accent) / 0.18); color: hsl(var(--accent)); }
.guarantee .g-ico svg { width: 30px; height: 30px; }
.guarantee h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.guarantee p { color: hsl(var(--muted-foreground)); font-size: .95rem; line-height: 1.55; }

/* --- Comparativo (com x sem) --- */
.compare { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col { border-radius: 1.2rem; padding: 1.6rem; border: 1px solid hsl(var(--border)); }
.compare-col.bad { background: hsl(var(--card) / 0.5); }
.compare-col.good { background: linear-gradient(180deg, hsl(var(--accent) / 0.1), hsl(var(--card))); border-color: hsl(var(--accent) / 0.3); }
.compare-col h4 { font-size: 1.05rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.compare-col li { display: flex; gap: .6rem; font-size: .92rem; line-height: 1.45; color: hsl(var(--muted-foreground)); }
.compare-col li::before { font-weight: 800; flex-shrink: 0; }
.compare-col.bad li::before { content: "✕"; color: #f87171; }
.compare-col.good li::before { content: "✓"; color: #34d399; }
.compare-col.good li { color: hsl(var(--foreground)); }

/* --- Oferta / o que inclui --- */
.offer {
  max-width: 640px; margin: 0 auto;
  background: linear-gradient(180deg, hsl(var(--card)), hsl(var(--background)));
  border: 1px solid hsl(var(--accent) / 0.25);
  border-radius: 1.6rem; padding: 2rem;
  box-shadow: 0 30px 80px -40px hsl(var(--accent) / 0.6);
}
.offer-tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: hsl(var(--accent)); background: hsl(var(--accent) / 0.12); border: 1px solid hsl(var(--accent) / 0.25); padding: .3rem .7rem; border-radius: 9999px; margin-bottom: 1rem; }
.offer h3 { font-size: 1.5rem; margin-bottom: 1.2rem; }
.offer-list { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.6rem; }
.offer-list li { display: flex; gap: .6rem; font-size: .95rem; }
.offer-list li::before { content: "✓"; color: hsl(var(--accent)); font-weight: 800; }
.offer .offer-foot { display: flex; flex-direction: column; gap: .9rem; align-items: center; padding-top: 1.4rem; border-top: 1px solid hsl(var(--border)); }
.offer .offer-price { font-size: .9rem; color: hsl(var(--muted-foreground)); }
.offer .offer-price strong { color: hsl(var(--foreground)); font-size: 1.4rem; font-family: var(--sans); }

/* --- Layout 2 colunas (visual + texto) --- */
.split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } .split.rev .split-visual { order: 2; } }
.split-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-family: var(--serif); line-height: 1.1; margin-bottom: 1rem; }
.split-text > p { color: hsl(var(--muted-foreground)); line-height: 1.6; margin-bottom: 1.2rem; }
.split-list { list-style: none; display: grid; gap: .8rem; }
.split-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.split-list li::before { content: "✓"; color: hsl(var(--accent)); font-weight: 800; flex-shrink: 0; }

/* =====================================================
   MÓDULOS-ASSINATURA (1 por página, deixa cada uma única)
   ===================================================== */
.svc-mock {
  position: relative; border-radius: 1.4rem; padding: 1.4rem;
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  box-shadow: 0 30px 70px -30px hsl(0 0% 0% / 0.6);
}

/* IDENTIDADE — specimen de marca */
.spec { display: grid; gap: 1rem; }
.spec-logo { display: grid; place-items: center; height: 120px; border-radius: 1rem; background: linear-gradient(135deg, hsl(var(--accent) / 0.18), hsl(var(--card-soft))); border: 1px solid hsl(var(--border)); font-family: var(--serif); font-size: 2rem; font-style: italic; }
.spec-swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; }
.spec-swatch { height: 46px; border-radius: .6rem; border: 1px solid hsl(var(--foreground) / 0.08); }
.spec-type { background: hsl(var(--card-soft)); border: 1px solid hsl(var(--border)); border-radius: .8rem; padding: 1rem; }
.spec-type .big { font-family: var(--serif); font-size: 1.8rem; line-height: 1; }
.spec-type .small { color: hsl(var(--muted-foreground)); font-size: .8rem; margin-top: .4rem; letter-spacing: .05em; }

/* WEB — mockup de navegador + medidor de velocidade */
.mock-browser { border-radius: 1rem; overflow: hidden; border: 1px solid hsl(var(--border)); background: hsl(var(--card-soft)); }
.mock-bar { display: flex; align-items: center; gap: .4rem; padding: .6rem .8rem; background: hsl(var(--muted)); border-bottom: 1px solid hsl(var(--border)); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: hsl(var(--foreground) / 0.25); }
.mock-bar .mock-url { margin-left: .6rem; font-size: .7rem; color: hsl(var(--muted-foreground)); background: hsl(var(--background)); padding: .25rem .6rem; border-radius: 9999px; flex: 1; }
.mock-view { padding: 1rem; display: grid; gap: .6rem; }
.mock-line { height: 10px; border-radius: 6px; background: hsl(var(--foreground) / 0.08); }
.mock-line.w1 { width: 60%; background: hsl(var(--accent) / 0.5); height: 16px; }
.mock-line.w2 { width: 90%; } .mock-line.w3 { width: 75%; }
.mock-blocks { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-top: .3rem; }
.mock-blocks span { height: 46px; border-radius: .5rem; background: hsl(var(--accent) / 0.14); border: 1px solid hsl(var(--accent) / 0.2); }
.gauge { display: grid; place-items: center; text-align: center; margin-top: 1.2rem; }
.gauge-ring { width: 130px; height: 130px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(hsl(var(--accent)) 0 var(--p,97%), hsl(var(--muted)) var(--p,97%) 100%); }
.gauge-ring span { width: 104px; height: 104px; border-radius: 50%; background: hsl(var(--card)); display: grid; place-items: center; font-size: 1.8rem; font-weight: 800; font-family: var(--sans); }
.gauge-label { margin-top: .6rem; font-size: .82rem; color: hsl(var(--muted-foreground)); }

/* TRÁFEGO — salto de métrica + funil */
.metric-jump { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mj-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.2rem; }
.mj-card .mj-from { font-size: .75rem; color: hsl(var(--muted-foreground)); text-decoration: line-through; }
.mj-card .mj-to { font-size: 1.8rem; font-weight: 800; font-family: var(--sans); color: #34d399; }
.mj-card .mj-label { font-size: .8rem; color: hsl(var(--muted-foreground)); margin-top: .2rem; }
.funnel { display: grid; gap: .4rem; margin-top: 1rem; }
.funnel span { margin: 0 auto; text-align: center; padding: .6rem; border-radius: .5rem; background: linear-gradient(180deg, hsl(var(--accent)), hsl(var(--accent-strong) / 0.4)); color: #1a1024; font-weight: 700; font-size: .8rem; }
.funnel span:nth-child(1){ width: 100%; } .funnel span:nth-child(2){ width: 78%; } .funnel span:nth-child(3){ width: 56%; } .funnel span:nth-child(4){ width: 36%; }

/* CRM — quadro kanban */
.board { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.board-col { background: hsl(var(--card-soft)); border: 1px solid hsl(var(--border)); border-radius: .8rem; padding: .6rem; }
.board-col h5 { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: hsl(var(--muted-foreground)); margin-bottom: .6rem; }
.board-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: .5rem; padding: .55rem; margin-bottom: .5rem; font-size: .72rem; }
.board-card b { display: block; font-size: .76rem; }
.board-card .bc-val { color: #34d399; font-weight: 700; }
.board-card.hot { border-color: hsl(var(--accent) / 0.5); box-shadow: 0 6px 18px -8px hsl(var(--accent) / 0.6); }

/* AUTOMAÇÃO — fluxo */
.flow { display: flex; flex-direction: column; gap: .7rem; }
.flow-step { display: flex; align-items: center; gap: .8rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: .8rem; padding: .8rem 1rem; }
.flow-step .fs-ico { flex-shrink: 0; width: 36px; height: 36px; border-radius: .6rem; display: grid; place-items: center; background: hsl(var(--accent) / 0.14); color: hsl(var(--accent)); font-size: 1.1rem; }
.flow-step .fs-ico svg { width: 20px; height: 20px; }
.flow-step p { font-size: .85rem; } .flow-step b { font-size: .9rem; }
.flow-arrow { text-align: center; color: hsl(var(--accent)); line-height: .4; }

/* CONTEÚDO — feed social */
.feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.feed-cell { aspect-ratio: 1; border-radius: .6rem; background: linear-gradient(135deg, hsl(var(--accent) / 0.22), hsl(var(--card-soft))); border: 1px solid hsl(var(--border)); display: grid; place-items: center; font-size: 1.5rem; }
.feed-stats { display: flex; justify-content: space-around; margin-top: 1rem; text-align: center; }
.feed-stat .fs-n { font-size: 1.4rem; font-weight: 800; font-family: var(--sans); color: hsl(var(--accent)); }
.feed-stat .fs-l { font-size: .72rem; color: hsl(var(--muted-foreground)); }

/* --- Ícone SVG do processo (substitui o emoji) --- */
.process-ico {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: .85rem;
  margin-bottom: 1.1rem;
  background: hsl(var(--accent) / 0.12); color: hsl(var(--accent));
  border: 1px solid hsl(var(--accent) / 0.2);
  transition: transform .35s ease;
}
.process-ico svg { width: 24px; height: 24px; }
.process-card:hover .process-ico { transform: translateY(-3px) scale(1.06); }

/* --- Garantia em trio (preenche a linha, sem espaço vazio) --- */
.guarantee-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .guarantee-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.g-card {
  background: linear-gradient(180deg, hsl(var(--accent) / 0.08), hsl(var(--card)));
  border: 1px solid hsl(var(--accent) / 0.2);
  border-radius: 1.3rem; padding: 1.9rem 1.6rem; text-align: center;
  transition: transform .35s ease, border-color .25s ease, box-shadow .35s ease;
}
.g-card:hover { transform: translateY(-4px); border-color: hsl(var(--accent) / 0.4); box-shadow: 0 18px 44px -22px hsl(var(--accent) / 0.6); }
.g-card .g-ico { margin: 0 auto 1rem; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 1rem; background: hsl(var(--accent) / 0.15); color: hsl(var(--accent)); }
.g-card .g-ico svg { width: 26px; height: 26px; }
.g-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.g-card p { color: hsl(var(--muted-foreground)); font-size: .9rem; line-height: 1.5; }

/* ------- A11y ------- */
:focus-visible {
  outline: 2px solid hsl(var(--accent));
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .testimonial-track, .hero-scroll span, .avail-dot, .badge-dot { animation: none !important; }
}
