/* =====================================================
   MARKANT — style.css
   Mobile-first | Sem frameworks | Sem inline styles
   ===================================================== */

/* ── 1. FONTES ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Lexend:wght@400;700&display=swap');

@font-face {
  font-family: 'Made Tommy';
  src: url('../assets/fonts/MADE TOMMY REGULAR_PERSONAL USE.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Made Tommy';
  src: url('../assets/fonts/MADE TOMMY BOLD_PERSONAL USE.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Made Tommy';
  src: url('../assets/fonts/MADE TOMMY BLACK_PERSONAL USE.OTF') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── 2. VARIÁVEIS ── */
:root {
  /* Cores */
  --lima:         #D9E021;
  --verde:        #336B24;
  --cinza-escuro: #2B2A29;
  --cinza:        #5D5E5D;
  --branco:       #F9F9F9;

  /* Seção alternada (ligeiramente mais clara) */
  --cinza-escuro-alt: #312F2E;

  /* Fundo mais escuro — faixas de destaque */
  --cinza-fundo: #1A1A18;

  /* Fontes */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Made Tommy', 'Lexend', sans-serif;

  /* Border radius */
  --radius-btn:   8px;
  --radius-card:  12px;
  --radius-badge: 999px;

  /* Sombras */
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.20);

  /* Transição padrão */
  --transition: 300ms ease-in-out;
}

/* ── 3. RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

a {
  color: inherit;
}

/* ── 4. BASE ── */
body {
  font-family: var(--font-body);
  background-color: var(--cinza-escuro);
  color: var(--branco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── 5. CONTAINER ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 80px; }
}

/* ── 6. UTILITÁRIOS ── */
.ant-highlight {
  color: var(--lima);
  font-weight: 700;
  font-style: normal;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cinza-escuro);
  background-color: var(--lima);
  padding: 4px 14px;
  border-radius: var(--radius-badge);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--branco);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--branco);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lima);
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-title { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 2.25rem; }
  .section-header { margin-bottom: 64px; }
}

/* ── 7. BOTÕES ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--lima);
  color: var(--cinza-escuro);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary:hover {
  background-color: #c8cf1c;
  transform: scale(1.02);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--lima);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--lima);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn-secondary:hover {
  background-color: var(--lima);
  color: var(--cinza-escuro);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--branco);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(249, 249, 249, 0.25);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn-outline:hover {
  border-color: var(--branco);
  background-color: rgba(249, 249, 249, 0.06);
}

.methodology-cta-link {
  border-color: var(--lima);
  color: var(--lima);
  font-weight: 600;
}

.methodology-cta-link:hover {
  background: var(--lima);
  color: var(--cinza-escuro);
  border-color: var(--lima);
  background-color: var(--lima);
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── 8. HEADER & NAV ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(43, 42, 41, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(249, 249, 249, 0.07);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.nav-logo img {
  width: 140px;
  height: auto;
}

/* Nav links — ocultos em mobile */
.nav-links {
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background-color: var(--cinza-escuro);
  padding: 8px 0 16px;
  border-bottom: 1px solid rgba(249, 249, 249, 0.08);
  z-index: 99;
}

.nav-links--open {
  display: flex;
}

.nav-link {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--branco);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}

.nav-link:hover,
.nav-link--active {
  color: var(--lima);
  padding-left: 24px;
}

/* CTA fora do menu mobile (sempre visível) */
.nav-cta {
  font-size: 0.75rem;
  padding: 10px 16px;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--branco);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle--open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle--open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    border: none;
    gap: 8px;
    flex: 1;
    justify-content: center;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 0.875rem;
  }

  .nav-link:hover,
  .nav-link--active {
    padding-left: 12px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-cta {
    font-size: 0.875rem;
    padding: 11px 20px;
  }
}

/* ── 9. HERO ── */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--cinza-escuro);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/bg/Pattern.png');
  background-repeat: repeat;
  background-size: 280px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-visual {
  display: block;
  width: 100%;
  margin-top: 40px;
}

.hero-dashboard-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: var(--radius-card);
  border: 1px solid rgba(217, 224, 33, 0.2);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4);
}

.hero-headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.13;
  color: var(--branco);
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--branco);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-headline { font-size: 3rem; }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    display: flex;
    align-items: flex-start;
    gap: 56px;
    text-align: left;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero-text {
    flex: 1;
    align-items: flex-start;
  }

  .hero-visual {
    display: flex;
    flex: 0 0 50%;
    width: 50%;
    margin-top: 0;
    align-items: flex-start;
  }

  .hero-headline {
    font-size: 3.75rem;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

/* ── 10. NÚMEROS ── */
.section-numbers {
  background-color: var(--cinza-escuro-alt);
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  border-bottom: 1px solid rgba(249, 249, 249, 0.06);
  padding: 56px 0;
}

.numbers-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.number-item {
  text-align: center;
  flex: 1;
}

.number-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--lima);
  line-height: 1;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.number-label {
  font-size: 0.875rem;
  color: var(--branco);
  line-height: 1.4;
}

.number-divider {
  width: 48px;
  height: 1px;
  background-color: rgba(249, 249, 249, 0.12);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .numbers-grid {
    flex-direction: row;
    gap: 0;
    justify-content: center;
  }

  .number-item {
    padding: 0 40px;
  }

  .number-divider {
    width: 1px;
    height: 64px;
  }

  .number-value { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
  .section-numbers { padding: 96px 0; }
  .number-value { font-size: 4.5rem; }
}

/* ── 11. FUNIL PIRATA ── */
.section-funnel {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 56px 0;
  overflow: hidden;
}

.metodo-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.section-funnel > *:not(.metodo-canvas) {
  position: relative;
  z-index: 1;
}

.funnel-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.funnel-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 680px;
}

.funnel-step {
  width: 100%;
  transition: all var(--transition);
}

/* Largura em funil só no desktop */
.funnel-step-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(249, 249, 249, 0.08);
  border-radius: var(--radius-card);
  border-left: 3px solid rgba(217, 224, 33, 0.25);
  transition: all var(--transition);
}

.funnel-step-inner:hover {
  border-left-color: var(--lima);
  background-color: rgba(217, 224, 33, 0.04);
}

.funnel-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--lima);
  color: var(--cinza-escuro);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funnel-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--branco);
  margin-bottom: 4px;
}

.funnel-desc {
  font-size: 0.875rem;
  color: var(--branco);
  line-height: 1.6;
}

.funnel-cta {
  text-align: center;
}

@media (min-width: 1024px) {
  .section-funnel { padding: 96px 0; }

  .funnel-step {
    /* Funil visual — cada etapa mais estreita */
    width: var(--funnel-width, 100%);
    margin: 0 auto;
  }
}

/* ── 12. CARROSSEL DE CLIENTES ── */
.section-clients-carousel {
  background-color: var(--cinza-escuro);
  padding: 48px 0;
  border-top: 1px solid rgba(217, 224, 33, 0.15);
  border-bottom: 1px solid rgba(217, 224, 33, 0.15);
  overflow: hidden;
}

.clients-carousel-label {
  text-align: center;
  color: var(--lima);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

@keyframes marquee-clients {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

#clients-track {
  animation: marquee-clients 30s linear infinite;
  will-change: transform;
}

.carousel-client-img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) opacity(0.6);
  transition: filter 300ms ease;
}

.carousel-logo:hover .carousel-client-img {
  filter: brightness(0) invert(1) opacity(1);
}

.carousel-client-img--color {
  filter: none;
  mix-blend-mode: lighten;
  opacity: 0.7;
  transition: opacity 300ms ease;
}

.carousel-logo:hover .carousel-client-img--color {
  filter: none;
  opacity: 1;
}

.carousel-client-img--arezzo {
  filter: brightness(0) invert(1) opacity(0.6);
  height: 48px;
  max-width: 160px;
}

.carousel-logo:hover .carousel-client-img--arezzo {
  filter: brightness(0) invert(1) opacity(1);
}

.carousel-logo--text {
  color: rgba(249, 249, 249, 0.5);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 0 40px;
  display: flex;
  align-items: center;
  transition: color 300ms ease;
}

.carousel-logo--text:hover {
  color: rgba(249, 249, 249, 0.9);
}

.carousel-logo--placeholder {
  color: rgba(249, 249, 249, 0.2);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0 40px;
  white-space: nowrap;
}

.clients-carousel-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-bottom: 8px;
}

@media (min-width: 1024px) {
  .section-clients-carousel { padding: 64px 0; }
}

/* ── 13. CARROSSEL DE LOGOS ── */
.section-carousel {
  background-color: var(--cinza-escuro-alt);
  padding: 40px 0;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  border-bottom: 1px solid rgba(249, 249, 249, 0.06);
  overflow: hidden;
}

.carousel-header {
  margin-bottom: 28px;
}

.carousel-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 35s linear infinite;
  will-change: transform;
}

.carousel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--cinza);
  white-space: nowrap;
  opacity: 0.45;
  transition: opacity var(--transition), color var(--transition);
  cursor: default;
}

.carousel-logo:hover {
  opacity: 1;
  color: var(--branco);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
}

/* ── 13. COMPARATIVO ── */
.section-comparison {
  background-color: var(--cinza-escuro);
  padding: 56px 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
  border-radius: var(--radius-card);
}

.comparison-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.comparison-table thead th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--branco);
  background-color: rgba(255, 255, 255, 0.04);
  border-bottom: 2px solid rgba(249, 249, 249, 0.08);
  text-align: left;
}

