/* ===== Font ===== */
@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@400;500;600;700&display=swap');

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  background: var(--color-bg);
}
body {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-family: 'Saira Semi Condensed', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  text-align: left;
}


/* ===== Variables ===== */
:root {
  --color-bg: #0c0c0c;
  --color-surface: #0c0c0c;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.78);
  --color-accent: #28AA6D;
  --color-accent-hover: #1e8f5a;
  --color-accent-light: rgba(40, 170, 109, 0.22);
  --color-border: rgba(255, 255, 255, 0.12);
  --color-hero-text: #ffffff;
  --color-hero-bg: #0c0c0c;
  --color-hero-muted: rgba(255, 255, 255, 0.78);
  --radius: 12px;
  --radius-lg: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
  --container: min(1120px, 100% - 2rem);
  /* Espaçamento vertical entre blocos da landing (seções completas) */
  --section-padding-y: 5.5rem;
  /* Faixa compacta (ex.: stats abaixo da hero) — metade do ritmo visual das seções */
  --section-padding-y-compact: 2.5rem;
  --header-height: 72px;
  --mode-bar-height: 0px;
}

body.has-mode-bar {
  --mode-bar-height: 44px;
}

/* Sem barra de menu fixa: só faixa verde + hero */
body.has-no-header {
  --header-height: 0px;
}

@media (max-width: 768px) {
  :root {
    --section-padding-y: 3.5rem;
    --section-padding-y-compact: 2rem;
  }
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  box-sizing: border-box;
}
.container-narrow { margin-inline: auto; }

/* ===== Barra modo (parceria / cursos) ===== */
.mode-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: flex;
  align-items: stretch;
  min-height: 44px;
  background: var(--color-accent);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}
.mode-bar-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.mode-bar-link:last-child {
  border-right: none;
}
.mode-bar-link:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.08);
}
.mode-bar-link.is-active {
  color: #fff;
  background: rgba(0, 0, 0, 0.14);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: var(--mode-bar-height);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 100;
  }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.footer .logo-img {
  height: 32px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav li,
.nav .menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  border-radius: var(--radius);
}
.nav a:hover { color: var(--color-text); }

.nav-cta {
  padding: 0.5rem 1.1rem;
  background: linear-gradient(135deg, #28AA6D, rgba(40, 170, 109, 0.5), #1e8f5a, #28AA6D);

}

.nav-cta:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

/* Header quando a página é rolada */
.header-scrolled {
  background: var(--color-bg);
  backdrop-filter: blur(12px);

}

/* Dropdown: Soluções e Tecnologias (apenas links abaixo no menu) */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-link-toggle {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  cursor: default;
}
.nav-item-dropdown:hover .nav-link-toggle { color: var(--color-text); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  padding: 0.5rem 0;
  min-width: 200px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 50;
}
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.nav-dropdown a:hover {
  color: var(--color-accent);
  background: rgba(40, 170, 109, 0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;

}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 16px rgba(40, 170, 109, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-color: var(--color-accent-hover);
}
.btn-ghost {
  background: transparent;
  color: var(--color-hero-text);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
}
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: calc(var(--header-height) + var(--mode-bar-height));
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-bg-1 {
  background-image: url('../images/bg.png');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-bg-2 {
  background-image: url('../images/bg2.png');
  animation: hero-bg-fade-2 20s ease-in-out infinite;
}
@keyframes hero-bg-fade-1 {
  0%, 25%   { opacity: 1; }
  25%, 75%  { opacity: 0; }
  75%, 100% { opacity: 1; }
}
@keyframes hero-bg-fade-2 {
  0%, 25%   { opacity: 0; }
  25%, 75%  { opacity: 1; }
  75%, 100% { opacity: 0; }
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  padding: 6rem 1.5rem var(--section-padding-y);
}

.hero-content {
  text-align: center;
  width: 100%;
  max-width: 72rem;
}

.hero-brand {
  margin: 0 0 1.35rem;
  display: flex;
  justify-content: center;
}

.hero-brand a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hero-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 70vw);
  object-fit: contain;
}

.hero-preview {
  display: flex;
  justify-content: flex-end;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-trust {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-hero-text);
  max-width: min(100%, 56ch);
  margin: 0 auto 1.25rem;
}
.hero-lead {
  font-size: 20px;
  color: var(--color-hero-muted);
  max-width: 60ch;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-cta .btn-primary {
  font-size: 25px;
  padding-inline: 2.25rem;
  border-radius: var(--radius);
}

.hero-cta .btn-outline {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}

.hero-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero-lead strong {
  color: var(--color-hero-text);
  font-weight: 600;
}

.hero-subnote {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--color-hero-muted);
  line-height: 1.5;
}

.hero-content .hero-lead + .hero-lead--tight {
  margin-top: -1.35rem;
}

/* Faixa abaixo da hero: 4 colunas + ícones (fundo verde) — padding compacto (ver regra .section.section-stats-bar após .section) */
.section-stats-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--color-accent);
}

.stats-bar {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.25rem;
  align-items: stretch;
}

.stats-bar-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 1.1rem 1rem;
  background: var(--color-accent);
  border-radius: 0;
  border: none;
  box-shadow: none;
  text-align: left;
}

.stats-bar-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  color: #000;
  background: transparent;
  border: none;
}

.stats-bar-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  display: block;
}

.stats-bar-label {
  flex: 1;
  min-width: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  text-align: left;
}

@media (max-width: 1024px) {
  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Painel visual da hero */
.hero-panel {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.98);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.4);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
}

.hero-panel-label {
  margin-left: 0.5rem;
  font-weight: 500;
}

.hero-panel-body {
  padding: 1.1rem 1.1rem 1.3rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel-body pre {
  margin: 0;
  white-space: pre;
}

.hero-panel-body code {
  color: inherit;
}

@media (max-width: 900px) {
  .hero-inner {
    gap: 2.5rem;
    padding-top: 5.5rem;
  }

  .hero-preview {
    justify-content: center;
  }
}

/* ===== Sections ===== */
.section {
  padding: var(--section-padding-y) 0;
}

/* Deve vir depois de .section: mesma especificidade, padding compacto para a faixa de stats */
.section.section-stats-bar {
  padding: var(--section-padding-y-compact) 0;
}

.section-grid--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
}
.section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  text-align: left;
}
.section-title {
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 2.5rem;
  max-width: 40ch;
  text-align: left;
}

/* ===== Services ===== */
.section-services { background: var(--color-surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.75rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  background: var(--color-bg);
}
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #000;
  background: var(--color-accent);
  margin-bottom: 1rem;
}
.card-service h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}
.card-service p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* O que fazemos (ícones) */
.oque-fazemos-grid .card-icon svg {
  width: 22px;
  height: 22px;
}

