:root {
  --bg: #070A12;
  --panel: #0B1020;
  --card: #0E1630;
  --text: #EAF0FF;
  --muted: rgba(234, 240, 255, .78);
  --soft: rgba(234, 240, 255, .10);
  --soft2: rgba(234, 240, 255, .16);
  --line: rgba(234, 240, 255, .14);

  --accent: #6BE4FF;
  --accent2: #64FFB6;
  --accent3: #B58CFF;

  --radius: 18px;
  --radius2: 24px;
  --shadow: 0 14px 40px rgba(0, 0, 0, .40);
  --shadow2: 0 10px 26px rgba(0, 0, 0, .34);
}

/* ====== Base / Reset ====== */
/* *,
  *::before,
  *::after {
    box-sizing: border-box;
  } */

html,
body {
  height: 100%;
}

a {
  color: inherit;
}

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

.container {
  margin: 0 10%;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 10px 14px;
  text-decoration: none;
  border: 1px solid var(--soft2);
  font-weight: 800;
  white-space: nowrap;
  background: rgba(234, 240, 255, .06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(234, 240, 255, .08);
}

.btn.primary {
  border-color: rgba(107, 228, 255, .38);
  background: linear-gradient(180deg, rgba(107, 228, 255, .16), rgba(107, 228, 255, .07));
  color: var(--text);
  border-radius: 999px;
}

.btn.primary:hover {
  border-color: rgba(107, 228, 255, .55);
}

.btn.ghost {
  border-color: rgba(234, 240, 255, .14);
  background: rgba(234, 240, 255, .04);
  color: rgba(234, 240, 255, .92);
  border-radius: 999px;
  font-size: 15px;
  padding: 12px 24px;
}

/* ====== Page sections ====== */
main {
  display: block;
  width: 100%;
}

/* ====== HERO ====== */
.hero {
  display: flex;
  height: calc(100vh - 72px);
  justify-content: center;
  align-items: center;
}

.hero .container {
  width: 80%;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 600px;
  /* min-width: 100%; */
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(14, 22, 48, .78), rgba(11, 16, 32, .72));
}

/* Global background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .22s ease;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
  pointer-events: none;
}

/* Content columns */
.hero-left,
.hero-tabs {
  position: relative;
  z-index: 1;
  padding: 18px;
}

.hero-left {
  display: grid;
  align-items: end;
  border-right: 1px solid var(--line);
  background: transparent;
}

.hero-panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(234, 240, 255, .06);
  backdrop-filter: blur(2px);
  border: 1px solid var(--soft2);
  box-shadow: var(--shadow2);
  max-width: 760px;
  width: 100%;
}

.initial {
  align-self: center;
  border: none;
  background: none;
  box-shadow: none;
}

/* O painel ativo fica visível e no topo */
.hero-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-panel h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: white;
}

.lead {
  margin: 0 0 12px;
  font-size: 16px;
  color: rgba(234, 240, 255, .82);
  font-weight: 800;
  opacity: 1;
}

.bullets {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(234, 240, 255, .80);
}

.bullets li {
  margin: 6px 0;
}

.bullets-wrapper ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(234, 240, 255, .80);
}

.bullets-wrapper li {
  margin: 6px 0;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* RIGHT tabs */
.hero-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  backdrop-filter: none;
}

.tab {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  padding: 14px 14px;
  border: 1px solid var(--soft2);
  background: rgba(234, 240, 255, .05);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  color: rgba(234, 240, 255, .88);
}

.tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
  background: rgba(234, 240, 255, .07);
  border-color: rgba(234, 240, 255, .22);
}

.tab.is-active {
  background: linear-gradient(180deg, rgba(107, 228, 255, .16), rgba(107, 228, 255, .07));
  border-color: rgba(107, 228, 255, .45);
  color: var(--text);
}

.tab-disabled,
.tab-disabled:hover {
  cursor: default;
  opacity: 1;
  background: rgba(234, 240, 255, .00);
  border: 0px;
  color: rgba(234, 240, 255, .92);
  text-shadow: none;
  transform: none;
  box-shadow: none;
  padding: 6px 2px 8px 2px;
}