.comparison-table thead th.col-markant {
  color: var(--lima);
  background-color: rgba(217, 224, 33, 0.07);
  border-top: 2px solid var(--lima);
  border-left: 2px solid var(--lima);
  border-right: 2px solid var(--lima);
  border-bottom: 2px solid rgba(217, 224, 33, 0.2);
  text-align: center;
}

.comparison-table tbody td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--cinza);
  border-bottom: 1px solid rgba(249, 249, 249, 0.05);
}

.comparison-table tbody td:first-child {
  color: var(--branco);
  font-family: var(--font-heading);
  font-weight: 500;
}

.comparison-table tbody td:nth-child(3) {
  border-left: 2px solid var(--lima);
  border-right: 2px solid var(--lima);
  background-color: rgba(217, 224, 33, 0.04);
  text-align: center;
}

.comparison-table tbody tr:last-child td:nth-child(3) {
  border-bottom: 2px solid var(--lima);
}

.comparison-table tbody tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

.badge-yes {
  color: var(--lima);
  font-weight: 700;
  font-family: var(--font-heading);
}

.badge-no {
  color: var(--cinza);
}

.comparison-caption {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-cta {
  text-align: center;
}

@media (min-width: 1024px) {
  .section-comparison { padding: 96px 0; }
}

/* ── 14. CASES ── */
.section-cases {
  background-color: var(--cinza-escuro-alt);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

#cases-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.section-cases > *:not(#cases-canvas) {
  position: relative;
  z-index: 1;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
  align-items: stretch;
}

.card-case {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(249, 249, 249, 0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.card-case:hover {
  border-color: var(--lima);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
  background: transparent;
  border: none;
}

.case-logo-placeholder {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--lima);
}

/* Container do logo dentro do card */
.case-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

/* Imagem do logo dentro do card */
.case-logo-img {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  filter: brightness(0) invert(1);
}

.case-logo-img--emeene {
  filter: none;
  mix-blend-mode: normal;
  background: transparent;
}

.case-logo-fallback {
  display: none;
  color: var(--branco);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.case-segment {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--branco);
  background: transparent;
  border: 1px solid var(--lima);
  border-radius: 20px;
  padding: 3px 12px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.card-case-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--branco);
  margin-bottom: 8px;
}

.case-desc {
  font-size: 0.875rem;
  color: var(--branco);
  line-height: 1.65;
  margin-bottom: 24px;
}

.case-metrics {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding-top: 16px;
  margin-bottom: 16px;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
}

.metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  text-align: center;
}

.metric-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lima);
  line-height: 1;
}

.metric-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--branco);
  line-height: 1.4;
  text-align: center;
  max-width: 90px;
}

.section-cases .metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  align-self: center;
  flex-shrink: 0;
}

/* ── Bloco de CTAs dentro do card — mobile: coluna | desktop: linha ── */
.card-case-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

@media (min-width: 480px) {
  .card-case-actions {
    flex-direction: row;
  }
}

/* Botão primário do card — WhatsApp */
.btn-case-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--lima);
  color: var(--cinza-escuro);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: opacity var(--transition);
  white-space: nowrap;
  flex: 1;
  min-height: 44px;
}

.btn-case-primary:hover {
  opacity: 0.88;
}

.btn-case-primary .btn-case-icon {
  height: 18px;
  width: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Botão secundário do card — Ver case completo */
.btn-case-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--branco);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
  flex: 1;
  min-height: 44px;
}

.btn-case-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--branco);
}

/* ── Botões de ação abaixo do grid de cases ── */
.cases-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 768px) {
  .cases-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .section-cases { padding: 96px 0; }
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 15. COMO TRABALHAMOS ── */
.section-process {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 56px 0;
  overflow: hidden;
}

.process-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 56px;
}

/* Vídeo */
.process-video {
  width: 100%;
}

.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 249, 249, 0.1);
  transition: border-color var(--transition);
}

.video-facade:hover,
.video-facade:focus-visible {
  border-color: var(--lima);
  outline: none;
}

.video-placeholder-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43, 42, 41, 0.9) 0%,
    rgba(51, 107, 36, 0.12) 100%
  );
}

.video-play-btn {
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}

.video-facade:hover .video-play-btn {
  transform: scale(1.08);
}

.video-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--cinza);
  white-space: nowrap;
  z-index: 1;
}

/* 8 Fases */
.process-phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.phase-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(249, 249, 249, 0.07);
  border-radius: var(--radius-card);
  transition: all var(--transition);
}

.phase-item:hover {
  border-color: var(--lima);
  background-color: rgba(217, 224, 33, 0.04);
}

.phase-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--lima);
  color: var(--cinza-escuro);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--branco);
  margin-bottom: 4px;
}

.phase-desc {
  font-size: 0.8125rem;
  color: var(--branco);
  line-height: 1.55;
}

.process-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
  gap: 16px;
}

.process-cta-label {
  font-size: 0.9375rem;
  color: var(--cinza);
}

/* Mobile — .phases-row transparente no layout (itens participam do grid do pai) */
@media (max-width: 1023px) {
  .phases-row {
    display: contents;
  }
}

/* Tablet — 2 colunas */
@media (min-width: 768px) {
  .process-phases {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop — vídeo 100% + 2 fileiras de 4 fases */
@media (min-width: 1024px) {
  .section-process { padding: 96px 0; }

  .process-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .process-video {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }

  .process-phases {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 48px;
    /* reset das propriedades de grid herdadas */
    grid-template-columns: unset;
  }

  .phases-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
  }

  .phase-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: border-color var(--transition);
  }

  .phase-item:hover {
    border-color: var(--lima);
    background-color: rgba(217, 224, 33, 0.04);
  }
}

/* ── 16. MÓDULOS ── */
.section-modules {
  background-color: var(--cinza-escuro-alt);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

#servicos-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.section-modules > *:not(#servicos-canvas) {
  position: relative;
  z-index: 1;
}

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

.card-module {
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(249, 249, 249, 0.08);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card-module::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  z-index: 0;
  transition: opacity 300ms ease;
}

.card-module:hover::before {
  opacity: 0.14;
}

.card-module > * {
  position: relative;
  z-index: 1;
}

.card-module:hover {
  border-color: var(--lima);
  box-shadow: var(--shadow-hover);
}

/* Imagens de fundo por módulo */
.card-module--growth::before {
  background-image: url('/src/assets/images/card_growth.png');
}

.card-module--trafego::before {
  background-image: url('/src/assets/images/card_trafego.jpeg');
}

.card-module--organico::before {
  background-image: url('/src/assets/images/card_trafego_organico.jpg');
}

.card-module--site::before {
  background-image: url('/src/assets/images/card_site.png');
}

.card-module--crm::before {
  background-image: url('/src/assets/images/card_crm.jpg');
}

/* Card personalizar — sem imagem */
.card-module--custom::before {
  display: none;
}

.card-module--custom {
  border-color: rgba(217, 224, 33, 0.25);
  background-color: rgba(217, 224, 33, 0.04);
}

.module-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--lima);
  color: var(--cinza-escuro);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.module-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--branco);
  line-height: 1.25;
}

.module-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--lima);
  border: 1px solid rgba(217, 224, 33, 0.35);
  padding: 3px 10px;
  border-radius: var(--radius-badge);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.module-desc {
  font-size: 0.875rem;
  color: var(--branco);
  line-height: 1.65;
  flex: 1;
}

.btn-module {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--lima);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 10px 20px;
  border: 1px solid var(--lima);
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: all var(--transition);
  text-align: center;
  align-self: flex-start;
  width: 100%;
}

.btn-module:hover {
  background-color: var(--lima);
  color: var(--cinza-escuro);
}

@media (min-width: 768px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .section-modules { padding: 96px 0; }
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .btn-module { width: auto; }
}

/* ── 17. CONTATO ── */
.section-contact {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 56px 0;
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/src/assets/bg/Pattern.png');
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.15;
  z-index: 0;
  filter: sepia(1) saturate(10) hue-rotate(20deg) brightness(1.5);
}

.section-contact > * {
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Formulário */
.contact-form-wrapper {
  flex: 1;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--branco);
  letter-spacing: 0.04em;
}

.form-select,
.form-textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(249, 249, 249, 0.14);
  border-radius: var(--radius-btn);
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 13px 16px;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-select {
  min-height: 50px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235D5E5D' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-select option {
  background-color: var(--cinza-escuro);
  color: var(--branco);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.form-select:focus,
.form-textarea:focus {
  border-color: var(--lima);
}

.form-select::placeholder,
.form-textarea::placeholder {
  color: var(--cinza);
}

.form-submit {
  border: none;
  width: 100%;
  justify-content: center;
  font-size: 0.9375rem;
  min-height: 50px;
}

/* Canais */
.contact-channels {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.channels-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--branco);
  margin-bottom: 4px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(249, 249, 249, 0.08);
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: all var(--transition);
}

.channel-item:hover {
  border-color: var(--lima);
  background-color: rgba(217, 224, 33, 0.04);
}

.channel-whatsapp {
  border-color: rgba(37, 211, 102, 0.25);
}

.channel-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(89%) sepia(43%) saturate(800%) hue-rotate(10deg) brightness(95%);
}

.channel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.channel-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--lima);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.channel-value {
  font-size: 0.9375rem;
  color: var(--branco);
}