.oque-fazemos-grid .card {
  border-radius: var(--radius, 12px);
}

/* ===== Audience ===== */
.section-audience { background: var(--color-bg); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.audience-block {
  background: var(--color-surface);
  padding: 2rem;
  border: 1px solid var(--color-border);
}
.audience-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}
.audience-block p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ===== Diferenciais ===== */
.section-diffs { background: var(--color-surface); }
.diffs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 640px;
}
.diffs-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
  color: var(--color-text-muted);
}
.diffs-list li:last-child { border-bottom: none; }
.diffs-list strong {
  color: var(--color-text);
  display: block;
  margin-bottom: 0.25rem;
}

/* ===== Benefícios / Comparativo ===== */
.section-beneficios { background: var(--color-bg); }
.section-beneficios .section-label { text-align: center; }
.section-label--center { text-align: center; }
.section-title--center {
  text-align: center;
  max-width: none;
  margin-inline: auto;
}
.section-beneficios-lead {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: -1.5rem 0 2.5rem;
  max-width: 50ch;
  margin-inline: auto;
}
.beneficios-table-wrapper {
  margin-top: 2rem;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.beneficios-tabela {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
}
.beneficios-tabela th,
.beneficios-tabela td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.beneficios-tabela thead th {
  font-weight: 700;
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--color-border);
}
.beneficios-tabela thead th:first-child {
  width: 140px;
}
.beneficios-tabela tbody th {
  font-weight: 600;
  color: var(--color-text-muted);
}
.beneficios-tabela tbody td {
  color: var(--color-text-muted);
}
.beneficios-tabela tbody tr {
  transition: background 0.2s;
}

.beneficios-tabela tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.beneficios-tabela tbody tr:last-child th,
.beneficios-tabela tbody tr:last-child td {
  border-bottom: none;
}
.beneficios-th--parceiro,
.beneficios-td--destaque {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text) !important;
}
.beneficios-th--parceiro {
  color: var(--color-accent) !important;
  border-left: 1px solid var(--color-border);
}
.beneficios-tabela .beneficios-td--destaque {
  font-weight: 500;
  border-left: 1px solid var(--color-border);
}

/* ===== CTA / Contato ===== */
.section-cta {
  color: var(--color-hero-text);
}
.cta-inner {
  max-width: 560px;
  margin-inline: auto;
}
.cta-content {
  text-align: center;
  margin-bottom: 2rem;
}
.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.cta-content p {
  color: var(--color-hero-muted);
  margin: 0;
}
.form-lead {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-hero-muted);
  margin-bottom: 0.35rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--color-hero-text);
  transition: border-color 0.2s, background 0.2s;
}
.form-row select option {
  background: var(--color-bg);
  color: #fff;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.08);
}
.form-lead .btn-primary {
  margin-top: 0.5rem;
}

/* ===== Page internal (header + breadcrumb) ===== */
.page-header {
  padding: 6rem 0 3rem;
  margin-top: calc(var(--header-height) + var(--mode-bar-height));
  background: var(--color-hero-bg);
  color: var(--color-hero-text);
}
.page-header .container { text-align: left; }
.breadcrumb {
  font-size: 0.9rem;
  color: var(--color-hero-muted);
  margin-bottom: 0.75rem;
}
.breadcrumb a {
  color: var(--color-hero-muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--color-text); }
.page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.page-lead {
  font-size: 1.1rem;
  color: var(--color-hero-muted);
  margin: 0;
  max-width: 60ch;
}
.page-content {
  padding: 3rem 0 5rem;
}
.page-content .container { text-align: left; }
.page-content h2 { font-size: 1.35rem; margin: 2rem 0 0.75rem; }
.page-content h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
.page-content p { margin: 0 0 1rem; color: var(--color-text-muted); max-width: 65ch; }
.page-content ul { margin: 0 0 1rem; padding-left: 1.25rem; color: var(--color-text-muted); }
.page-content a { color: var(--color-accent); }
.page-content a:hover { color: var(--color-accent-hover); }

/* ===== Tech grid (home + hub tecnologias) ===== */
.section-tech { background: var(--color-surface); }
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.tech-card {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-light);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.tech-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background-color: currentColor;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.tech-card-icon-magento {
  mask-image: url('../images/tech/magento.svg');
  -webkit-mask-image: url('../images/tech/magento.svg');
}
.tech-card-icon-wordpress {
  mask-image: url('../images/tech/wordpress.svg');
  -webkit-mask-image: url('../images/tech/wordpress.svg');
}
.tech-card-icon-shopify {
  mask-image: url('../images/tech/shopify.svg');
  -webkit-mask-image: url('../images/tech/shopify.svg');
}
.tech-card:hover {
  background: var(--color-accent);
  color: #000;
}
.tech-card-muted {
  color: var(--color-text-muted);
  background: var(--color-surface);
  cursor: default;
}
.tech-card-muted:hover { background: var(--color-surface); color: var(--color-text-muted); }

/* ===== Seção Tecnologias (carrossel) ===== */
.section-tecnologias {
  background: var(--color-surface);
}

.tech-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: var(--shadow);
}

.tech-carousel::before,
.tech-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.tech-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(12, 12, 12, 1), rgba(12, 12, 12, 0));
}

.tech-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(12, 12, 12, 1), rgba(12, 12, 12, 0));
}

.tech-carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 1.35rem 1.25rem;
  animation: tech-marquee 22s linear infinite;
}

.tech-carousel-list {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.tech-carousel-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 272px;
  height: 208px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
  flex: 0 0 auto;
}

.tech-carousel-item i {
  font-size: 136px;
  line-height: 1;
  display: block;
  opacity: 0.92;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s, transform 0.2s;
}

.tech-carousel-mask {
  width: 136px;
  height: 136px;
  display: block;
  background-color: currentColor;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  opacity: 0.92;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s, transform 0.2s;
}

.tech-carousel-mask-shopify {
  mask-image: url('../images/tech/shopify.svg');
  -webkit-mask-image: url('../images/tech/shopify.svg');
}

.tech-carousel-mask-meta {
  mask-image: url('../images/tech/meta.svg');
  -webkit-mask-image: url('../images/tech/meta.svg');
}

.tech-carousel-mask-googleads {
  mask-image: url('../images/tech/googleads.svg');
  -webkit-mask-image: url('../images/tech/googleads.svg');
}

.tech-carousel-mask-hubspot {
  mask-image: url('../images/tech/hubspot.svg');
  -webkit-mask-image: url('../images/tech/hubspot.svg');
}

.tech-carousel-mask-salesforce {
  mask-image: url('../images/tech/salesforce.svg');
  -webkit-mask-image: url('../images/tech/salesforce.svg');
}

.tech-carousel-mask-adobe {
  mask-image: url('../images/tech/adobe.svg');
  -webkit-mask-image: url('../images/tech/adobe.svg');
}