.tab-title {
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: .01em;
}

.tab-desc {
  font-size: 13px;
  color: rgba(234, 240, 255, .78);
  opacity: 1;
}

/* ====== Placeholder sections styling (kept for future blocks) ====== */
.placeholder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 22px;
  background: linear-gradient(180deg, rgba(11, 16, 32, .76), rgba(11, 16, 32, .58));
  box-shadow: var(--shadow2);
}

.placeholder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

/* ====== Growth Technology Partner (gtpi) - Light Theme ====== */
.gtpi {
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
  margin: 0 0 40px 0;
}

/* Cabeçalho */
.gtpi-head h2 {
  margin: 0 0 8px;
  font-size: 42px;
  /* Tamanho maior conforme a imagem */
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #000000;
}

.gtpi-head p {
  margin: 0;
  color: #6B7280;
  /* Cinza médio */
  font-size: 18px;
  max-width: 820px;
}

/* Tabs (Abas) */
.gtpi-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.gtpi-tab {
  border-radius: 999px;
  padding: 10px 20px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: #6B7280;
  transition: all 0.2s ease;
}

.gtpi-tab:hover {
  background: #F3F4F6;
  color: #111827;
}

.gtpi-tab.is-active {
  background: #24DBFF;
  /* O Ciano exato do design */
  color: #FFFFFF;
}

/* Paineis e Título Interno */
.gtpi-panels {
  margin-top: 32px;
}

.gtpi-panel {
  display: none;
}

.gtpi-panel.is-active {
  display: block;
}

.gtpi-panel-head {
  margin-bottom: 16px;
}

.gtpi-panel-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #000000;
}

/* Carousel / Grid */
.gtpi-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 1fr 1fr;
  /* Agora é apenas uma linha no desktop */
  grid-auto-columns: minmax(240px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.gtpi-carousel::-webkit-scrollbar {
  height: 8px;
}

.gtpi-carousel::-webkit-scrollbar-thumb {
  background: #E5E7EB;
  border-radius: 999px;
}

/* Cards Individuais */
.gtpi-card {
  scroll-snap-align: start;
  border-radius: 16px;
  padding: 24px;
  min-height: 160px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  border-radius: 16px;
  /* Cinza super claro, quase branco */
  position: relative;
  overflow: hidden;
  box-shadow: none;
  /* Removida a sombra pesada do design escuro */
}

/* Removemos o pseudo-elemento ::before que criava os números de fundo */
.gtpi-card::before {
  display: none;
  content: none;
}

.gtpi-card h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #24DBFF;
  /* Título em Ciano */
}

.gtpi-card p {
  margin: 0;
  color: #4B5563;
  /* Texto do card em cinza escuro */
  font-size: 15px;
  line-height: 1.5;
}

/* Estilo para a aba "Quando não é para ti" (Opcional, se quiser manter variação de cor) */
.gtpi-card.gtp-danger h4 {
  color: #EF4444;
  /* Vermelho claro para contraste, se aplicável */
}

/* CTA Final da Seção */
.gtpi-cta {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gtpi-cta strong {
  color: #000000;
  font-size: 16px;
  font-weight: 800;
}

.gtpi-cta span {
  color: #6B7280;
  font-size: 15px;
}

.gtpi-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Botões do CTA ajustados para o novo layout */
.gtpi-cta-actions .btn {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gtpi-cta-actions .btn.ghost {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  /* Sombra suave para o botão branco */
}

.gtpi-cta-actions .btn.ghost:hover {
  border-color: #D1D5DB;
  transform: translateY(-1px);
}

.gtpi-cta-actions .btn.primary {
  background: #24DBFF;
  /* Ciano */
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(36, 219, 255, 0.2);
}

.gtpi-cta-actions .btn.primary:hover {
  background: #1CBDE0;
  transform: translateY(-1px);
}

/* =========================================================
   PROOF & TESTEMUNHOS BLOCK (ESTRUTURA CODEPEN + CORES ORIGINAIS/DARK)
   ========================================================= */
#proof {
  padding: 80px 0;
  color: var(--text);
  background: linear-gradient(90deg, #42146F 0%, #182C71 100%);
}

#proof .proof-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  /* background: linear-gradient(180deg, rgba(11,16,32,.76), rgba(11,16,32,.58)); */
  box-shadow: var(--shadow2);
  overflow: hidden;
}

#proof .proof-inner {
  padding: 22px;
}