.contact-cta-block {
  padding: 24px;
  background-color: rgba(217, 224, 33, 0.04);
  border: 1px solid rgba(217, 224, 33, 0.18);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.contact-cta-label {
  font-size: 0.875rem;
  color: var(--cinza);
}

@media (min-width: 1024px) {
  .section-contact { padding: 96px 0; }

  .contact-layout {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }
}

/* ── 18. FOOTER ── */
.footer {
  background-color: var(--cinza-escuro);
  border-top: 1px solid rgba(249, 249, 249, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 40px 0 24px;
}

/* Coluna 1 — Marca */
.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo img {
  width: 140px;
  height: auto;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--cinza);
  line-height: 1.65;
}

.footer-cta {
  align-self: flex-start;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(249, 249, 249, 0.14);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--lima);
  background-color: rgba(217, 224, 33, 0.08);
}

.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Colunas de links */
.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--branco);
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--cinza);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--lima);
}

/* Coluna Contato */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(89%) sepia(43%) saturate(800%) hue-rotate(10deg) brightness(95%);
  opacity: 0.75;
  transition: opacity var(--transition);
}

.footer-contact-list a,
.footer-contact-list span {
  font-size: 0.875rem;
  color: var(--cinza);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--lima);
}

.footer-contact-list a:hover .footer-contact-icon {
  opacity: 1;
}

.footer-meeting-btn {
  align-self: flex-start;
}

.footer-meeting-btn:hover {
  background-color: var(--lima);
  color: var(--cinza-escuro);
  border-color: var(--lima);
}

/* Faixa legal */
.footer-legal {
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  padding: 16px 0;
}

.footer-legal-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-legal-text,
.footer-bottom {
  font-size: 0.75rem;
  color: var(--cinza);
  line-height: 1.55;
}

.footer-bottom a {
  color: var(--cinza);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--lima);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .footer-legal-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ── 19. SOCIAL ICONS — COR LIMA ── */
.social-icon {
  filter: brightness(0) saturate(100%) invert(89%) sepia(55%) saturate(621%) hue-rotate(10deg) brightness(106%) contrast(98%);
  transition: filter var(--transition), opacity var(--transition);
}

.social-link:hover .social-icon {
  opacity: 0.8;
}

/* ── 20. TABELA COMPARATIVA — MOBILE CARDS ── */
@media (max-width: 767px) {
  .comparison-table-wrapper {
    overflow-x: visible;
  }

  .comparison-table {
    display: block;
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .comparison-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid rgba(249, 249, 249, 0.08);
    border-radius: var(--radius-card);
    overflow: hidden;
  }

  .comparison-table tbody td {
    padding: 12px 10px;
    border-bottom: none;
    font-size: 0.8125rem;
  }

  .comparison-table tbody td:first-child {
    background-color: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    color: var(--branco);
  }

  .comparison-table tbody td:nth-child(2) {
    border-left: none;
    text-align: center;
  }

  .comparison-table tbody td:nth-child(3) {
    border-left: 1px solid rgba(217, 224, 33, 0.25);
    border-right: none;
    background-color: rgba(217, 224, 33, 0.06);
    text-align: center;
  }

  .comparison-table tbody tr:last-child td:nth-child(3) {
    border-bottom: none;
  }
}

/* ── 21. CAROUSEL — LOGOS COM IMAGEM ── */
.carousel-brand-img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.55;
  transition: filter var(--transition), opacity var(--transition);
}

.carousel-brand-img--colored {
  filter: grayscale(100%) brightness(2) opacity(0.5);
}

.carousel-logo:hover .carousel-brand-img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.carousel-logo:hover .carousel-brand-img--colored {
  filter: grayscale(0%) brightness(1) opacity(1);
  opacity: 1;
}

/* ── 22. CASES — GRÁFICOS DE CRESCIMENTO ── */
.case-chart {
  position: relative;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-card);
  padding: 12px 12px 28px;
  margin-bottom: 20px;
  overflow: hidden;
}

.chart-svg {
  width: 100%;
  height: 60px;
  display: block;
}

.chart-line {
  fill: none;
  stroke: var(--lima);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-fill {
  fill: rgba(217, 224, 33, 0.08);
  stroke: none;
}

.chart-label {
  position: absolute;
  bottom: 8px;
  left: 12px;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cinza);
}

/* ── 23. PÁGINA DE SERVIÇOS — HERO ── */
.section-services-hero {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 96px 0 72px;
  overflow: hidden;
}

#servicos-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.section-services-hero > *:not(#servicos-hero-canvas) {
  position: relative;
  z-index: 1;
}

.services-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--branco);
  margin-bottom: 20px;
}

.services-hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--branco);
  max-width: 600px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .services-hero-title { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
  .services-hero-title { font-size: 3.25rem; }
  .section-services-hero { padding: 120px 0 96px; }
}

/* ── 24. TOGGLE DE PERSONA ── */
.persona-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.toggle-btn {
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid var(--lima);
  background: transparent;
  color: var(--lima);
  transition: background-color var(--transition), color var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.toggle-btn.active {
  background-color: var(--lima);
  color: var(--cinza-escuro);
}

.toggle-btn:not(.active):hover {
  background: rgba(217, 224, 33, 0.1);
}

.toggle-btn:focus-visible {
  outline: 2px solid var(--lima);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .toggle-btn { font-size: 0.9375rem; padding: 13px 32px; }
}

@media (max-width: 480px) {
  .persona-toggle-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .toggle-btn {
    width: 100%;
    text-align: center;
  }
}

/* ── 25. MÓDULOS — SEÇÃO ── */
.section-modules-page {
  background-color: var(--cinza-escuro-alt);
  padding: 0 0 64px;
  position: relative;
}

/* ── Linha conectora de progresso ── */
.modules-progress-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(217, 224, 33, 0.1);
  z-index: 0;
  pointer-events: none;
}

.modules-progress-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(
    to bottom,
    var(--lima),
    rgba(217, 224, 33, 0.3)
  );
  transition: height 0.1s ease;
  box-shadow: 0 0 8px rgba(217, 224, 33, 0.4);
}

/* ── Separadores entre módulos ── */
.module-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: relative;
  z-index: 1;
}

.module-separator.is-visible {
  opacity: 1;
}

.module-separator::before,
.module-separator::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(
    to right,
    transparent,
    rgba(217, 224, 33, 0.3)
  );
}

.module-separator::after {
  background: linear-gradient(
    to left,
    transparent,
    rgba(217, 224, 33, 0.3)
  );
}

.separator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lima);
  box-shadow: 0 0 8px rgba(217, 224, 33, 0.6);
  flex-shrink: 0;
}

/* ── Animações de entrada dos módulos ── */
@keyframes slide-from-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-from-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.module-row {
  opacity: 0;
  transition: opacity 0.1s;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 64px 0;
}

.module-row.is-visible {
  opacity: 1;
}

.module-row:nth-child(odd).is-visible {
  animation: slide-from-left 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.module-row:nth-child(even).is-visible {
  animation: slide-from-right 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.module-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.module-visual {
  width: 100%;
}

.module-visual-wrapper {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.module-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
  transition: filter 300ms ease;
}

.module-visual-wrapper:hover .module-img {
  filter: brightness(0.4);
}

/* ── Brilho no hover da imagem (efeito shine) ── */
@keyframes shine-sweep {
  0%   { top: -100%; }
  100% { top: 200%; }
}

.module-visual-wrapper::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -20%;
  width: 140%;
  height: 40%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(217, 224, 33, 0.08),
    transparent
  );
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.module-visual-wrapper:hover::after {
  opacity: 1;
  animation: shine-sweep 0.8s ease-in-out forwards;
}

/* ── Pulso no número do módulo ── */
@keyframes pulse-lima {
  0%   { box-shadow: 0 0 0 0 rgba(217, 224, 33, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(217, 224, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 224, 33, 0); }
}

.module-badge-num.is-visible {
  animation: pulse-lima 1.5s ease-out;
}

.module-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.module-title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--branco);
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  width: 80%;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  transition: color 300ms ease;
}

.module-visual-wrapper:hover .module-title-overlay {
  color: var(--lima);
}

.module-visual-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1a18 0%, var(--cinza-escuro) 100%);
  border: 1px solid rgba(217, 224, 33, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-visual-placeholder .module-title-overlay {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  color: var(--lima);
}

@media (max-width: 767px) {
  .module-title-overlay {
    font-size: 1.125rem;
  }
}

/* Badge numérico */
.module-badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--lima);
  color: var(--cinza-escuro);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Bloco de conteúdo por persona */
.module-persona-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.module-service-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--lima);
  border: 1px solid rgba(217, 224, 33, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-badge);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

.module-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--branco);
  line-height: 1.2;
}

.module-pain {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.65;
  padding: 12px 16px;
  border-left: 3px solid rgba(217, 224, 33, 0.35);
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
}

.module-solution {
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.7;
}

.module-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--branco);
  line-height: 1.55;
}