.tech-carousel-mask-figma {
  mask-image: url('../images/tech/figma.svg');
  -webkit-mask-image: url('../images/tech/figma.svg');
}

.tech-carousel:hover .tech-carousel-track {
  animation-play-state: paused;
}

.tech-carousel-item:hover i {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}

/* Hover com gradiente verde (mesmo accent do site) */
.tech-carousel-item:hover {
  border-color: rgba(40, 170, 109, 0.65);
  background: linear-gradient(
    135deg,
    var(--color-accent),
    rgba(40, 170, 109, 0.5),
    #1e8f5a,
    var(--color-accent)
  );
}

.tech-carousel-item:hover i {
  filter: grayscale(0);
}

.tech-carousel-item:hover .tech-carousel-mask {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}

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

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

@media (max-width: 640px) {
  .tech-carousel::before,
  .tech-carousel::after {
    width: 44px;
  }

  .tech-carousel-track {
    padding: 1rem 0.9rem;
  }

  .tech-carousel-item {
    width: 160px;
    height: 120px;
  }

  .tech-carousel-item i {
    font-size: 82px;
  }

  .tech-carousel-mask {
    width: 82px;
    height: 82px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Seção X + Y = R (home) ===== */
.section-soma { background: var(--color-bg); }
.soma-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.soma-content .section-title { margin-bottom: 1.25rem; }
.soma-content p { color: var(--color-text-muted); margin: 0 0 1rem; }
.soma-content strong { color: var(--color-text); }
.formula {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  letter-spacing: 0.04em;
  font-weight: 700;
}
.soma-media { display: flex; justify-content: center; }
.soma-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

/* ===== Últimos conteúdos (home) ===== */
.section-conteudos { background: var(--color-surface); }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-head .section-title { margin-bottom: 0; }
.conteudos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.conteudo-card {
  display: block;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.conteudo-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
}
.conteudo-card-meta {
  display: block;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.conteudo-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
  line-height: 1.3;
}
.conteudo-card-excerpt {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== Hub Conteúdos (/contents/) ===== */
.conteudos-hub-hero {
  padding-top: calc(var(--header-height) + var(--mode-bar-height) + 2.5rem);
  padding-bottom: 1.5rem;
}

.conteudos-hub-page-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.conteudos-hub-page-lead {
  margin: 0;
  max-width: 52ch;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.conteudos-hub-section {
  padding: 3rem 0;
}

.conteudos-hub-section-head {
  margin-bottom: 1.75rem;
}

.conteudos-hub-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--color-text);
}

.conteudos-hub-section-lead {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 48ch;
}

.conteudos-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.conteudos-card-meta-line {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.conteudos-card-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-surface);
  aspect-ratio: 16 / 9;
}

.conteudos-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Destaques */
.conteudos-featured-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .conteudos-featured-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.conteudos-featured-main-link,
.conteudos-featured-side-link,
.conteudos-column-card-link,
.conteudos-grid-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.conteudos-featured-main-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: var(--color-text);
}

.conteudos-featured-main-body {
  padding: 1rem 0 0;
}

.conteudos-featured-side-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.conteudos-featured-side-link {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.conteudos-featured-side:last-child .conteudos-featured-side-link {
  border-bottom: none;
  padding-bottom: 0;
}

.conteudos-featured-side-thumb {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-surface);
}

.conteudos-featured-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conteudos-featured-side-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--color-text);
}

/* Colunas Materiais / Vídeos / Cursos */
.conteudos-columns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.conteudos-column-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.conteudos-column-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

.conteudos-column-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
}

.conteudos-column-more:hover {
  color: var(--color-accent);
}

.conteudos-column-card-body {
  padding: 0.85rem 0 0;
}

.conteudos-column-card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--color-text);
}

.conteudos-column-empty {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Filtros + grid */
.conteudos-hub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.conteudos-filter-btn {
  background: none;
  border: none;
  padding: 0.25rem 0;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.conteudos-filter-btn:hover,
.conteudos-filter-btn.is-active {
  color: var(--color-text);
  border-bottom-color: var(--color-accent);
}

.conteudos-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.conteudos-grid-item.is-hidden {
  display: none;
}

.conteudos-grid-item.is-filter-hidden {
  display: none !important;
}

.conteudos-grid-card-body {
  padding: 0.85rem 0 0;
}

.conteudos-grid-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--color-text);
}

.conteudos-hub-load-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

.conteudos-load-more {
  min-width: 200px;
}

.conteudos-hub-empty {
  color: var(--color-text-muted);
  margin: 0;
}

.conteudos-hub-back {
  margin: 1rem 0 0;
}

.conteudos-hub-back a {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.conteudos-hub-back a:hover {
  text-decoration: underline;
}

/* ===== Card as link ===== */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover { border-color: var(--color-accent); }
.section-cta-inline { margin-top: 1.5rem; }
.section-resumo { background: var(--color-bg); }
.resumo-lead { font-size: 1.1rem; max-width: 60ch; margin-bottom: 1rem; }

/* ===== Hub grids (serviços, tecnologias, soluções) ===== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.hub-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.hub-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
}
.hub-card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.hub-card p { margin: 0; font-size: 0.95rem; color: var(--color-text-muted); }

/* ===== FAQ ===== */
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-list li { border-bottom: 1px solid var(--color-border); padding: 1rem 0; }
.faq-list dt { font-weight: 600; margin-bottom: 0.35rem; }
.faq-list dd { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }

/* ===== LP / Páginas ricas (Ecommerce, Magento) ===== */
.lp-hero {
  padding: 6rem 0 4rem;
  margin-top: calc(var(--header-height) + var(--mode-bar-height));
  background: var(--color-hero-bg);
  color: var(--color-hero-text);
  text-align: center;
}
.lp-hero .container { text-align: center; }
.lp-hero .breadcrumb { text-align: left; }
.lp-hero .page-title { margin-bottom: 0.75rem; }
.lp-hero .page-lead { max-width: 42ch; margin-inline: auto; }
.lp-hero .btn { margin-top: 0.5rem; }
.lp-hero-img {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.lp-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.lp-section { padding: 4rem 0; text-align: left; }
.lp-section .container { text-align: left; }
.lp-section .section-title { text-align: left; }
.lp-section-alt { background: var(--color-surface); }
.lp-section .section-label { text-align: left; }
.section-lead { margin-bottom: 2rem; color: var(--color-text-muted); }
.lp-cta-center { text-align: center; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-surface);
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  background: var(--color-accent);
  margin-bottom: 1rem;
  text-align: center;
}
.process-step h3 { font-size: 1.1rem; margin: 0 0 0.75rem; }
.process-step p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }
.process-step ul { text-align: left; padding-left: 1.25rem; margin: 0.75rem 0 0; font-size: 0.9rem; color: var(--color-text-muted); list-style: disc; }