#proof .proof-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

#proof .proof-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.02em;
  color: #FFFFFF;
}

#proof .proof-head p {
  margin: 0;
  color: var(--muted);
  max-width: 78ch;
}

#proof .proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

#proof .proof-col {
  border: 1px solid var(--soft2);
  border-radius: var(--radius);
  background: rgba(234, 240, 255, .04);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  overflow: hidden;
  position: relative;
}

#proof .proof-col-head {
  padding: 14px 14px 10px 14px;
  border-bottom: 1px solid rgba(234, 240, 255, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#proof .proof-col-head h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: .02em;
  color: rgba(234, 240, 255, .92);
}

/* Brilhos das colunas (mantidos do seu design escuro) */
#proof .proof-col[data-kind="demos"] {
  --a: rgba(107, 228, 255, .16);
}

#proof .proof-col[data-kind="cases"] {
  --a: rgba(100, 255, 182, .14);
}

#proof .proof-col[data-kind="products"] {
  --a: rgba(181, 140, 255, .14);
}

#proof .proof-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 240px at 25% 8%, var(--a), transparent 60%);
  pointer-events: none;
}

/* Carrossel Vertical */
#proof .vcar {
  position: relative;
  display: grid;
  grid-template-rows: 28px 1fr 28px;
  /* O segredo do layout fixo */
  gap: 8px;
  padding: 12px 12px 14px 12px;
}

#proof .vcar-btn {
  width: 100%;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(234, 240, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  /* box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.22); */
}

#proof .vcar-btn:hover {
  transform: translateY(-1px);
  background: rgba(234, 240, 255, .06);
  border-color: rgba(234, 240, 255, .26);
}

#proof .vcar-btn svg {
  width: 16px;
  height: 16px;
  opacity: .9;
}

/* Item Card (Poster Style) */
#proof .vcar-item {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(234, 240, 255, .16);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(234, 240, 255, .04);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#proof .vcar-img {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .48)),
    radial-gradient(520px 240px at 20% 15%, rgba(107, 228, 255, .16), transparent 62%),
    linear-gradient(135deg, rgba(14, 22, 48, .85), rgba(11, 16, 32, .65));
  border-bottom: 1px solid rgba(234, 240, 255, .12);
  position: relative;
  overflow: hidden;
  height: 180px;
}

#proof .vcar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  filter: saturate(1.05) contrast(1.03);
}

#proof .vcar-img .ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(234, 240, 255, .86);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 12px;
  text-align: center;
}

#proof .vcar-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

#proof .vcar-title {
  margin: 0;
  font-size: 15px;
  color: rgba(234, 240, 255, .92);
  letter-spacing: -.01em;
  font-weight: 800;
}

#proof .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

#proof .tag {
  font-size: 10.5px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}

/* Botão "Ver detalhes" */
#proof .vcar-actions .btn.ghost {
  display: inline-block;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  text-decoration: none;
  /* background: transparent; */
  transition: all 0.2s ease;
}

#proof .vcar-actions .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =========================================================
   TESTEMUNHOS (ESTRUTURA CODEPEN + CORES DARK)
   ========================================================= */
#proof .proof-divider {
  height: 1px;
  background: rgba(234, 240, 255, .14);
  margin: 18px 0;
}

#proof .t-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

#proof .t-head h3 {
  margin: 0;
  font-size: 18px;
  color: rgba(234, 240, 255, .92);
  font-weight: 800;
}

#proof .t-head p {
  margin: 4px 0 0 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 15px;
}

#proof .t-carousel-wrap {
  position: relative;
  border-radius: var(--radius);
  padding: 0 46px;
  /* Espaço para as setas não cortarem os cards */
}