.deliverable-item::before {
  content: "✓";
  color: var(--lima);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-module-cta {
  align-self: flex-start;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .module-name { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .section-modules-page { padding: 0 0 96px; }

  .module-row {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
  }

  /* row-reverse: imagem à esquerda, texto à direita */
  .module-row--reverse {
    flex-direction: row-reverse;
  }

  .module-text {
    flex: 1;
    min-width: 0;
    padding-left: 48px;
  }

  .module-row--reverse .module-text {
    padding-left: 64px;
    padding-right: 0;
  }

  .module-visual {
    width: 44%;
    flex-shrink: 0;
  }
}

@media (max-width: 1023px) {
  .modules-progress-line {
    display: none;
  }

  .module-row:nth-child(odd).is-visible,
  .module-row:nth-child(even).is-visible {
    animation: none;
    opacity: 1;
  }
}

/* ── 26. FAIXA DE NÚMEROS — SERVIÇOS ── */
.section-numbers-strip {
  background-color: var(--cinza-fundo);
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  border-bottom: 1px solid rgba(249, 249, 249, 0.06);
  padding: 56px 0;
}

@media (min-width: 1024px) {
  .section-numbers-strip { padding: 80px 0; }
}

/* ── 27. SEÇÃO "NÃO SABE POR ONDE COMEÇAR" ── */
.section-start {
  position: relative;
  overflow: hidden;
  background-color: var(--cinza-escuro);
  padding: 80px 0;
}

.section-start::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/src/assets/bg/Pattern.png');
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.15;
  z-index: 0;
  filter: sepia(1) saturate(10) hue-rotate(20deg) brightness(1.5);
  pointer-events: none;
}

.section-start > * {
  position: relative;
  z-index: 1;
}

.start-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  gap: 20px;
}

.start-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--branco);
  line-height: 1.2;
}

.start-subtitle {
  font-size: 1rem;
  color: var(--branco);
  line-height: 1.7;
  margin-top: -4px;
}

.start-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .start-title { font-size: 2.25rem; }
  .start-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .section-start { padding: 112px 0; }
}

.section-start .btn-secondary .btn-icon {
  filter: brightness(0) saturate(100%)
          invert(89%) sepia(43%)
          saturate(800%) hue-rotate(10deg)
          brightness(95%);
}

/* ── 28. CTA FINAL — SERVIÇOS ── */
.section-final-cta {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 80px 0;
  overflow: hidden;
}

.hero-pattern--intense {
  opacity: 0.12;
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--branco);
  line-height: 1.2;
}

.final-cta-subtitle {
  font-size: 1rem;
  color: var(--branco);
  line-height: 1.7;
  margin-top: -8px;
}

@media (min-width: 768px) {
  .final-cta-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-final-cta { padding: 112px 0; }
  .final-cta-title { font-size: 2.75rem; }
}

/* ── 29. BLOG — HERO ── */
.section-blog-hero {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 96px 0 64px;
  overflow: hidden;
}

#blog-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section-blog-hero > *:not(#blog-hero-canvas) {
  position: relative;
  z-index: 1;
}

.blog-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--branco);
  margin-bottom: 16px;
}

.blog-hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--branco);
  max-width: 560px;
}

@media (min-width: 768px) {
  .blog-hero-title { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
  .section-blog-hero { padding: 120px 0 80px; }
  .blog-hero-title { font-size: 3.25rem; }
}

/* ── 30. BLOG — FILTRO ── */
.blog-filter-bar {
  background-color: var(--cinza-escuro-alt);
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  border-bottom: 1px solid rgba(249, 249, 249, 0.06);
  padding: 20px 0;
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  color: var(--lima);
  background: transparent;
  border: 2px solid var(--lima);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  line-height: 1;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--lima);
  color: var(--cinza-escuro);
}

/* ── 31. BLOG — GRID DE CARDS ── */
.section-blog-grid {
  background-color: var(--cinza-escuro-alt);
  padding: 56px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-empty {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--cinza);
  padding: 48px 0;
}

.card-blog {
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(249, 249, 249, 0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card-blog:hover {
  border-color: var(--lima);
  box-shadow: var(--shadow-hover);
}

.card-blog-img-link {
  display: block;
}

.card-blog-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  aspect-ratio: 16 / 9;
}

.card-blog-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition);
  aspect-ratio: 600 / 340;
  object-fit: cover;
}

.card-blog:hover .card-blog-img {
  transform: scale(1.03);
}

.card-blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cinza-escuro);
  background-color: var(--lima);
  padding: 4px 10px;
  border-radius: var(--radius-badge);
}

.card-blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-blog-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--branco);
  line-height: 1.3;
  margin: 0;
}

.card-blog-title a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

.card-blog-title a:hover {
  color: var(--lima);
}

.card-blog-excerpt {
  font-size: 0.875rem;
  color: var(--branco);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  margin-top: auto;
}

.card-blog-read-time {
  font-size: 0.75rem;
  color: var(--cinza);
}

.card-blog-link {
  padding: 8px 16px;
  border: 1.5px solid var(--lima);
  border-radius: 8px;
  color: var(--lima);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background 300ms ease, color 300ms ease;
  width: fit-content;
  margin-top: 8px;
}

.card-blog-link:hover {
  background: var(--lima);
  color: var(--cinza-escuro);
}

/* Card pequeno — artigos relacionados */
.card-blog--small .card-blog-title {
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .section-blog-grid { padding: 80px 0; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 32. BLOG — CTA FINAL ── */
.section-blog-cta {
  background-color: var(--cinza-fundo);
  padding: 80px 0;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  position: relative;
  overflow: hidden;
}

.section-blog-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/src/assets/bg/Pattern.png');
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.15;
  z-index: 0;
  filter: sepia(1) saturate(10) hue-rotate(20deg) brightness(1.5);
  pointer-events: none;
}

.section-blog-cta > * {
  position: relative;
  z-index: 1;
}

.blog-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 20px;
}

.blog-cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--branco);
  line-height: 1.2;
}

.blog-cta-subtitle {
  font-size: 1rem;
  color: var(--branco);
  line-height: 1.7;
  margin-top: -4px;
}

.blog-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .blog-cta-title { font-size: 2.25rem; }
  .blog-cta-actions { flex-direction: row; justify-content: center; }
}

@media (min-width: 1024px) {
  .section-blog-cta { padding: 112px 0; }
}

/* ── 33. ARTIGO — LAYOUT ── */
.article-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 80px;
}

@media (min-width: 1024px) {
  .article-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    padding-top: 56px;
    padding-bottom: 96px;
  }
}

/* ── 34. ARTIGO — BREADCRUMB ── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: var(--cinza);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--cinza);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--lima);
}

.breadcrumb span[aria-current="page"] {
  color: var(--branco);
}

/* ── 35. ARTIGO — HEADER ── */
.article-header {
  margin-bottom: 40px;
}

.article-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--branco);
  line-height: 1.2;
  margin: 16px 0 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--cinza);
  margin-bottom: 28px;
}

.article-meta-sep {
  color: rgba(249, 249, 249, 0.2);
}

.article-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid rgba(217, 224, 33, 0.12);
  display: block;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .article-h1 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .article-h1 { font-size: 2.5rem; }
}

/* ── 36. ARTIGO — CONTEÚDO ── */
.article-content {
  flex: 1;
  min-width: 0;
  max-width: 760px;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.article-body p {
  font-size: 1rem;
  color: var(--branco);
  line-height: 1.8;
}

.article-h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--branco);
  line-height: 1.25;
  padding-left: 16px;
  border-left: 3px solid var(--lima);
  margin-top: 12px;
}

@media (min-width: 768px) {
  .article-h2 { font-size: 1.625rem; }
}

.article-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 16px 0;
}

.article-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.7;
}

.article-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--lima);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
}

.article-list li strong {
  color: var(--branco);
  font-weight: 700;
}

.article-blockquote {
  border-left: 3px solid var(--lima);
  background-color: rgba(217, 224, 33, 0.04);
  padding: 16px 20px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--branco);
  line-height: 1.7;
  margin: 4px 0;
}

/* Tabela comparativa no artigo */
.article-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-card);
}

.article-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
}

.article-table thead th {
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--branco);
  background-color: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(249, 249, 249, 0.08);
  text-align: left;
}

.article-table thead th.col-highlight {
  color: var(--lima);
  background-color: rgba(217, 224, 33, 0.07);
  border-top: 2px solid var(--lima);
  border-left: 2px solid var(--lima);
  border-right: 2px solid var(--lima);
}

.article-table tbody td {
  padding: 12px 18px;
  font-size: 0.875rem;
  color: var(--cinza);
  border-bottom: 1px solid rgba(249, 249, 249, 0.05);
}

.article-table tbody td.col-highlight {
  border-left: 2px solid var(--lima);
  border-right: 2px solid var(--lima);
  background-color: rgba(217, 224, 33, 0.03);
  color: var(--branco);
}

.article-table tbody tr:last-child td.col-highlight {
  border-bottom: 2px solid var(--lima);
}

/* ── 37. ARTIGO — CTA INLINE ── */
.article-cta-inline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background-color: rgba(217, 224, 33, 0.04);
  border: 1px solid rgba(217, 224, 33, 0.2);
  border-radius: var(--radius-card);
  align-items: flex-start;
}

.article-cta-inline p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .article-cta-inline {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .article-cta-inline p {
    flex: 1;
    margin-right: 24px;
  }
}

/* ── 38. ARTIGO — CTA FINAL ── */
.article-cta-final {
  background-color: var(--cinza-fundo);
  border: 1px solid rgba(217, 224, 33, 0.18);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.article-cta-final-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--branco);
  line-height: 1.25;
}

.article-cta-final-text {
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.7;
}

.article-cta-final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .article-cta-final-actions { flex-direction: row; }
  .article-cta-final-title { font-size: 1.625rem; }
}