.feature-grid-lp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}
.feature-card-lp {
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s;
}
.feature-card-lp:hover { border-color: var(--color-accent); }
.feature-card-lp h3 { font-size: 1.1rem; margin: 0 0 0.5rem; color: var(--color-accent); }
.feature-card-lp p { font-size: 0.95rem; color: var(--color-text-muted); margin: 0; }

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}
.service-card-lp {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s;
}
.service-card-lp:hover { border-color: var(--color-accent); }
.service-card-lp h3 { font-size: 1.2rem; margin: 0 0 0.75rem; }
.service-card-lp p { font-size: 0.95rem; color: var(--color-text-muted); margin: 0 0 1rem; }
.service-card-lp .btn { margin-top: 0.5rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}
.benefit-card {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.benefit-card h3 { font-size: 1.05rem; margin: 0 0 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* Bloco de valor (landing): ganho explícito para o cliente */
.section-valor-operacao {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.section-valor-operacao .section-title {
  margin-bottom: 2rem;
}
.benefits-grid--valor {
  padding: 0;
  margin-top: 0;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.benefit-card--valor {
  border-radius: var(--radius, 12px);
  text-align: center;
  padding: 1.35rem 1.25rem;
}
.benefit-card--valor h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

.project-card-lp {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}
.project-card-lp:hover { border-color: var(--color-accent); }
.project-card-lp-img {
  height: 200px;
  background: var(--color-bg);
  overflow: hidden;
}
.project-card-lp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.project-card-lp h4 { padding: 1rem 1rem 0; margin: 0 0 0.5rem; font-size: 1rem; text-align: left; }
.project-card-lp .btn { margin: 0 1rem 1rem; display: inline-block; }

.newsletter-block {
  padding: 3rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  text-align: center;
  max-width: 560px;
  margin: 3rem auto;
}
.newsletter-block h3 { margin: 0 0 0.5rem; }
.newsletter-block p { color: var(--color-text-muted); margin: 0 0 1.5rem; font-size: 0.95rem; }
.newsletter-block .form-inline { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.newsletter-block input { flex: 1; min-width: 200px; padding: 0.75rem 1rem; border: 1px solid var(--color-border); background: var(--color-bg); color: var(--color-text); font-family: inherit; }
.newsletter-block input:focus { outline: none; border-color: var(--color-accent); }

.faq-section { padding: 3rem 0; }
.faq-section .section-title { margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--color-border); padding: 1rem 0; }
.faq-item dt { font-weight: 600; font-size: 1rem; margin-bottom: 0.35rem; cursor: pointer; }
.faq-item dd { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.5; }
.lp-quote { padding: 2rem; border-left: 4px solid var(--color-accent); background: var(--color-surface); margin: 2rem 0; }
.lp-quote p { margin: 0; font-style: italic; color: var(--color-text-muted); }
.lp-quote cite { display: block; margin-top: 0.75rem; font-size: 0.9rem; color: var(--color-accent); }

/* ===== Footer ===== */
.footer {
  background: var(--color-bg);
  color: var(--color-hero-muted);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 36rem;
}

.footer-brand .logo {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-brand p + p {
  margin-top: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--color-hero-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--color-text); }
.footer-copy a { color: var(--color-accent); }
.footer-copy a:hover { color: var(--color-accent-hover); }
.footer-copy {
  width: 100%;
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.8;
  text-align: center;
}

/* Redes sociais no rodapé */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-top: 0.25rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: #fff;
  background: transparent;
  border: none;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.footer-social-icon svg {
  display: block;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: calc(var(--header-height) + var(--mode-bar-height));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav a { padding: 0.75rem 0; }
  .nav-item-dropdown { display: block; }
  .nav-link-toggle { display: block; padding: 0.75rem 0; }
  .nav-dropdown {
    position: static;
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--color-border);
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .nav.is-open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 0.4rem 0; }
  .menu-toggle { display: flex; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .soma-grid { grid-template-columns: 1fr; }

  .container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .hero-title {
    font-size: clamp(1.55rem, 7.2vw, 2.65rem);
    max-width: 100%;
    line-height: 1.12;
    word-wrap: break-word;
  }

  .hero-lead {
    font-size: clamp(0.92rem, 4vw, 1.12rem);
    max-width: 100%;
    margin-bottom: 1.75rem;
  }

  .hero-cta .btn-primary {
    font-size: clamp(1rem, 4.5vw, 1.3rem);
    padding-inline: 1.35rem;
  }

  .solucao-pilares--vertical li {
    font-size: clamp(1rem, 3.6vw, 1.22rem);
    align-items: flex-start;
    line-height: 1.35;
    padding: 0.7rem 0;
  }

  .solucao-copy .section-title {
    max-width: 100%;
  }

  .problema-item {
    overflow-wrap: anywhere;
    align-items: flex-start;
  }

  .problema-icon {
    margin-top: 0.2em;
  }

  .integracao-flow-body {
    min-width: 0;
  }

  .integracao-flow-text {
    max-width: 100%;
  }

  .faq-trigger {
    padding: 1rem 1.15rem;
    font-size: 0.95rem;
    gap: 0.75rem;
  }

  .faq-trigger span:first-child {
    min-width: 0;
  }

  .depoimento-quote {
    font-size: 1.02rem;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .contato-grid {
    gap: 2rem;
  }

  .contato-form-wrapper {
    max-width: 100%;
    box-sizing: border-box;
  }
}



.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

/* Seção Para quem é: texto à esquerda, cards 2x2 à direita - SEMPRE 2 colunas */
.section-para-quem .container.section-para-quem-grid,
.section.section-para-quem .section-para-quem-grid,
.section-para-quem-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2.5rem;
  align-items: start;
}

.section-para-quem-texto {
  min-width: 0;
}

.section-para-quem-cards {
  min-width: 0;
}

.section-para-quem-cards,
.cards-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.section-para-quem-cards .card-simple,
.cards-grid-2x2 .card-simple {
  display: block;
  border-bottom: none;
}

.section-para-quem .cards-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card-simple {
  border: 1px solid var(--color-border);
  border-radius: var(--radius, 12px);
  background: var(--color-surface);
  padding: 1.75rem 1.75rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.card-simple:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.card-simple h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.section-problema .area-card .area-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-problema .area-card .area-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(40, 170, 109, 0.18);
  border: 1px solid rgba(40, 170, 109, 0.35);
  color: var(--color-accent);
  flex-shrink: 0;
}

.section-problema .area-card .area-title-icon svg {
  width: 18px;
  height: 18px;
}

.card-simple p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.card-simple ul {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: var(--color-text-muted);
}

.card-simple li {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.card-simple p strong {
  color: var(--color-text);
}

.section-highlight {
  margin-top: 2rem;
  font-weight: 600;
  color: var(--color-accent);
}

.section-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.section-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-media img {
  width: 100%;
}


.formula-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* Lista de passos (Como funciona) */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-list li {
  border-left: 2px solid var(--color-border);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.steps-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.steps-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}



.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  justify-items: center;
  text-align: center;
}

.contato-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(40, 170, 109, 0.14);
  border: 1px solid rgba(40, 170, 109, 0.35);
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.contato-benefits {
  list-style: none;
  padding: 0;
  margin: 1.25rem auto 0;
  max-width: 52ch;
  text-align: left;
  display: grid;
  gap: 0.65rem;
  color: var(--color-text-muted);
}

.contato-benefits li {
  position: relative;
  padding-left: 1.45rem;
  line-height: 1.5;
}

.contato-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--color-accent);
  font-weight: 800;
}

.contato-copy {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
}

.contato-copy .section-label,
.contato-copy .section-title {
  text-align: center;
}

.contato-copy .section-title {
  margin-inline: auto;
}

.contato-copy p {
  color: var(--color-text-muted);
  max-width: 42ch;
  margin-inline: auto;
}

.contato-copy .contato-copy-texto p {
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 auto 1rem;
}

.contato-copy .contato-copy-texto p:last-child {
  margin-bottom: 0;
}

.form-required {
  color: var(--color-accent);
  font-weight: 700;
}

.contato-form-wrapper {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: left;
}

@media (min-width: 960px) {
  .contato-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3.5rem;
    align-items: start;
    justify-items: stretch;
    text-align: left;
  }

  .contato-copy {
    max-width: none;
    margin-inline: 0;
  }

  .contato-copy .section-label,
  .contato-copy .section-title {
    text-align: left;
  }

  .contato-copy p {
    margin-inline: 0;
  }

  .contato-copy .contato-copy-texto p {
    margin-left: 0;
    margin-right: 0;
  }

  .contato-benefits {
    margin-left: 0;
    margin-right: 0;
  }

  .contato-form-wrapper {
    margin-inline: 0;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  transition: border-color 0.2s, background 0.2s;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--color-bg);
  color: var(--color-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.09);
}

.btn-full {
  width: 100%;
}

/* Contact Form 7 — tema escuro Deuxys */
.contato-form-wrapper .wpcf7 {
  width: 100%;
}

.contato-form-wrapper .wpcf7 form {
  margin: 0;
}

.contato-form-wrapper .wpcf7-form .form.form-parceiros {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contato-form-wrapper .wpcf7-form .form-group {
  margin: 0;
}

.contato-form-wrapper .wpcf7-form .form-group p {
  margin: 0;
}

.contato-form-wrapper .wpcf7-form .form-group label {
  margin-bottom: 0.25rem;
}

.contato-form-wrapper .wpcf7-form .form-group br {
  display: none;
}

.contato-form-wrapper .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contato-form-wrapper .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}

.contato-form-wrapper .wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.09);
}