#proof .t-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 16px);
  gap: 24px;
  overflow: hidden;
  padding-bottom: 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#proof .t-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(234, 240, 255, .18);
  background: rgba(11, 16, 32, .55);
  backdrop-filter: blur(8px);
  color: rgba(234, 240, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
  transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
  z-index: 5;
  opacity: .95;
}

#proof .t-nav:hover {
  transform: translateY(-50%) translateY(-1px);
  background: rgba(11, 16, 32, .68);
  border-color: rgba(234, 240, 255, .26);
  opacity: 1;
}

#proof .t-prev {
  left: -6px;
}

#proof .t-next {
  right: -6px;
}

#proof .t-card {
  scroll-snap-align: start;
  border: 1px solid rgba(234, 240, 255, .16);
  border-radius: var(--radius);
  background: rgba(234, 240, 255, .04);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  padding: 14px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

#proof .t-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

#proof .t-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(234, 240, 255, .18);
  background: radial-gradient(circle at 30% 20%, rgba(107, 228, 255, .55), rgba(181, 140, 255, .28) 55%, rgba(100, 255, 182, .16) 100%), rgba(234, 240, 255, .03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(234, 240, 255, .90);
  flex: 0 0 auto;
}

#proof .t-name {
  margin: 0;
  font-weight: 900;
  color: rgba(234, 240, 255, .92);
  line-height: 1.1;
}

#proof .t-role {
  margin: 3px 0 0 0;
  font-size: 12px;
  color: rgba(234, 240, 255, .70);
}

#proof .t-quote {
  margin: 0;
  color: rgba(234, 240, 255, .82);
  line-height: 1.55;
}

/* Responsividade */
@media (max-width: 980px) {
  #proof .proof-grid {
    grid-template-columns: 1fr;
  }

  #proof .vcar-item {
    grid-template-columns: 1fr;
    grid-template-rows: 170px auto;
  }

  #proof .t-carousel {
    grid-auto-columns: calc(50% - 6px);
  }
}

@media (max-width: 680px) {
  #proof .t-carousel-wrap {
    padding: 0 42px;
  }

  #proof .t-prev {
    left: 6px;
  }

  #proof .t-next {
    right: 6px;
  }

  #proof .t-carousel {
    grid-auto-columns: 100%;
  }
}

/* =========================================================
   FINAL CTA BLOCK
   ========================================================= */
#final-cta {
  padding: 80px 0 100px 0;
  background: #FFFFFF;
  /* Fundo branco */
}

.final-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

/* Coluna Esquerda */
.final-cta-left {
  padding-right: 20px;
}

.final-cta-left h2 {
  margin: 0 0 16px;
  font-size: 48px;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #000000;
  line-height: 1.1;
}

.final-cta-left p {
  margin: 0 0 24px;
  color: #6B7280;
  font-size: 18px;
  /* max-width: 90%; */
}

/* Listas WYSIWYG do lado esquerdo */
.final-cta-bullets ul {
  margin: 0;
  padding-left: 20px;
  color: #4B5563;
  font-size: 16px;
}

.final-cta-bullets li {
  margin: 12px 0;
}

.final-cta-bullets strong {
  color: #000000;
  font-weight: 800;
}

/* Coluna Direita (Card) */
.final-cta-right {
  display: flex;
  justify-content: flex-end;
}

.final-cta-box {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  background: #F3F4F6;
  /* Cinza super claro do card */
  padding: 40px 30px;
  text-align: center;
  /* Tudo centralizado no card */
  box-shadow: none;
  /* Sem sombra no design light */
}

.final-cta-kicker {
  font-size: 11px;
  color: #6B7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.final-cta-title {
  font-weight: 800;
  font-size: 28px;
  color: #000000;
}

.final-cta-sub {
  margin-top: 6px;
  color: #6B7280;
  font-size: 14px;
}

/* Botões centralizados */
.final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.final-cta-actions .btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.final-cta-actions .btn.primary {
  background: #24DBFF;
  /* Ciano exato */
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(36, 219, 255, 0.2);
}