/* ── 39. ARTIGO — RELACIONADOS ── */
.article-related {
  padding-top: 48px;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
}

.article-related-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--branco);
  margin-bottom: 24px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .article-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 40. ARTIGO — SIDEBAR ── */
.article-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .article-sidebar {
    display: block;
    width: 240px;
    flex-shrink: 0;
    position: static;
    top: auto;
    align-self: flex-start;
  }
}

.sidebar-social {
  background: var(--cinza-escuro);
  border: 1px solid color-mix(in srgb, var(--branco) 6%, transparent);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-social-title,
.sidebar-related-title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cinza);
  margin-bottom: 16px;
}

.sidebar-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--branco);
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 500;
  background: color-mix(in srgb, var(--branco) 3%, transparent);
  border: 1px solid color-mix(in srgb, var(--branco) 6%, transparent);
  transition: border-color 300ms ease, background 300ms ease;
}

.sidebar-social-item:hover:not(.sidebar-social-item--soon) {
  border-color: color-mix(in srgb, var(--lima) 30%, transparent);
  background: color-mix(in srgb, var(--lima) 5%, transparent);
}

.sidebar-social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(89%) sepia(43%) saturate(800%) hue-rotate(10deg) brightness(95%);
}

.sidebar-social-item--soon {
  opacity: 0.5;
  cursor: not-allowed;
  justify-content: space-between;
}

.sidebar-social-platform {
  font-size: 13px;
  color: var(--cinza);
}

.sidebar-social-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cinza);
  background: color-mix(in srgb, var(--branco) 6%, transparent);
  padding: 2px 8px;
  border-radius: 4px;
}

.sidebar-related {
  background: var(--cinza-escuro);
  border: 1px solid color-mix(in srgb, var(--branco) 6%, transparent);
  border-radius: 12px;
  padding: 20px;
}

.sidebar-related-empty {
  font-size: 12px;
  color: var(--cinza);
  font-style: italic;
  text-align: center;
  padding: 16px 0;
}

/* ── 41. UTILITÁRIO — SR-ONLY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── 42. SOBRE — HERO ── */
.section-about-hero {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 96px 0 72px;
  overflow: hidden;
}

#sobre-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section-about-hero > *:not(#sobre-hero-canvas) {
  position: relative;
  z-index: 1;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--branco);
  margin-bottom: 20px;
}

.about-hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--branco);
  max-width: 600px;
}

@media (min-width: 768px) {
  .about-hero-title { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
  .section-about-hero { padding: 120px 0 96px; }
  .about-hero-title { font-size: 3.25rem; }
}

/* ── 43. SOBRE — MISSÃO VISÃO VALORES ── */
.section-mvv {
  background-color: var(--cinza-escuro-alt);
  padding: 56px 0;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .about-mvv-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Container do card */
.card-mvv {
  perspective: 1000px;
  height: 280px;
  cursor: pointer;
}

/* Wrapper que gira */
.card-mvv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-mvv:hover .card-mvv-inner,
.card-mvv.is-flipped .card-mvv-inner {
  transform: rotateY(180deg);
}

/* Estilos compartilhados frente e verso */
.card-mvv-front,
.card-mvv-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* FRENTE */
.card-mvv-front {
  background: #1a1a18;
  border: 1px solid rgba(217, 224, 33, 0.15);
  text-align: center;
}

.card-mvv:hover .card-mvv-front,
.card-mvv.is-flipped .card-mvv-front {
  border-color: var(--lima);
}

.card-mvv-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 224, 33, 0.06);
  border-radius: 50%;
  border: 1px solid rgba(217, 224, 33, 0.2);
  margin-bottom: 8px;
}

.card-mvv-icon {
  width: 36px;
  height: 36px;
}

.card-mvv-front-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--lima);
  letter-spacing: 0.5px;
}

.card-mvv-hint {
  font-size: 11px;
  color: var(--cinza);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

/* VERSO */
.card-mvv-back {
  background: var(--lima);
  transform: rotateY(180deg);
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px;
  gap: 12px;
}

.card-mvv-back-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 4px;
}

.card-mvv-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cinza-escuro);
}

.card-mvv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-mvv-list li {
  color: var(--cinza-escuro);
  font-size: 13px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.card-mvv-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cinza-escuro);
  font-weight: 700;
  font-family: var(--font-heading);
}

@media (min-width: 1024px) {
  .section-mvv { padding: 96px 0; }
}

/* ── 44. SOBRE — QUEM SOMOS ── */
.section-about-who {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 56px 0;
  overflow: hidden;
}

.hero-pattern--soft {
  opacity: 0.06;
}

.about-who-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-who-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-who-text p {
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.8;
}

.about-photo-wrapper {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--lima);
}

.about-estande-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 400ms ease;
}

.about-photo-wrapper:hover .about-estande-img {
  transform: scale(1.02);
}

@media (max-width: 1023px) {
  .about-who-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about-photo-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .section-about-who { padding: 96px 0; }

  .about-who-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
  }
}

.about-incubadora-photo {
  width: 100%;
  max-width: 360px;
  margin: 24px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--lima);
}

.about-incubadora-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 400ms ease;
}

.about-incubadora-photo:hover .about-incubadora-img {
  transform: scale(1.02);
}

@media (max-width: 1023px) {
  .about-incubadora-photo {
    max-width: 280px;
  }
}

/* ── 45. SOBRE — INCUBADORA ── */
.section-about-incubadora {
  background-color: var(--cinza-fundo);
  padding: 56px 0;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  border-bottom: 1px solid rgba(249, 249, 249, 0.06);
}

.about-incubadora-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-incubadora-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-incubadora-text p {
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.8;
}

.incubadora-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(217, 224, 33, 0.2);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-start;
}

.incubadora-card-icon {
  margin-bottom: 8px;
}

.incubadora-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(89%) sepia(55%) saturate(621%) hue-rotate(10deg) brightness(106%) contrast(98%);
}

.incubadora-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--branco);
}

.incubadora-city {
  font-size: 0.9375rem;
  color: var(--branco);
}

.incubadora-region {
  font-size: 0.875rem;
  color: var(--cinza);
}

.incubadora-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--lima);
  text-decoration: none;
  margin-top: 8px;
  transition: opacity var(--transition);
}

.incubadora-map-link:hover {
  opacity: 0.75;
}

@media (min-width: 1024px) {
  .section-about-incubadora { padding: 96px 0; }

  .about-incubadora-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .about-incubadora-text { flex: 1; }
  .incubadora-card { flex-shrink: 0; width: 280px; }
}

/* ── 46. SOBRE — EQUIPE ── */
.section-about-team {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 56px 0;
  overflow: hidden;
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card base — fechado */
.team-card {
  border-radius: 16px;
  background: var(--cinza-escuro);
  border: 1px solid color-mix(in srgb, var(--branco) 6%, transparent);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 88px;
}

/* Card ativo */
.team-card--active {
  max-height: 400px;
  border-color: color-mix(in srgb, var(--lima) 30%, transparent);
  cursor: default;
}

/* Body horizontal */
.team-card-body {
  display: flex;
  align-items: stretch;
  height: 100%;
  min-height: 88px;
}

/* Lado esquerdo — texto */
.team-card-left {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
}

/* Nome — sempre visível */
.team-card-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Cargo */
.team-card-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lima);
  font-family: var(--font-heading);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease 0.1s, max-height 0.3s ease;
}

.team-card--active .team-card-role {
  opacity: 1;
  max-height: 40px;
}

/* Descrição */
.team-card-desc {
  color: color-mix(in srgb, var(--branco) 70%, transparent);
  font-size: 13px;
  line-height: 1.7;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease 0.15s, max-height 0.4s ease;
}

.team-card--active .team-card-desc {
  opacity: 1;
  max-height: 200px;
}

/* LinkedIn */
.team-card-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lima);
  color: var(--cinza-escuro);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease 0.2s, max-height 0.3s ease, transform 200ms ease;
}

.team-card--active .team-card-linkedin {
  opacity: 1;
  max-height: 60px;
  pointer-events: all;
}

.team-card-linkedin:hover {
  opacity: 0.85 !important;
  transform: translateY(-1px);
}

.linkedin-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Lado direito — foto */
.team-card-right {
  width: 160px;
  flex-shrink: 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--cinza-escuro) 60%, black);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card--active .team-card-right {
  width: 220px;
}

/* Foto */
.team-card-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 400ms ease;
}

.team-card-photo-img--matheus { object-position: center 10%; }
.team-card-photo-img--gustavo { object-position: center 15%; }
.team-card-photo-img--joao    { object-position: center 10%; }
.team-card-photo-img--carlos  { object-position: center 15%; }

.team-card:hover .team-card-photo-img {
  transform: scale(1.04);
}

/* Mobile */
@media (max-width: 767px) {
  .team-card {
    max-height: 72px;
  }

  .team-card--active {
    max-height: 500px;
  }

  .team-card-body {
    flex-direction: column-reverse;
    min-height: 72px;
  }

  .team-card-right {
    width: 100%;
    height: 0;
    transition: height 0.5s ease;
  }

  .team-card--active .team-card-right {
    width: 100%;
    height: 220px;
  }

  .team-card-left {
    padding: 16px 20px;
  }

  .team-card-name {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .section-about-team { padding: 96px 0; }
}

/* ── 47. SOBRE — METODOLOGIA ── */
.section-about-method {
  background-color: var(--cinza-fundo);
  padding: 56px 0;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  position: relative;
  overflow: hidden;
}

#sobre-methodology-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section-about-method > *:not(#sobre-methodology-canvas) {
  position: relative;
  z-index: 1;
}