.contato-form-wrapper select.wpcf7-form-control {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
}

.contato-form-wrapper select.wpcf7-form-control option {
  background: var(--color-bg);
  color: var(--color-text);
}

.contato-form-wrapper input.wpcf7-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: var(--color-accent);
  color: #fff;
  transition: background 0.2s, transform 0.15s;
}

.contato-form-wrapper input.wpcf7-submit:hover {
  background: var(--color-accent-hover, #22965a);
}

.contato-form-wrapper .wpcf7-not-valid-tip {
  color: #ff8a80;
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.contato-form-wrapper .wpcf7-response-output {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.contato-form-wrapper .wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.contato-form-wrapper .wpcf7-spinner {
  margin-left: 0.5rem;
}

/* ===== Página de obrigado ===== */

.section-obrigado {
  padding: 7rem 0 5rem;
  margin-top: calc(var(--header-height) + var(--mode-bar-height));
  text-align: center;
}

.section-obrigado .container {
  text-align: center;
}

.section-obrigado .section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-obrigado p {
  color: var(--color-text-muted);
  max-width: min(88ch, 100%);
  margin-inline: auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-obrigado .obrigado-mensagem-principal {
  color: var(--color-text);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: min(72ch, 100%);
  margin-bottom: 1rem;
}

.section-obrigado .obrigado-mensagem-principal + .obrigado-mensagem-principal {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.section-obrigado .section-label {
  text-align: center;
}

.section-obrigado .section-note {
  text-align: center;
}

.section-narrow {
  max-width: 640px;
  margin-inline: auto;
}

.section-narrow--obrigado {
  max-width: min(1400px, 100%);
  width: 100%;
}

.video-placeholder {
  margin: 2rem 0 2.5rem;
}

.section-obrigado .video-placeholder {
  margin-top: 2.25rem;
}

.video-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.section-obrigado .video-box {
  max-width: 100%;
}

/* Página obrigado: conteúdo cabe na altura da viewport (100vh / 100dvh) */
html.page-obrigado-root {
  height: 100%;
}

body.page-obrigado {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--color-bg);
  overflow-x: hidden;
}

body.page-obrigado main.main-obrigado {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.page-obrigado .section-obrigado--vh100 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-top: 0;
  padding: max(env(safe-area-inset-top, 0px), clamp(0.75rem, 2.5vmin, 1.25rem))
    clamp(1rem, 4vw, 1.5rem)
    max(env(safe-area-inset-bottom, 0px), clamp(0.75rem, 2.5vmin, 1.25rem));
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.page-obrigado .section-obrigado--vh100 .container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  gap: 0.35rem;
  text-align: center;
}

body.page-obrigado .section-obrigado--vh100 .logo {
  flex-shrink: 0;
  align-self: center;
  margin-inline: auto;
  margin-bottom: 0;
  display: inline-flex;
  justify-content: center;
}

body.page-obrigado .section-obrigado--vh100 .logo-img {
  height: clamp(28px, 5vmin, 36px);
}

body.page-obrigado .section-obrigado--vh100 p {
  flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: min(88ch, 100%);
  margin-inline: auto;
}

body.page-obrigado .section-obrigado--vh100 .obrigado-mensagem-principal {
  margin-bottom: 0;
}

body.page-obrigado .section-obrigado--vh100 .video-placeholder {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.15rem 0 0;
  padding: 0;
  width: 100%;
  max-width: min(680px, 100%);
}

body.page-obrigado .section-obrigado--vh100 .video-box {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  flex: 0 0 auto;
  min-height: 0;
  max-height: min(52vh, calc(100dvh - 14rem));
  aspect-ratio: 16 / 9;
  height: auto;
}

@media (max-height: 520px) {
  body.page-obrigado .section-obrigado--vh100 p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  body.page-obrigado .section-obrigado--vh100 .obrigado-mensagem-principal {
    font-size: clamp(1rem, 3.5vw, 1.35rem);
  }
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.obrigado-cta {
  margin: 1rem 0 2rem;
  text-align: center;
}

.obrigado-cta .btn {
  margin-top: 0.75rem;
}

@media (max-width: 480px) {
  .section-para-quem .container.section-para-quem-grid,
  .section-para-quem-grid {
    grid-template-columns: 1fr !important;
  }

  .section-para-quem-cards,
  .cards-grid-2x2 {
    grid-template-columns: 1fr;
  }

  .stats-bar-icon-wrap {
    width: 3rem;
    height: 3rem;
  }

  .stats-bar-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .stats-bar-label {
    font-size: 1.05rem;
  }

  .prova-list {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Tema escuro: preto + accent verde #28AA6D ===== */

/* ===== Landing Deuxys - Novas seções ===== */
.section-lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  max-width: 55ch;
}

.section-lead--center {
  text-align: center;
  margin-inline: auto;
}

/* Problema */
.section-problema {
  background: var(--color-surface);
}

.problema-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.problema-content .section-title {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}

.problema-texto {
  margin-bottom: 1.5rem;
}

.problema-texto p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 0 0.65rem;
  max-width: 55ch;
  line-height: 1.6;
}

.problema-texto p:last-child {
  margin-bottom: 0;
}

.problema-fechamento {
  margin: 1.75rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  max-width: 55ch;
  line-height: 1.5;
}

.problema-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.problema-media img {
  width: 100%;
  height: auto;
  max-width: 1100px;
  object-fit: contain;
}

.problema-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problema-list--vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problema-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
}

.problema-item-text {
  flex: 1 1 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.problema-item:last-child {
  border-bottom: none;
}

.problema-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Solução */
.section-solucao {
  background: var(--color-bg);
}

.solucao-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.solucao-grid > * {
  min-width: 0;
}

.solucao-pilar-text {
  flex: 1 1 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.solucao-destaque {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin: 0 0 0;
}

.solucao-destaque strong {
  color: var(--color-accent);
}

.solucao-pilares {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solucao-pilares--vertical li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  font-size: 2rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.solucao-pilares--vertical li:last-child {
  border-bottom: none;
}

.solucao-check {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Quem somos */
.section-sobre {
  background: var(--color-surface);
}

.section-sobre .section-media img {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.section-sobre .sobre-manchete {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.section-sobre .sobre-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.15rem 1rem;
  align-items: stretch;
  margin: 1.25rem 0 1.5rem;
  max-width: 1100px;
}

@media (max-width: 900px) {
  .section-sobre .sobre-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section-sobre .sobre-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding: 0.35rem 0.25rem;
  background: none;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
}

.section-sobre .sobre-logo-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 2.85rem;
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

@media (max-width: 540px) {
  .section-sobre .sobre-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .section-sobre .sobre-logo-card {
    min-height: 3.25rem;
  }

  .section-sobre .sobre-logo-card img {
    max-height: 2.5rem;
  }
}

/* Para quem é */
.section-para-quem {
  background: var(--color-surface);
}

.para-quem-cards {
  margin-top: 1rem;
}

/* Como funciona + Integração (grid unificado) */
.section-como-funciona {
  background: var(--color-bg);
}

.processo-unificado {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.75fr);
  column-gap: 3rem;
  row-gap: 2.5rem;
  align-items: start;
  grid-template-areas:
    "texto-como media-como"
    "texto-integ media-integ";
}

.processo-unificado .processo-media--como {
  grid-area: media-como;
}

.processo-unificado .processo-text--como {
  grid-area: texto-como;
}

.processo-unificado .processo-media--integracao {
  grid-area: media-integ;
}

.processo-unificado .processo-text--integracao {
  grid-area: texto-integ;
}

.processo-unificado .integracao-copy {
  padding-top: 2rem;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.processo-unificado .como-funciona-content .section-title {
  margin-bottom: 1.25rem;
}

.processo-unificado .integracao-copy .section-title {
  margin-bottom: 0.75rem;
}

.processo-unificado .integracao-lead {
  margin-bottom: 1.5rem;
}

.como-funciona-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.como-funciona-media img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.como-funciona-content {
  text-align: left;
}

.como-funciona-content .section-lead {
  margin-bottom: 1.5rem;
}

.process-steps--compact {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-steps--compact .process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.process-steps--compact .process-step:last-child {
  border-bottom: none;
}

.process-steps--compact .process-step-num {
  margin-bottom: 0;
  flex-shrink: 0;
}

.process-steps--compact .process-step h3 {
  margin: 0 0 0.25rem;
}

.process-steps--compact .process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Integração white-label (conteúdo dentro de .processo-unificado) */
.integracao-media {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.integracao-media img {
  width: 100%;
  height: auto;
  display: block;
}

.integracao-copy {
  text-align: left;
  min-width: 0;
}

.integracao-copy .section-title {
  max-width: none;
  margin-bottom: 1rem;
}

.integracao-lead {
  margin-bottom: 2rem;
}

.integracao-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.integracao-flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  margin: 0;
  padding: 0 0 1.5rem;
}

.integracao-flow-step:last-child {
  padding-bottom: 0;
}

.integracao-flow-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 52px;
  flex-shrink: 0;
  align-self: stretch;
}

.integracao-flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--color-accent);
  background: rgba(40, 170, 109, 0.12);
  border: 1px solid rgba(40, 170, 109, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.integracao-flow-icon svg {
  display: block;
}

.integracao-flow-step:not(:last-child) .integracao-flow-marker::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--color-accent) 0%,
    rgba(40, 170, 109, 0.35) 55%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border-radius: 1px;
  z-index: 0;
}

.integracao-flow-body {
  padding-top: 0.15rem;
  min-width: 0;
}

.integracao-flow-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  text-transform: lowercase;
}

.integracao-flow-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-transform: lowercase;
  max-width: 52ch;
}

/* O que delegar */
.section-delegar {
  background: var(--color-bg);
}

.delegar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.delegar-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
  transition: border-color 0.2s, color 0.2s;
}

.delegar-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.delegar-cta {
  font-weight: 600;
  color: var(--color-accent);
  margin: 0;
}

/* Exemplo real */
.section-exemplo {
  background: var(--color-surface);
}

.exemplo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.exemplo-intro {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text) !important;
  margin-bottom: 1rem !important;
}

.exemplo-copy p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.exemplo-resultado-box {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
}

.exemplo-resultado-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-accent);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.exemplo-resultados {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exemplo-resultados li {
  padding: 0.5rem 0;
  color: var(--color-text-muted);
  text-transform: lowercase;
}

.exemplo-resultados li::before {
  content: "✓ ";
  color: var(--color-accent);
  font-weight: 600;
}

/* Prova */
.section-prova {
  background: var(--color-bg);
}

.prova-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.prova-list li {
  font-size: 1rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
}

.prova-list li::before {
  content: "✓ ";
  color: var(--color-accent);
  font-weight: 600;
}

/* Garantia */
.section-garantia {
  background: var(--color-surface);
}

.garantia-content {
  max-width: 50ch;
  margin-inline: auto;
  text-align: center;
}

.garantia-content p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.garantia-content p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--color-accent);
}

/* FAQ */
.section-faq {
  background: var(--color-bg);
}

.section-faq .section-label {
  text-align: center;
}

.faq-accordion {
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  margin-bottom: 0.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #28AA6D, rgba(40, 170, 109, 0.5), #1e8f5a, #28AA6D);
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.faq-trigger:hover {
  background: rgba(40, 170, 109, 0.08);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-content {
  max-height: 320px;
}

.faq-content p {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.faq-content p a {
  color: var(--color-accent);
  text-decoration: none;
}

.faq-content p a:hover {
  text-decoration: underline;
}

/* Parceiros / Logos */
.section-parceiros {
  background: var(--color-bg);
}

.section-parceiros .section-label {
  text-align: center;
}

.parceiros-logos {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem 2.5rem;
  align-items: center;
  justify-items: center;
  min-height: 140px;
}

.parceiros-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px dashed var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.parceiros-logos img {
  height: 64px;
  width: 100%;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
}

.parceiros-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}

@media (max-width: 768px) {
  .parceiros-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .parceiros-logos img {
    height: 48px;
    max-width: 160px;
  }
}

/* Depoimentos */
.section-depoimentos {
  background: var(--color-bg);
}

.depoimento-card {
  padding: 2rem;
}

.depoimento-card--com-foto {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  margin-top: 0;
  width: 100%;
  max-width: none;
}

@media (min-width: 1025px) {
  .depoimento-card--com-foto {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.depoimento-foto {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.depoimento-foto img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.depoimento-conteudo {
  min-width: 0;
  text-align: left;
}

.depoimento-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  line-height: 1.7;
}

.depoimento-autor {
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.depoimento-cargo {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  font-weight: 500;
}

.depoimento-fechamento {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 1rem 0 0;
  line-height: 1.55;
  max-width: 55ch;
}

@media (max-width: 768px) {
  .depoimento-foto img {
    max-width: 320px;
  }
}

.depoimento-metrica {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.depoimento-numero {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
}

.depoimento-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Princípios */
.section-principios {
  background: var(--color-bg);
}

.principios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.principio-item {
  padding: 1.75rem;
  border: 1px solid var(--color-border);
}

.principio-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}

.principio-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* CTA highlight */
.contato-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.5rem !important;
}

.highlight {
  color: var(--color-accent);
}

/* Footer tagline */
.footer-tagline {
  font-size: 0.85rem !important;
  opacity: 0.85;
  margin-top: 0.25rem !important;
}

/* ===== Página Cursos (assinatura) ===== */
.page-cursos .btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}

.cursos-section-lead a {
  color: var(--color-accent);
  text-decoration: none;
}

.cursos-section-lead a:hover {
  text-decoration: underline;
}

/* Lista “tudo incluso” em grade */
.cursos-benefits-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 2rem;
  max-width: 900px;
  margin-inline: auto;
  text-align: left;
}

.cursos-benefits-grid li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.cursos-benefits-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Cards “principais cursos” */
.cursos-destaque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.cursos-curso-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cursos-curso-card:hover {
  border-color: rgba(40, 170, 109, 0.4);
  box-shadow: var(--shadow);
}

.cursos-curso-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.65rem;
}

.cursos-curso-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  color: var(--color-text);
}

.cursos-curso-desc {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.cursos-curso-meta {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  opacity: 0.9;
}

.cursos-curso-incluso {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

/* Conteúdo exclusivo */
.cursos-exclusivo-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
  text-align: left;
}

.cursos-exclusivo-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.cursos-exclusivo-list li:last-child {
  border-bottom: none;
}

.cursos-exclusivo-list strong {
  color: var(--color-text);
}

/* Depoimentos */
.cursos-depo {
  padding-bottom: 4rem;
}

.cursos-depo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.cursos-depo-card {
  margin: 0;
  padding: 1.35rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-align: left;
}

.cursos-depo-card p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  font-style: italic;
}

.cursos-depo-card footer {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-style: normal;
}

/* Preço: plano mensal único */
.cursos-preco-section .container {
  display: block;
  max-width: 960px;
}

.cursos-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.cursos-pricing-grid--solo {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-bottom: 0;
}

.cursos-pricing-plan {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.cursos-pricing-plan--solo {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  padding: 2.75rem 2.25rem 2.25rem;
  border: 2px solid var(--color-accent);
  box-shadow: 0 16px 56px rgba(40, 170, 109, 0.18);
}

.cursos-pricing-plan--solo .cursos-pricing-plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cursos-pricing-plan--solo .cursos-pricing-plan-price {
  font-size: clamp(2.75rem, 8vw, 3.75rem);
  margin-bottom: 0.5rem;
}

.cursos-pricing-plan--solo .cursos-pricing-currency {
  font-size: 1.45rem !important;
  vertical-align: super;
}

.cursos-pricing-plan--solo .cursos-pricing-period {
  font-size: 1.2rem !important;
  font-weight: 600;
}

.cursos-pricing-plan--solo .cursos-pricing-plan-list {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  padding-left: 1.35rem;
  line-height: 1.65;
}

.cursos-pricing-plan--solo .cursos-pricing-plan-list li {
  margin-bottom: 0.5rem;
}

.cursos-pricing-cta-main {
  font-size: 1.1rem !important;
  padding: 1rem 1.75rem !important;
}

.cursos-pricing-plan--destaque {
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(40, 170, 109, 0.12);
}

.cursos-pricing-badge {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #0c0c0c;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.cursos-pricing-badge--popular {
  right: 50%;
  transform: translate(50%, -50%);
}

.cursos-pricing-plan-title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.cursos-pricing-plan-price {
  margin: 0 0 0.35rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}

.cursos-pricing-plan .cursos-pricing-currency {
  font-size: 1.1rem;
  vertical-align: super;
  margin-right: 0.1rem;
}

.cursos-pricing-plan .cursos-pricing-period {
  font-size: 1rem;
}

.cursos-pricing-equiv {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.cursos-pricing-plan-list {
  text-align: left;
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.cursos-pricing-plan-list li {
  margin-bottom: 0.4rem;
}

.cursos-pricing-plan-note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.cursos-garantia-strip {
  max-width: 520px;
  margin: 2rem auto 0;
  padding: 1.15rem 1.35rem;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.cursos-garantia-strip p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.cursos-split--diferencial {
  align-items: center;
}

.cursos-diferencial-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 1.25rem;
}

.cursos-diferencial-intro {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.cursos-diferencial-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cursos-diferencial-fechamento {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 600;
}

.cursos-cta-final-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.cursos-cta-final-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.cursos-cta-final-list li {
  margin-bottom: 0.35rem;
}

.cursos-cta-final-tagline {
  margin: 0 0 1.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.cursos-cta-extra {
  max-width: 560px;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.cursos-cta-extra p {
  margin: 0 0 1rem;
}

.cursos-cta-extra a {
  color: var(--color-accent);
  text-decoration: none;
}

.cursos-cta-extra a:hover {
  text-decoration: underline;
}

/* Instrutor / equipe */
.cursos-instructor .section-label {
  text-align: left;
}

.cursos-instructor .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.cursos-instructor-lead {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.cursos-instructor-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cursos-instructor-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
}

.cursos-split--instrutor {
  align-items: center;
}

/* FAQ rodapé */
.cursos-faq-footnote {
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  text-align: center;
}

.cursos-faq-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Faixa de logos */
.cursos-logos-strip {
  padding: 2rem 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cursos-logos-strip .container {
  text-align: center;
}

.cursos-logos-caption {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cursos-logos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.25rem;
}

.cursos-logos-list img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(0.15);
  transition: opacity 0.2s;
}

.cursos-logos-list li:hover img {
  opacity: 1;
}

/* Seções centrais (sobrescreve .lp-section alinhado à esquerda) */
.page-cursos .page-cursos-section .container {
  max-width: 1100px;
}

.page-cursos .lp-section .container {
  text-align: center;
}

.page-cursos .lp-section .cursos-section-head .section-label,
.page-cursos .lp-section .cursos-section-head .section-title.section-title--center {
  text-align: center;
}

.page-cursos .cursos-split-content,
.page-cursos .cursos-section-head--left,
.page-cursos .cursos-benefits,
.page-cursos .cursos-trilha-body {
  text-align: left;
}

.cursos-section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.cursos-section-head .section-label {
  text-align: center;
}

.cursos-section-head .section-title--center {
  margin-bottom: 1rem;
}

.cursos-section-head .section-title {
  margin-left: auto;
  margin-right: auto;
}

.cursos-section-lead {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cursos-section-head--left {
  text-align: left;
  margin-bottom: 1.5rem;
}

.cursos-section-head--left .section-label {
  text-align: left;
}

.cursos-section-head--left .section-title {
  margin-bottom: 0;
  max-width: none;
}

/* Trilhas com imagem */
.cursos-trilhas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.25rem;
}

.cursos-trilha-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cursos-trilha-card:hover {
  border-color: rgba(40, 170, 109, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.cursos-trilha-media {
  aspect-ratio: 16 / 10;
  background: #080808;
  overflow: hidden;
}

.cursos-trilha-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cursos-trilha-body {
  padding: 1.25rem 1.35rem 1.5rem;
  text-align: left;
}

.cursos-trilha-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
}

.cursos-trilha-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Split benefícios + imagem */
.cursos-split-wrap {
  max-width: 1040px;
  margin-inline: auto;
}

.cursos-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.cursos-split-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.cursos-split-media img {
  width: 100%;
  height: auto;
  display: block;
}

.cursos-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: none;
}

.cursos-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.cursos-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-accent);
  border-radius: 50%;
}

.cursos-benefits a {
  color: var(--color-accent);
  text-decoration: none;
}

.cursos-benefits a:hover {
  text-decoration: underline;
}

.cursos-faq-intro {
  text-align: center;
  max-width: 48ch;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.cursos-faq-intro a {
  color: var(--color-accent);
  text-decoration: none;
}

.cursos-faq-intro a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cursos-benefits-grid {
    grid-template-columns: 1fr;
  }

  .cursos-depo-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .cursos-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .cursos-pricing-grid--solo {
    max-width: min(100%, 520px);
  }

  .cursos-pricing-plan--solo {
    padding: 2.25rem 1.5rem 2rem;
  }

  .cursos-trilhas-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .cursos-split {
    grid-template-columns: 1fr;
  }

  .cursos-split-media {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .cursos-logos-list {
    gap: 1.25rem 1.5rem;
  }

  .cursos-logos-list img {
    height: 24px;
  }
}

/*
 * Landing: grids em 1 coluna no mobile/tablet.
 * Este bloco fica POR ÚLTIMO para vencer .problema-grid, .solucao-grid e .processo-unificado
 * definidos mais acima no arquivo (mesma especificidade, ordem no cascade).
 */
@media (max-width: 1024px) {
  .section-grid,
  .section-grid--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .solucao-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .solucao-copy {
    order: -1;
  }

  .problema-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .problema-media {
    order: -1;
  }

  .problema-content,
  .como-funciona-content {
    min-width: 0;
    width: 100%;
  }

  .processo-unificado {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "texto-como"
      "media-como"
      "texto-integ"
      "media-integ";
  }

  .processo-unificado .como-funciona-media,
  .processo-unificado .integracao-media {
    max-width: min(680px, 100%);
    margin-inline: auto;
    width: 100%;
  }

  .exemplo-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-para-quem .cards-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .contato-form-wrapper {
    padding: 1.5rem 1.25rem;
  }

  .section-obrigado {
    padding-top: 6rem;
  }

  /* Passos do fluxo: largura total para o texto (evita coluna estreita) */
  .integracao-flow-step {
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  }

  .integracao-flow-marker {
    width: 48px;
  }
}

/* Tutor — modal de login (Comprar agora) */
.tutor-login-modal .tutor-modal-content,
.tutor-login-modal .tutor-modal-content-white {
  background-color: #000 !important;
  border-color: var(--color-border);
}

.tutor-login-modal .tutor-modal-body {
  background: transparent;
}

.tutor-login-modal #tutor-login-modal-title,
.tutor-login-modal .tutor-color-black {
  color: var(--color-text) !important;
}

.tutor-login-modal .tutor-color-muted,
.tutor-login-modal .tutor-color-secondary,
.tutor-login-modal .tutor-fs-6,
.tutor-login-modal .tutor-fs-7,
.tutor-login-modal label {
  color: var(--color-text-muted) !important;
}

.tutor-login-modal .tutor-form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text);
  border-radius: 6px;
}

.tutor-login-modal .tutor-form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.tutor-login-modal .tutor-form-control:focus {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.tutor-login-modal .tutor-modal-close-o {
  color: var(--color-text-muted);
}

.tutor-login-modal .tutor-btn-ghost {
  color: var(--color-text-muted);
}

.tutor-login-modal .tutor-btn-link {
  color: var(--color-accent);
}

.tutor-login-modal .tutor-btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
}