.final-cta-actions .btn.primary:hover {
  background: #1CBDE0;
  transform: translateY(-1px);
}

.final-cta-actions .btn.ghost {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.final-cta-actions .btn.ghost:hover {
  border-color: #D1D5DB;
  transform: translateY(-1px);
}

/* Nota de rodapé */
.final-cta-note {
  margin-top: 24px;
  font-size: 13px;
  color: #6B7280;
}

.final-cta-note a {
  color: #4B5563;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.final-cta-note a:hover {
  color: #000000;
}

/* =========================================================
   RESPONSIVIDADE CONSOLIDADA (max-width: 980px)
   ========================================================= */
@media (max-width: 980px) {

  /* --- OUTRAS SECÇÕES DA PÁGINA (Mantido do seu original) --- */
  .menu {
    display: none;
  }

  .hero .container {
    max-width: 100%;
    padding: 0;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .hero-tabs {
    flex-direction: row;
    overflow-x: auto;
  }

  .tab {
    min-width: 260px;
    white-space: nowrap;
  }

  .tab-desc {
    white-space: normal;
  }

  .brand {
    min-width: auto;
  }

  .nav-cta {
    min-width: auto;
  }

  #proof .proof-grid {
    grid-template-columns: 1fr;
  }

  #proof .vcar-item {
    grid-template-columns: 1fr;
    grid-template-rows: 170px auto;
  }

  /* --- CORREÇÃO DO FINAL CTA (O problema da imagem) --- */

  /* 1. Quebra a grelha de 2 colunas para 1 coluna e ajusta o padding interno da caixa */
  .final-cta {
    display: flex;
    /* Mudamos de Grid para Flex para ser mais à prova de bala no mobile */
    flex-direction: column;
    padding: 32px 24px;
    /* Padding interno seguro para mobile (evita texto colado na borda da caixa) */
    gap: 40px;
    border-radius: 20px;
  }

  /* 2. Remove restrições e alinhamentos da coluna esquerda */
  .final-cta-left {
    padding-right: 0;
    border-right: none;
    border-bottom: none;
    /* Removido o border-bottom que causava choque */
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  /* 3. Reduz o tamanho da fonte monstruosa no mobile! */
  .final-cta-left h2 {
    font-size: 32px;
    /* Reduzido de 48px para caber no ecrã sem quebrar palavras ao meio */
    margin-bottom: 20px;
    word-break: break-word;
    /* Se uma palavra for muito longa (ex: previsibilidade), ela quebra em vez de vazar */
  }

  /* 4. Ajusta o parágrafo de introdução */
  .final-cta-left p {
    max-width: 100%;
    font-size: 16px;
    /* Ligeiramente menor para leitura confortável */
    margin-bottom: 32px;
  }

  /* 5. Mantém a lista alinhada à esquerda para ler bem, mas centrada no bloco */
  .final-cta-bullets {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .final-cta-bullets ul {
    text-align: left;
    display: inline-block;
    padding-left: 0;
    /* Remove padding extra */
    margin-left: 20px;
    /* Cria espaço para as bolinhas (bullets) */
  }

  /* 6. Garante que o Card ocupa o espaço todo mas não vaza */
  .final-cta-right {
    justify-content: center;
    width: 100%;
  }

  .final-cta-box {
    max-width: 100%;
    /* Força o card a respeitar o container mobile */
    box-sizing: border-box;
    padding: 32px 20px;
    /* Padding ligeiramente menor no card interno */
  }
}

/* On small screens keep arrows inside */
@media(max-width: 680px) {
  #proof .t-carousel-wrap {
    padding: 0 42px;
  }

  #proof .t-prev {
    left: 6px;
  }

  #proof .t-next {
    right: 6px;
  }
}

/* ====== Responsive (min-width depois) ====== */
@media(min-width: 980px) {
  #proof .t-carousel {
    grid-auto-columns: calc(50% - 6px);
  }

  /* 2 cards */
}

@media(min-width: 1220px) {
  #proof .t-carousel {
    grid-auto-columns: calc(33.333% - 8px);
  }

  /* 3 cards */
}