.methodology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.methodology-item {
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(249, 249, 249, 0.07);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition);
}

.methodology-item:hover {
  border-color: var(--lima);
}

.methodology-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--lima);
  line-height: 1;
}

.methodology-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--branco);
}

.methodology-text {
  font-size: 0.875rem;
  color: var(--branco);
  line-height: 1.65;
}

.methodology-cta {
  text-align: center;
}

.methodology-process-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--lima);
  text-decoration: none;
  transition: opacity var(--transition);
}

.methodology-process-link:hover {
  opacity: 0.75;
}

@media (min-width: 768px) {
  .methodology-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .section-about-method { padding: 96px 0; }
  .methodology-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── 48. SOBRE — CTA FINAL ── */
.section-about-cta {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 80px 0;
  overflow: hidden;
}

.section-about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/src/assets/bg/Pattern.png');
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.15;
  z-index: 0;
  filter: sepia(1) saturate(10) hue-rotate(20deg) brightness(1.5);
  pointer-events: none;
}

.section-about-cta > * {
  position: relative;
  z-index: 1;
}

.about-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.about-cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--branco);
  line-height: 1.2;
}

.about-cta-subtitle {
  font-size: 1rem;
  color: var(--branco);
  line-height: 1.7;
  margin-top: -8px;
}

.social-links-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

.social-link-icon:hover {
  opacity: 0.75;
}

.about-social-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(89%) sepia(55%) saturate(621%) hue-rotate(10deg) brightness(106%) contrast(98%);
  display: block;
}

.about-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-cta-title { font-size: 2.25rem; }
  .about-cta-actions { flex-direction: row; justify-content: center; }
}

@media (min-width: 1024px) {
  .section-about-cta { padding: 112px 0; }
  .about-cta-title { font-size: 2.75rem; }
}

/* ══════════════════════════════════════════════════════════════
   PÁGINA CLIENTES — /clientes
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.section-clients-hero {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 80px 0 0;
  overflow: hidden;
}

.clients-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
}

.clients-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--branco);
  line-height: 1.15;
  max-width: 640px;
}

.clients-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--branco);
  line-height: 1.7;
  max-width: 560px;
}

/* Faixa de números no hero */
.clients-hero-numbers {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: var(--cinza-fundo);
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  border-radius: 0;
  padding: 0;
  width: 100%;
}

.clients-hero-number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  flex: 1;
}

.clients-hero-number-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--lima);
  line-height: 1;
  margin-bottom: 6px;
}

.clients-hero-number-label {
  font-size: 0.8125rem;
  color: var(--branco);
  line-height: 1.4;
}

.clients-hero-number-divider {
  display: none;
}

@media (min-width: 768px) {
  .clients-hero-title { font-size: 2.5rem; }
  .clients-hero-numbers {
    flex-direction: row;
    align-items: stretch;
  }
  .clients-hero-number-divider {
    display: block;
    width: 1px;
    background-color: rgba(249, 249, 249, 0.08);
    align-self: stretch;
    flex-shrink: 0;
  }
  .clients-hero-number-item { padding: 36px 24px; }
  .clients-hero-number-value { font-size: 2rem; }
}

@media (min-width: 1024px) {
  .section-clients-hero { padding: 96px 0 0; }
  .clients-hero-title { font-size: 3rem; }
  .clients-hero-content { margin-bottom: 64px; }
  .clients-hero-number-item { padding: 40px 32px; }
  .clients-hero-number-value { font-size: 2.25rem; }
}

/* ── FILTROS ── */
.section-cases-filters {
  background-color: var(--cinza-fundo);
  padding: 32px 0;
  border-bottom: 1px solid rgba(249, 249, 249, 0.06);
}

.filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cinza);
  flex-shrink: 0;
}

.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: var(--radius-badge);
  border: 1px solid var(--lima);
  background-color: transparent;
  color: var(--lima);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  line-height: 1;
}

.filter-btn:hover {
  background-color: rgba(217, 224, 33, 0.15);
}

.filter-btn.active {
  background-color: var(--lima);
  color: var(--cinza-escuro);
}

.filter-btn:focus-visible {
  outline: 2px solid var(--lima);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .filters-wrapper { flex-direction: row; align-items: flex-start; gap: 32px; }
  .filter-group { flex-direction: row; align-items: center; gap: 12px; }
}

/* ── GRID DE CASES ── */
.section-cases-grid {
  background-color: var(--cinza-escuro);
  padding: 56px 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card-case-compact {
  background-color: var(--cinza-fundo);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition);
}

.card-case-compact:hover {
  border-color: var(--lima);
}

/* Transições de filtro */
.card-case-compact.is-hiding {
  animation: caseOut 200ms ease-out forwards;
}

.card-case-compact.is-showing {
  animation: caseIn 250ms ease-out forwards;
}

@keyframes caseOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.97); }
}

@keyframes caseIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* Header do card */
.card-case-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--lima);
  color: var(--cinza-escuro);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.case-header-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.case-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--branco);
  line-height: 1.2;
}

.case-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge-nicho,
.badge-servico {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-badge);
  line-height: 1.4;
}

.badge-nicho {
  background-color: rgba(217, 224, 33, 0.12);
  color: var(--lima);
  border: 1px solid rgba(217, 224, 33, 0.25);
}

.badge-servico {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--cinza);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Descrição — clientes page (cards compactos) */
.section-cases-grid .case-desc {
  font-size: 0.875rem;
  color: var(--cinza);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Métricas */
.case-metrics {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  border-bottom: 1px solid rgba(249, 249, 249, 0.06);
}

.case-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 8px;
}

.case-metric-item .metric-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--lima);
  line-height: 1.1;
  display: block;
}

.case-metric-item .metric-label {
  font-size: 0.6875rem;
  color: var(--branco);
  line-height: 1.3;
  margin-top: 4px;
  display: block;
}

.metric-divider {
  width: 1px;
  background-color: rgba(249, 249, 249, 0.08);
  align-self: stretch;
  flex-shrink: 0;
}

/* Gráfico compacto */
.case-chart-small {
  background-color: rgba(0, 0, 0, 0.20);
  border-radius: 8px;
  padding: 12px 12px 8px;
  overflow: hidden;
}

.case-chart-svg {
  width: 100%;
  height: 56px;
  display: block;
}

.case-chart-line {
  fill: none;
  stroke: var(--lima);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-chart-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--cinza);
  margin-top: 6px;
  text-align: center;
}

/* Footer do card */
.case-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.case-period {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--cinza);
  font-weight: 500;
}

.case-cta {
  font-size: 0.8125rem;
  padding: 8px 16px;
  border-color: rgba(249, 249, 249, 0.2);
  color: var(--branco);
}

.case-cta:hover {
  border-color: var(--lima);
  color: var(--lima);
}

/* Mensagem sem resultados */
.no-results-msg {
  text-align: center;
  padding: 48px 16px;
  color: var(--cinza);
  font-family: var(--font-heading);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .case-metric-item .metric-value { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
  .section-cases-grid { padding: 80px 0; }
}

/* ── LOGOS DOS CLIENTES ── */
.section-clients-logos {
  background-color: var(--cinza-fundo);
  padding: 56px 0;
}

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: border-color var(--transition), opacity var(--transition);
  cursor: default;
  min-height: 80px;
}

.logo-placeholder:hover {
  border-color: var(--lima);
}

.logo-placeholder-initials {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lima);
  line-height: 1;
}

.logo-placeholder-name {
  font-size: 0.6875rem;
  color: var(--cinza);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .clients-logo-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (min-width: 1024px) {
  .section-clients-logos { padding: 80px 0; }
  .clients-logo-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ── DEPOIMENTOS ── */
.section-testimonials {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 56px 0;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card-testimonial {
  position: relative;
  background-color: var(--cinza-fundo);
  border-radius: var(--radius-card);
  border-left: 3px solid var(--lima);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-source {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cinza);
  font-family: var(--font-heading);
}

.testimonial-stars {
  color: var(--lima);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--lima);
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.7;
  quotes: none;
  padding-right: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(217, 224, 33, 0.15);
  border: 1px solid rgba(217, 224, 33, 0.30);
  color: var(--lima);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--branco);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--cinza);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .section-testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.section-clients-carousel .testimonials-grid {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid color-mix(in srgb, var(--lima) 15%, transparent);
}

/* ── CTA FINAL ── */
.section-clients-cta {
  position: relative;
  background-color: var(--cinza-escuro);
  padding: 80px 0;
  overflow: hidden;
}

.clients-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

.clients-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .clients-cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .section-clients-cta { padding: 112px 0; }
}

/* ══════════════════════════════════════════════════════
   DASHBOARD — MINI PAINEL NO HERO
   ══════════════════════════════════════════════════════ */

/* Container geral do painel */
.dashboard-container {
  background: #111100;
  border: 1px solid rgba(217, 224, 33, 0.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4);
  margin-top: 48px;
}

/* ── Header do dashboard ── */
.dashboard-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(217, 224, 33, 0.1);
}

.dashboard-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--branco);
  margin: 0;
}

