/* =====================================================
   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);
}

.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;
}

.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. LOGOS DE CLIENTES ── */
.section-clients-logos {
  background-color: var(--cinza-escuro);
  padding: 48px 0;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
}

.clients-logos-header {
  text-align: center;
  margin-bottom: 32px;
}

.clients-logos-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cinza);
}

/* Grid de logos — 2 colunas mobile */
.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

/* Item de logo — placeholder estilizado */
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  background: rgba(249, 249, 249, 0.03);
  border: 1px solid rgba(249, 249, 249, 0.08);
  border-radius: 10px;
  padding: 20px 24px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  opacity: 0.5;
  /* Quando houver <img> dentro: filter grayscale */
}

.client-logo-item:hover {
  background: rgba(217, 224, 33, 0.04);
  border-color: rgba(217, 224, 33, 0.3);
  opacity: 1;
}

/* Texto-placeholder do logo */
.client-logo-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 0.01em;
}

/* Imagens de logo reais (quando disponíveis) */
.client-logo-item img {
  max-width: 120px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  transition: filter 0.25s ease;
}

.client-logo-item:hover img {
  filter: grayscale(0) brightness(1);
}

/* Botão de ação */
.clients-logos-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Tablet */
@media (min-width: 768px) {
  .clients-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 720px;
    gap: 16px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .section-clients-logos { padding: 64px 0; }

  .clients-logos-grid {
    max-width: 860px;
    gap: 20px;
  }

  .client-logo-item { min-height: 88px; }
}

/* ── 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;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.carousel-logo {
  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;
}

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

.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);
}

.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;
  border-bottom: 1px solid rgba(249, 249, 249, 0.06);
}

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

.case-segment {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--cinza);
  background-color: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-badge);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-case-body {
  padding: 24px;
}

.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: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
}

.metric {
  text-align: center;
}

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

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

.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 {
  text-align: center;
}

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

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

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

  .process-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }

  .process-video {
    width: 42%;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
  }

  .process-phases {
    flex: 1;
    grid-template-columns: 1fr;
  }
}

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

.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);
}

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

.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;
}

.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;
}

.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: 40px;
  padding: 64px 0 40px;
}

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

.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: 20px;
}

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

.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: 16px;
  margin-bottom: 24px;
}

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

.footer-contact-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.6;
  flex-shrink: 0;
}

.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-meeting-btn {
  align-self: flex-start;
}

/* Faixa legal */
.footer-legal {
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  padding: 24px 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-logo--img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carousel-brand-img {
  height: 28px;
  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-logo--img:hover .carousel-brand-img {
  filter: grayscale(0%) brightness(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;
}

.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: inline-flex;
  border: 2px solid var(--lima);
  border-radius: var(--radius-btn);
  overflow: hidden;
}

.toggle-btn {
  padding: 11px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--lima);
  background: transparent;
  border: none;
  cursor: pointer;
  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:focus-visible {
  outline: 2px solid var(--lima);
  outline-offset: 2px;
}

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

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

.module-row {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(249, 249, 249, 0.06);
}

.module-row:last-child {
  border-bottom: none;
}

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

.module-visual {
  width: 100%;
}

.module-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  border: 1px solid rgba(217, 224, 33, 0.15);
  display: block;
}

/* 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;
  }

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

/* ── 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 {
  background-color: var(--cinza-fundo);
  padding: 80px 0;
}

.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; }
}

/* ── 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-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;
}

.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 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--lima);
  text-decoration: none;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.card-blog-link:hover {
  opacity: 0.8;
}

/* 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);
}

.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%;
  height: auto;
  border-radius: var(--radius-card);
  border: 1px solid rgba(217, 224, 33, 0.12);
  display: block;
}

@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: 12px;
  padding: 0;
}

.article-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.7;
}

.article-list li::before {
  content: "✓";
  color: var(--lima);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.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: sticky;
    top: 96px;
    align-self: flex-start;
  }
}

.article-sidebar-card {
  background-color: rgba(217, 224, 33, 0.04);
  border: 1px solid rgba(217, 224, 33, 0.2);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.3;
}

.sidebar-card-text {
  font-size: 0.875rem;
  color: var(--cinza);
  line-height: 1.65;
}

.sidebar-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.8125rem;
  padding: 11px 16px;
}

/* ── 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;
}

.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: 20px;
}

.card-mvv {
  background-color: var(--cinza-fundo);
  border-top: 3px solid var(--lima);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-mvv-icon {
  color: var(--lima);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

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

.card-mvv-text {
  font-size: 0.9375rem;
  color: var(--branco);
  line-height: 1.7;
}

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

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

.card-mvv-list li::before {
  content: "✓";
  color: var(--lima);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

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

@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-numbers-box {
  background-color: var(--cinza-fundo);
  border: 1px solid rgba(217, 224, 33, 0.2);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-number-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
}

.about-number-divider {
  height: 1px;
  background-color: rgba(249, 249, 249, 0.08);
}

.about-number-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--lima);
  line-height: 1.1;
}

.about-number-value--sm {
  font-size: 1.25rem;
}

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

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

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

  .about-who-text { flex: 0 0 58%; }

  .about-numbers-box {
    flex: 1;
    align-self: stretch;
    justify-content: center;
  }

  .about-number-value { font-size: 2rem; }
}

/* ── 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-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card-team {
  background-color: var(--cinza-fundo);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

.card-team--founder {
  border-color: rgba(217, 224, 33, 0.35);
}

.card-team--founder:hover {
  border-color: var(--lima);
}

.card-team-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.team-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  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;
  letter-spacing: 0.02em;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.team-role {
  font-size: 0.8125rem;
  color: var(--lima);
  font-family: var(--font-heading);
  font-weight: 500;
}

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

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--cinza);
  text-decoration: none;
  transition: color var(--transition);
  align-self: flex-start;
  margin-top: auto;
}

.team-linkedin:hover {
  color: var(--lima);
}

.team-linkedin-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity var(--transition);
}

.team-linkedin:hover .team-linkedin-icon {
  opacity: 1;
}

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

@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);
}

.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;
}

.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 */
.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-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); }
}

/* ── 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;
}

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

.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;
  }
}