/* Badge AO VIVO piscando */
.dashboard-live-badge {
  background: rgba(217, 224, 33, 0.12);
  border: 1px solid rgba(217, 224, 33, 0.35);
  color: var(--lima);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 100px;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ── Filtros ── */
.dashboard-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--lima);
  color: var(--lima);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.4;
}

.filter-btn.active {
  background: var(--lima);
  color: var(--cinza-escuro);
  font-weight: 700;
  border-color: var(--lima);
}

.filter-btn:hover:not(.active) {
  background: rgba(217, 224, 33, 0.1);
}

/* ── Cards de métricas — 2 colunas mobile ── */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.card-metric {
  background: #1a1a18;
  border-top: 2px solid var(--lima);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-icon {
  color: var(--lima);
  line-height: 0;
  margin-bottom: 4px;
}

.card-metric .metric-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-metric .metric-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  transition: opacity 0.15s;
}

.metric-change {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 2px;
}

.metric-change--up   { color: #4caf50; }
.metric-change--down { color: #4caf50; } /* queda no custo = bom */

/* ── Funil AARRR ── */
.funnel-dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

/* Larguras decrescentes — mobile first (funnel suave) */
.funnel-stage[data-stage="0"] { --fw: 100%; }
.funnel-stage[data-stage="1"] { --fw: 93%; }
.funnel-stage[data-stage="2"] { --fw: 84%; }
.funnel-stage[data-stage="3"] { --fw: 75%; }
.funnel-stage[data-stage="4"] { --fw: 66%; }

.funnel-stage {
  width: var(--fw, 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Opacidades decrescentes por etapa */
.funnel-stage[data-stage="0"] .funnel-stage-bar { background: rgba(217, 224, 33, 1.0); }
.funnel-stage[data-stage="1"] .funnel-stage-bar { background: rgba(217, 224, 33, 0.85); }
.funnel-stage[data-stage="2"] .funnel-stage-bar { background: rgba(217, 224, 33, 0.70); }
.funnel-stage[data-stage="3"] .funnel-stage-bar { background: rgba(217, 224, 33, 0.55); }
.funnel-stage[data-stage="4"] .funnel-stage-bar { background: rgba(217, 224, 33, 0.40); }

.funnel-stage-bar {
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
  padding: 10px 20px 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  box-sizing: border-box;
}

.funnel-stage-letter {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cinza-escuro);
  min-width: 18px;
  flex-shrink: 0;
  text-align: center;
}

.funnel-stage-icon {
  color: rgba(43, 42, 41, 0.6);
  flex-shrink: 0;
  display: none; /* aparece no tablet */
}

.funnel-stage-content {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.funnel-stage-name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cinza-escuro);
  white-space: nowrap;
}

.funnel-stage-value {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--cinza-escuro);
  white-space: nowrap;
}

.funnel-stage-sublabel {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: rgba(43, 42, 41, 0.6);
  white-space: nowrap;
}

/* Barra de progresso da etapa */
.funnel-stage-progress {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.funnel-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--lima);
  border-radius: 3px;
  transition: width 0.4s ease-out;
  min-width: 4px;
}

/* Seta entre etapas */
.funnel-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(93, 94, 93, 0.6);
  padding: 2px 0;
  align-self: flex-start;
  padding-left: 4%;
}

.funnel-arrow-pct {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--cinza);
}

/* Nota de dados simulados */
.dashboard-disclaimer {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--cinza);
  text-align: center;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── Tablet (768px+) ── */
@media (min-width: 768px) {
  .dashboard-container { padding: 28px; }

  .dashboard-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }

  .dashboard-title-group { flex-shrink: 0; }

  .dashboard-filters {
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .funnel-stage[data-stage="0"] { --fw: 100%; }
  .funnel-stage[data-stage="1"] { --fw: 90%; }
  .funnel-stage[data-stage="2"] { --fw: 78%; }
  .funnel-stage[data-stage="3"] { --fw: 65%; }
  .funnel-stage[data-stage="4"] { --fw: 52%; }

  .funnel-stage-icon  { display: block; }
  .funnel-stage-name  { font-size: 0.875rem; }
  .funnel-stage-value { font-size: 1.0625rem; }
  .funnel-stage-sublabel { font-size: 0.6875rem; }
  .funnel-stage-letter { font-size: 1.25rem; min-width: 22px; }

  .funnel-stage-bar {
    padding: 12px 28px 12px 18px;
    min-height: 54px;
  }
}

/* ── Overrides compactos dentro do hero ── */

/* Scrollbar discreta no container do hero */
.hero-visual .dashboard-container {
  width: 100%;
  max-height: 520px;
  overflow-y: auto;
  border-color: rgba(217, 224, 33, 0.3);
  padding: 20px;
}

.hero-visual .dashboard-container::-webkit-scrollbar       { width: 4px; }
.hero-visual .dashboard-container::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); }
.hero-visual .dashboard-container::-webkit-scrollbar-thumb {
  background: rgba(217, 224, 33, 0.3);
  border-radius: 2px;
}

/* Cards compactos: 2x2 sempre, padding e fonte reduzidos */
.hero-visual .card-metric        { padding: 12px; }
.hero-visual .metric-value       { font-size: 1.0625rem; }
.hero-visual .metric-label       { font-size: 0.6rem; }
.hero-visual .metric-change      { font-size: 0.65rem; }

/* Funil compacto */
.hero-visual .funnel-stage-bar   { min-height: 44px; padding: 8px 16px 8px 12px; }
.hero-visual .funnel-stage-icon  { display: none; }
.hero-visual .funnel-stage-letter  { font-size: 0.9375rem; min-width: 14px; }
.hero-visual .funnel-stage-name    { font-size: 0.6875rem; }
.hero-visual .funnel-stage-value   { font-size: 0.8125rem; }
.hero-visual .funnel-stage-sublabel { font-size: 0.5625rem; }
.hero-visual .funnel-arrow-pct     { font-size: 0.5625rem; }
.hero-visual .dashboard-disclaimer { font-size: 0.625rem; }

/* No mobile, manter 768px funnel widths desativados dentro do hero */
@media (max-width: 1023px) {
  .hero-visual .funnel-stage[data-stage="0"] { --fw: 100%; }
  .hero-visual .funnel-stage[data-stage="1"] { --fw: 93%; }
  .hero-visual .funnel-stage[data-stage="2"] { --fw: 84%; }
  .hero-visual .funnel-stage[data-stage="3"] { --fw: 75%; }
  .hero-visual .funnel-stage[data-stage="4"] { --fw: 66%; }
}

@media (min-width: 1024px) {
  /* No desktop, o dashboard ocupa a coluna do hero —
     manter 2x2 grid nos cards (não expandir para 4 colunas) */
  .hero-visual .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════
   TOAST DE CONFIRMAÇÃO
   ══════════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #1e1d1c;
  border: 1px solid rgba(217, 224, 33, 0.25);
  border-left: 3px solid var(--lima);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  z-index: 9999;
  /* Estado inicial — oculto abaixo da tela */
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
  pointer-events: none;
}

.toast--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast--hiding {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease-in, opacity 0.25s ease-in;
}

.toast__icon {
  color: var(--lima);
  flex-shrink: 0;
  line-height: 0;
  margin-top: 2px;
}

.toast__body {
  flex: 1;
  min-width: 0;
}

.toast__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 4px;
}

.toast__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--cinza);
  line-height: 1.5;
}

.toast__close {
  background: none;
  border: none;
  color: var(--cinza);
  cursor: pointer;
  line-height: 0;
  padding: 2px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: color 0.15s ease;
}

.toast__close:hover { color: var(--branco); }

/* Mobile: largura total com margens */
@media (max-width: 480px) {
  .toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

/* ── BOTÃO FLUTUANTE DE TROCA DE PERSONA ── */
.persona-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
  pointer-events: none;
}

.persona-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.persona-float-card {
  background: rgba(26, 26, 24, 0.95);
  border: 1px solid rgba(217, 224, 33, 0.25);
  border-radius: 10px;
  padding: 8px 10px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.persona-float-title {
  color: var(--cinza);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  padding: 0 2px;
}

.persona-float-toggle {
  display: flex;
  gap: 4px;
}

.persona-float-opt {
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(217, 224, 33, 0.2);
  background: transparent;
  color: var(--cinza);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.persona-float-opt:hover {
  color: var(--branco);
  border-color: rgba(217, 224, 33, 0.5);
}

.persona-float-opt.is-active {
  background: var(--lima);
  color: var(--cinza-escuro);
  border-color: var(--lima);
  font-weight: 700;
}

@media (max-width: 767px) {
  .persona-float {
    bottom: 16px;
    right: 16px;
  }

  .persona-float-opt {
    font-size: 10px;
    padding: 5px 8px;
  }
}

/* ═══════════════════════════════════════════════════
   GROWTH LAB
   ═══════════════════════════════════════════════════ */

/* ── HERO ── */
.section-lab-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--cinza-escuro);
}

.section-lab-hero #growth-lab-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-lab-hero > * {
  position: relative;
  z-index: 1;
}

.lab-hero-content {
  max-width: 720px;
}

.lab-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.12;
  margin: 16px 0 20px;
}

.lab-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--cinza);
  line-height: 1.7;
  max-width: 560px;
}

/* ── INTRO ── */
.section-lab-intro {
  padding: 80px 0;
  background: color-mix(in srgb, var(--cinza-escuro) 60%, black);
}

.lab-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .lab-intro-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.card-lab-intro {
  background: color-mix(in srgb, var(--cinza-escuro) 80%, black);
  border: 1px solid color-mix(in srgb, var(--lima) 12%, transparent);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-lab-intro-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}

.card-lab-intro-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--branco);
}

.card-lab-intro-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cinza);
  line-height: 1.7;
  flex: 1;
}

/* ── RESOURCES SECTION ── */
.section-lab-resources {
  padding: 80px 0;
  background: var(--cinza-escuro);
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-resource {
  background: color-mix(in srgb, var(--cinza-escuro) 60%, black);
  border: 1px solid color-mix(in srgb, var(--lima) 8%, transparent);
  border-top: 2px solid var(--lima);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-resource:not(.card-resource--soon):hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.card-resource--soon {
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(30%);
}

.resource-tag-wrapper {
  margin-bottom: 4px;
}

.resource-tag {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

.resource-tag--available {
  background: color-mix(in srgb, var(--lima) 15%, transparent);
  color: var(--lima);
}

.resource-tag--soon {
  background: color-mix(in srgb, var(--cinza) 15%, transparent);
  color: var(--cinza);
}

.resource-tag--new {
  background: color-mix(in srgb, var(--lima) 20%, transparent);
  color: var(--lima);
  border: 1px solid color-mix(in srgb, var(--lima) 40%, transparent);
}

.card-resource-icon {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card-resource-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.3;
}

.card-resource-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cinza);
  line-height: 1.65;
  flex: 1;
}

.resource-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.resource-metric-item {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--branco);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
  display: block;
}

.resource-metric-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--lima);
  font-weight: 700;
}

.card-resource-cta {
  display: block;
  text-align: center;
  margin-top: auto;
}

/* ── EM BREVE ── */
.section-lab-soon {
  padding: 80px 0;
  background: color-mix(in srgb, var(--cinza-escuro) 60%, black);
}

.resource-badge--soon {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: var(--cinza);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-heading);
}

/* ── CTA FINAL ── */
.section-lab-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--cinza-escuro);
  border-top: 1px solid color-mix(in srgb, var(--lima) 15%, transparent);
  text-align: center;
}

.section-lab-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/src/assets/bg/Pattern.png');
  background-repeat: repeat;
  background-size: 300px;
  filter: sepia(1) saturate(10) hue-rotate(20deg) brightness(1.5);
  opacity: 0.15;
  z-index: 0;
}

.section-lab-cta > * {
  position: relative;
  z-index: 1;
}

.lab-cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.lab-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  margin: 0 0 20px;
}

.lab-cta-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cinza);
  line-height: 1.7;
  margin-bottom: 36px;
}

.lab-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 480px) {
  .lab-cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   CALCULADORA DE ROI
   ══════════════════════════════════════════════════════════════ */

/* ── HERO COMPACTO ── */
.section-roi-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 64px;
  background: var(--cinza-escuro);
}

.section-roi-hero #roi-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-roi-hero > * {
  position: relative;
  z-index: 1;
}

.roi-hero-content {
  max-width: 680px;
}

.roi-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.12;
  margin: 16px 0 20px;
}

.roi-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--cinza);
  line-height: 1.7;
  max-width: 520px;
}

/* ── SEÇÃO CALCULADORA ── */
.section-calculator {
  padding: 64px 0 80px;
  background: var(--cinza-escuro);
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .calculator-layout {
    grid-template-columns: 55% 1fr;
    gap: 40px;
    align-items: start;
  }
}

/* ── INPUTS ── */
.calculator-inputs {
  background: #1a1a18;
  border: 1px solid rgba(217,224,33,0.2);
  border-radius: 16px;
  padding: 28px;
}

@media (min-width: 768px) {
  .calculator-inputs {
    padding: 36px;
  }
}

.calculator-inputs-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--branco);
  margin: 0 0 6px;
}

.calculator-inputs-subtitle {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--cinza);
  margin: 0 0 28px;
}

.input-group {
  margin-bottom: 20px;
}

.input-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--branco);
  margin-bottom: 8px;
  font-weight: 500;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cinza);
  pointer-events: none;
  z-index: 1;
}

.input-field {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px 12px 40px;
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 300ms ease, background 300ms ease;
  outline: none;
}

.input-field:focus {
  border-color: var(--lima);
  background: rgba(217,224,33,0.04);
}

.input-field::placeholder {
  color: var(--cinza);
}

.input-field::-webkit-inner-spin-button,
.input-field::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-select {
  padding-left: 16px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpolyline points='6,9 12,15 18,9' stroke='%235D5E5D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.input-select option {
  background: #1a1a18;
  color: var(--branco);
}

/* Tooltip */
.input-tooltip-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--cinza);
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.input-tooltip-btn:hover .tooltip-text {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tooltip-text {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #2f2f2c;
  color: var(--branco);
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 6px;
  width: 220px;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 10;
}

/* Toggle avançado */
.advanced-section {
  margin-bottom: 24px;
}

.advanced-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--lima);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: opacity 200ms ease;
}

.advanced-toggle:hover {
  opacity: 0.8;
}

.advanced-toggle-icon {
  transition: transform 300ms ease;
}

.advanced-toggle[aria-expanded="true"] .advanced-toggle-icon {
  transform: rotate(180deg);
}

.advanced-fields {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.advanced-fields[hidden] {
  display: none;
}

/* Botão calcular */
.btn-calcular {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

/* ── RESULTADO ── */
.calculator-result {
  background: #1a1a18;
  border: 1px solid rgba(217,224,33,0.2);
  border-radius: 16px;
  padding: 28px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .calculator-result {
    padding: 36px;
  }
}

/* Estado vazio */
.result-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.result-empty-icon {
  color: var(--lima);
  opacity: 0.5;
}

.result-empty-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cinza);
  line-height: 1.6;
  border: 1.5px dashed rgba(217,224,33,0.3);
  padding: 24px 20px;
  border-radius: 12px;
  max-width: 260px;
}

/* Estado ativo */
.result-active {
  width: 100%;
}

.result-active[hidden] {
  display: none;
}

/* ROI principal */
.result-roi-block {
  text-align: center;
  margin-bottom: 24px;
}

.result-roi-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cinza);
  margin-bottom: 4px;
}

.result-roi-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--lima);
  transition: color 300ms ease;
}

.result-roi-value.result-roi--positive {
  color: #4ade80;
}

.result-roi-value.result-roi--negative {
  color: #f87171;
}

/* Gauge */
.result-gauge {
  margin-bottom: 24px;
}

.gauge-track {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}

.gauge-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  transition: width 800ms ease, background 400ms ease;
  background: #f87171;
}

.gauge-fill.gauge--low     { background: #fbbf24; }
.gauge-fill.gauge--good    { background: #4ade80; }
.gauge-fill.gauge--great   { background: var(--lima); }

.gauge-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--cinza);
}

/* Cards de métricas */
.result-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .result-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

.result-metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-metric-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--cinza);
  line-height: 1.4;
}

.result-metric-value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--branco);
}

.result-metric-sublabel {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--cinza);
}

.result-metric-variation {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
}

.result-metric-variation.is-positive { color: #4ade80; }
.result-metric-variation.is-negative  { color: #f87171; }

/* Interpretação */
.result-interpretation {
  background: rgba(217,224,33,0.06);
  border: 1px solid rgba(217,224,33,0.15);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
}

.result-interpretation-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--branco);
  line-height: 1.65;
  margin: 0;
}

/* Benchmark */
.result-benchmark {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--cinza);
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
}

/* ── ARTIGO EDUCATIVO ── */
.section-roi-article {
  padding: 80px 0;
  background: var(--cinza-escuro);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.roi-article-content {
  max-width: 720px;
}

.roi-article-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  margin: 0 0 48px;
}

.roi-article-block {
  margin-bottom: 40px;
}

.roi-article-block:last-child {
  margin-bottom: 0;
}

.roi-article-h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lima);
  margin: 0 0 10px;
}

.roi-article-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.75;
  margin: 0 0 12px;
}

.roi-article-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--lima);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 200ms ease;
}

.roi-article-link:hover {
  opacity: 0.75;
}

/* ── MAIS CALCULADORAS ── */
.section-more-calculators {
  padding: 64px 0 80px;
  background: #1a1a18;
}

.more-calculators-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .more-calculators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-calculator {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 300ms ease;
}

.card-calculator:hover {
  border-color: rgba(217,224,33,0.3);
}

.card-calculator-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-calculator-icon {
  width: 48px;
  height: 48px;
  background: rgba(217,224,33,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lima);
  flex-shrink: 0;
}

.card-calculator-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--branco);
  margin: 0;
}

.card-calculator-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cinza);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.card-calculator-cta {
  align-self: flex-start;
  font-size: 0.875rem;
  padding: 10px 18px;
}

/* ── CTA FINAL ── */
.section-roi-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--cinza-escuro);
  text-align: center;
}

.roi-cta-pattern {
  position: absolute;
  inset: 0;
  background-image: url('/src/assets/bg/Pattern.png');
  background-size: 400px;
  opacity: 0.15;
  mix-blend-mode: luminosity;
  filter: hue-rotate(40deg) saturate(3);
  pointer-events: none;
}

.roi-cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.roi-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  margin: 0 0 16px;
}

.roi-cta-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cinza);
  line-height: 1.7;
  margin: 0 0 36px;
}

.roi-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 480px) {
  .roi-cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}
