/* =========================================================
   Logon Sistemas  /  pages.css
   Hero, secoes especificas e blocos de pagina
   ========================================================= */

/* ============================================ HERO em carrossel */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(168deg, #071431 0%, #050e26 46%, #03080f 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  /* canvas e elemento substituido: sem width/height explicitos o tamanho do
     bitmap vira a largura de layout e estica a pagina no celular. */
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.55;
}

/* os slides ficam empilhados na mesma celula do grid e trocam por fade */
.hero-trilho { position: relative; display: grid; }

.hero-slide {
  grid-area: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  min-height: min(86vh, 780px);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(6.5rem, 11vw, 9rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s var(--ease-soft), visibility 0.85s;
}

.hero-slide.is-active { opacity: 1; visibility: visible; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 11s linear;
  filter: brightness(1.14) saturate(1.05);
}

/* aproximacao lenta enquanto o slide esta no ar */
.hero-slide.is-active .hero-bg img { transform: scale(1); }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(3, 8, 20, 0.78) 0%, rgba(4, 12, 32, 0.62) 36%,
                    rgba(4, 12, 32, 0.38) 66%, rgba(6, 22, 56, 0.24) 100%),
    linear-gradient(to top, rgba(3, 8, 20, 0.5), transparent 42%);
}

.hero-conteudo { position: relative; width: 100%; }

.hero-titulo {
  color: #fff;
  /* 20ch cabe os títulos mais longos em três linhas em vez de quatro */
  max-width: 20ch;
  font-size: clamp(2rem, 1.25rem + 2.9vw, 3.45rem);
  letter-spacing: -0.032em;
  margin-bottom: 1.2rem;
}

.hero-categoria { margin-bottom: 1.35rem; }

.hero-titulo .hl {
  display: block;
  background: linear-gradient(96deg, #61a0ff, #9fd0ff 55%, #d9ecff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead { max-width: 52ch; color: #b6cbe6; }
.hero .btn-row { margin-top: 2.1rem; }

/* ---------------------------------- controles do carrossel */
.hero-controles {
  position: absolute;
  left: 50%;
  bottom: clamp(1.6rem, 3.5vw, 2.9rem);
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-pontos { display: flex; align-items: center; gap: 0.55rem; }

.hero-ponto {
  width: 26px;
  height: 4px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.5s var(--ease), background 0.4s var(--ease-soft);
}

.hero-ponto:hover { background: rgba(255, 255, 255, 0.6); }

.hero-ponto.is-active {
  width: 54px;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-300));
}

.hero-setas { display: flex; gap: 0.6rem; }

.hero-seta {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft),
              transform 0.3s var(--ease);
}

.hero-seta svg { width: 20px; height: 20px; }
.hero-seta:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.55); }
.hero-seta:active { transform: scale(0.94); }

.hero-seta.destaque {
  background: linear-gradient(120deg, var(--brand-600), var(--brand-500));
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}

.hero-seta.destaque:hover { background: linear-gradient(120deg, var(--brand-500), var(--brand-400)); }

@media (max-width: 620px) {
  .hero-slide { min-height: min(90vh, 680px); padding-bottom: clamp(7rem, 18vw, 9rem); }
  .hero-controles { flex-direction: row-reverse; justify-content: space-between; }
  .hero-seta { width: 44px; height: 44px; }
  .hero-ponto.is-active { width: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img,
  .hero-slide.is-active .hero-bg img { transform: none; }
}

/* midia usada nas secoes internas (bloco multiplataforma) */
.hero-media { position: relative; }

.hero-media .float-card.fc-a { left: -6%; bottom: 13%; animation-delay: 0.4s; }
.hero-media .float-card.fc-b { right: -5%; top: 9%; animation-delay: 1.6s; }

.hero-glow {
  position: absolute;
  inset: 8% -12% -14% 6%;
  z-index: -1;
  background: radial-gradient(circle, rgba(44, 123, 242, 0.5), transparent 66%);
  filter: blur(56px);
}

@media (max-width: 1080px) {
  .hero-media { max-width: 620px; }
  .hero-media .float-card.fc-a { left: 2%; }
  .hero-media .float-card.fc-b { right: 2%; }
}

@media (max-width: 560px) {
  .hero-media .float-card { position: static; margin-top: 0.9rem; animation: none; }
  .hero-media { display: grid; gap: 0.2rem; }
}

/* ============================================ hero interno (paginas) */
.hero-page {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(ellipse 80% 70% at 72% 10%, rgba(11, 87, 201, 0.26), transparent 62%),
    linear-gradient(160deg, #0c2248, #071529 78%);
  overflow: hidden;
  text-align: center;
}

.hero-page h1 { color: #fff; max-width: 20ch; margin: 1.2rem auto 1.3rem; }
.hero-page .lead { max-width: 62ch; margin-inline: auto; color: #a9c0de; }
.hero-page .btn-row { justify-content: center; margin-top: 2.1rem; }
.hero-page .hero-canvas { opacity: 0.42; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #7f9abd;
  margin-top: 2.5rem;
}

.crumbs a { color: #a9c0de; }
.crumbs a:hover { color: #fff; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: 0.5rem; opacity: 0.45; }
.crumbs li { display: flex; gap: 0.5rem; }

/* ============================================ dor e solucao */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.pain-col {
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  height: 100%;
}

.pain-col.before {
  background: #fbfcfe;
  border: 1px dashed var(--line-strong);
}

.pain-col.after {
  background: linear-gradient(158deg, var(--brand-700), var(--brand-600) 55%, #0b57c9);
  color: #d5e4fb;
  box-shadow: var(--shadow-brand);
}

.pain-col.after h3 { color: #fff; }

.pain-col h3 { margin-bottom: 1.4rem; font-size: var(--step-2); }

.pain-list { display: grid; gap: 0.95rem; }

.pain-list li {
  position: relative;
  padding-left: 2.1rem;
  font-size: 0.99rem;
}

.pain-col.before .pain-list li { color: var(--ink-500); }

/* marcador padrao para a lista de dores usada fora do bloco comparativo */
.pain-list.neg li { color: var(--ink-500); }

.pain-list.neg li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fdeaea url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D9534F' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.pain-col.before .pain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fdeaea url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D9534F' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.pain-col.after .pain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

@media (max-width: 820px) { .pain-grid { grid-template-columns: 1fr; } }

/* ============================================ EVA: analisa e executa */
.eva-fluxo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.eva-fluxo-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}

.eva-fluxo-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
}

.eva-fluxo-ico svg { width: 22px; height: 22px; }

.eva-fluxo-col h3 {
  margin-bottom: 1.1rem;
  font-size: var(--step-2);
}

.eva-fluxo-col .check-list li {
  font-size: 0.95rem;
  color: var(--ink-500);
}

@media (max-width: 820px) { .eva-fluxo { grid-template-columns: 1fr; } }

/* ============================================ modulos em destaque */
.mod-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mod-card ul {
  display: grid;
  gap: 0.42rem;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--ink-500);
}

.mod-card ul li { position: relative; padding-left: 1.05rem; }

.mod-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-300);
}

/* ============================================ segmentos */
.seg-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  color: #fff;
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.seg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.seg-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.2s var(--ease);
}

.seg-card:hover img { transform: scale(1.09); }

.seg-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(3, 8, 20, 0.92) 12%, rgba(1, 42, 100, 0.55) 55%, rgba(1, 67, 158, 0.25));
  transition: opacity 0.5s;
}

.seg-card:hover::after { opacity: 0.86; }

.seg-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 340px;
  padding: clamp(1.4rem, 2.6vw, 2rem);
}

.seg-body h3 { color: #fff; margin-bottom: 0.5rem; }
.seg-body p { color: #bfd2ec; font-size: 0.95rem; }

.seg-ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #fff;
}

.seg-ico svg { width: 22px; height: 22px; }

.seg-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-200);
}

.seg-more svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.seg-card:hover .seg-more svg { transform: translateX(5px); }

/* ============================================ planos */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}

.plan.featured {
  border-color: transparent;
  background: linear-gradient(165deg, var(--brand-700), var(--brand-600) 58%, #0b57c9);
  color: #d5e4fb;
  box-shadow: var(--shadow-brand);
}

.plan.featured h3, .plan.featured .price b { color: #fff; }
.plan.featured .plan-meta { color: #b9d0f2; border-color: rgba(255, 255, 255, 0.2); }
.plan.featured .check-list li { color: #d0e0f8; }

.plan.featured .check-list li::before {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.95rem;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--brand-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.plan h3 { font-size: var(--step-1); }

.plan .price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 1rem 0 0.2rem;
}

.plan .price b {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  color: var(--brand-600);
  line-height: 1;
}

.plan .price small { font-size: 0.9rem; color: inherit; opacity: 0.8; }
.plan .price.sob b { font-size: clamp(1.4rem, 2.1vw, 1.75rem); }

.plan-meta {
  padding: 0.85rem 0 1.35rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-500);
}

.plan .check-list { margin-bottom: 1.75rem; }
.plan .check-list li { font-size: 0.93rem; }
.plan .btn { margin-top: auto; }

.plan-more {
  margin-top: 1rem;
  font-size: 0.83rem;
  text-align: center;
  opacity: 0.85;
}

@media (max-width: 980px) { .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }

/* ============================================ tabela comparativa */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

table.compare {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.93rem;
}

table.compare th,
table.compare td {
  padding: 0.9rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

table.compare thead th:first-child { text-align: left; min-width: 240px; }

table.compare thead th {
  position: sticky;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 620;
  z-index: 2;
}

table.compare tbody th:first-child,
table.compare tbody td:first-child {
  text-align: left;
  font-weight: 550;
  color: var(--ink-800);
  min-width: 240px;
}

table.compare tbody tr:nth-child(even) { background: var(--surface-2); }
table.compare tbody tr:hover { background: var(--brand-50); }

table.compare .yes,
table.compare .no {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

table.compare .yes { background: #e3f6ec; color: var(--success); }

/* o "+" marca modulo adicional: existe no plano, mas cobrado a parte */
table.compare .add {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
}
table.compare .no { background: #f1f4f9; color: var(--ink-300); }
table.compare .yes svg, table.compare .no svg { width: 13px; height: 13px; }

table.compare .grp td {
  background: var(--surface-3);
  font-family: var(--font-display);
  font-weight: 650;
  color: var(--brand-700);
  text-align: left;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.table-hint {
  display: none;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--ink-400);
  text-align: center;
}

@media (max-width: 860px) { .table-hint { display: block; } }

/* ============================================ abas de funcionalidades */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 570;
  color: var(--ink-600);
  transition: all 0.3s var(--ease-soft);
}

.tab svg { width: 17px; height: 17px; }
.tab:hover { border-color: var(--brand-300); color: var(--brand-600); }

.tab[aria-selected="true"] {
  background: linear-gradient(120deg, var(--brand-600), var(--brand-500));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.tab-panel[hidden] { display: none; }

.tab-panel {
  animation: panelIn 0.5s var(--ease);
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ============================================ linha do tempo */
.timeline {
  /* a coluna do marcador e o diâmetro ficam em variáveis: a linha e os
     marcadores derivam das duas, então não têm como sair de alinhamento */
  --tl-col: 3.4rem;
  --tl-dot: 26px;
  --tl-traco: 2px;

  position: relative;
  display: grid;
  gap: clamp(1.9rem, 3.5vw, 3rem);
  max-width: var(--wrap-narrow);
  margin-inline: auto;
  padding: 0 0 0 var(--tl-col);
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: calc((var(--tl-dot) - var(--tl-traco)) / 2);
  top: 0.5em;
  bottom: 0.5em;
  width: var(--tl-traco);
  border-radius: var(--tl-traco);
  background: linear-gradient(180deg,
              var(--brand-400) 0%, var(--brand-500) 45%,
              rgba(97, 160, 255, 0.35) 78%, transparent 100%);
}

.tl-item { position: relative; }

.tl-item::before {
  content: "";
  position: absolute;
  left: calc(var(--tl-col) * -1);
  top: calc(0.5em - var(--tl-dot) / 2 + 0.45em);
  width: var(--tl-dot);
  height: var(--tl-dot);
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-500);
  box-shadow: 0 0 0 5px rgba(11, 87, 201, 0.11);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease-soft);
}

/* a última etapa é o presente: marcador preenchido em vez de vazado */
.tl-item:last-child::before {
  background: var(--brand-500);
  box-shadow: 0 0 0 5px rgba(11, 87, 201, 0.16),
              0 0 18px rgba(44, 123, 242, 0.55);
}

.tl-item:hover::before { transform: scale(1.14); }

.tl-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 0.45rem;
}

.tl-item h3 { font-size: var(--step-1); margin-bottom: 0.55rem; }
.tl-item p { color: var(--ink-500); max-width: 62ch; }

.dark .tl-item::before {
  background: var(--navy-900);
  box-shadow: 0 0 0 5px rgba(97, 160, 255, 0.13);
}

.dark .tl-item:last-child::before {
  background: var(--brand-400);
  box-shadow: 0 0 0 5px rgba(97, 160, 255, 0.18),
              0 0 20px rgba(97, 160, 255, 0.6);
}

.dark .tl-item b { color: var(--brand-300); }
.dark .tl-item p { color: #a7bdda; }

@media (max-width: 620px) {
  .timeline { --tl-col: 2.6rem; --tl-dot: 22px; }
}

/* ============================================ contato */
.contact-card {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}

.contact-card .card-ico { margin-bottom: 0; flex-shrink: 0; width: var(--ico-m); height: var(--ico-m); }
.contact-card .card-ico svg { width: 46%; height: 46%; }
.contact-card h3 { font-size: 1.06rem; margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.95rem; margin-bottom: 0.5rem; }
.contact-card a { font-weight: 600; word-break: break-word; }

.map-frame {
  border: 0;
  width: 100%;
  height: clamp(300px, 42vw, 440px);
  border-radius: var(--r-lg);
  filter: grayscale(0.25) contrast(1.04);
}

/* ============================================ CTA final */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.cta-band img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(1, 42, 100, 0.94), rgba(3, 8, 20, 0.86) 62%, rgba(1, 67, 158, 0.8));
}

.cta-band h2 { color: #fff; max-width: 20ch; margin: 1.1rem auto 1.2rem; }
.cta-band .lead { color: #b8ccea; max-width: 58ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 2.2rem; }

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #8fa9cd;
}

/* ============================================ destaque numerado */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}

.step { position: relative; padding-top: 3.6rem; counter-increment: step; }

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--brand-300);
}

.step h3 { font-size: var(--step-1); margin-bottom: 0.55rem; }
.step p { color: var(--ink-500); font-size: 0.97rem; }
.dark .step p { color: #a7bdda; }
.dark .step::before { -webkit-text-stroke-color: rgba(97, 160, 255, 0.6); }

/* ============================================ faixa de logos e apoio */
.support-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.75rem);
  border-radius: var(--r-lg);
  background: linear-gradient(140deg, #fff, var(--brand-50));
  border: 1px solid var(--brand-100);
  box-shadow: var(--shadow-sm);
}

.support-item { display: flex; gap: 0.9rem; align-items: flex-start; }

.support-item svg {
  width: 26px;
  height: 26px;
  color: var(--brand-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.support-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink-900);
  margin-bottom: 0.15rem;
}

.support-item span { font-size: 0.9rem; color: var(--ink-500); }

/* ============================================ 404 */
.err-page {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--header-h);
}

.err-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px var(--brand-300);
}

/* ============================================ segmento sem foto */
.seg-card.flat {
  background: linear-gradient(160deg, var(--navy-800), var(--brand-700) 60%, var(--brand-600));
  border: 1px solid rgba(120, 170, 255, 0.16);
}

.seg-card.flat::after { display: none; }
.seg-card.flat.s2 { background: linear-gradient(160deg, var(--navy-900), var(--brand-800) 55%, #0b57c9); }
.seg-card.flat.s3 { background: linear-gradient(200deg, var(--brand-700), var(--navy-850) 62%, var(--navy-900)); }
.seg-card.flat.s4 { background: linear-gradient(140deg, #0b57c9, var(--brand-700) 45%, var(--navy-850)); }

.seg-ghost {
  position: absolute;
  right: -14%;
  bottom: -10%;
  width: 62%;
  color: rgba(255, 255, 255, 0.075);
  pointer-events: none;
  transition: transform 0.7s var(--ease), color 0.5s;
}

.seg-ghost svg { width: 100%; height: auto; stroke-width: 1.1; }

.seg-card.flat:hover .seg-ghost {
  transform: translate3d(-6%, -6%, 0) rotate(-6deg);
  color: rgba(255, 255, 255, 0.13);
}

.seg-card.flat .seg-body { justify-content: flex-end; }

/* ============================================ indice ancorado (sticky) */
.tabs.sticky {
  position: sticky;
  top: calc(var(--header-h) - 8px);
  z-index: 40;
  padding: 0.75rem 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-pill);
}

.tabs a.tab { text-decoration: none; }

/* ============================================ bloco de funcionalidade */
.feat {
  scroll-margin-top: calc(var(--header-h) + 84px);
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.feat:first-of-type { border-top: 0; padding-top: 0; }

.feat-head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.feat-head .card-ico { margin-bottom: 0; flex-shrink: 0; }
.feat-head h2 { font-size: var(--step-3); }

.feat-lead { max-width: 62ch; color: var(--ink-500); font-size: 1.06rem; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.7rem 2rem;
  margin-top: 2rem;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border-radius: var(--r-lg);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

/* ============================================ card de segmento orgânico */
.seg-card.organica {
  border-radius: 28px 72px 28px 72px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
              border-radius 0.6s var(--ease);
}

.seg-card.organica:hover { border-radius: 72px 28px 72px 28px; }

.seg-card.organica picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

/* ============================================ painel de ganhos (segmentos) */
.ganhos {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  border-radius: 20px 40px 20px 40px;
  background: linear-gradient(155deg, var(--brand-700), var(--brand-600) 60%, #0b57c9);
  color: #d5e4fb;
  box-shadow: var(--shadow-brand);
}

.ganhos h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-size: 1.06rem;
}

.ganhos .seg-ico {
  width: var(--ico-p);
  height: var(--ico-p);
  border-radius: 11px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.ganhos .seg-ico svg { width: 19px; height: 19px; }

.ganhos .check-list li { color: #d0e0f8; font-size: 0.95rem; }

.ganhos .check-list li::before {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ============================================ faixa de clientes */
/* flex em vez de grid: com sete logos o grid deixava um órfão na segunda
   linha, e o flex centraliza a sobra sozinho */
/* Vinte e sete marcas, muitas com fundo colorido ou preto chapado no
   arquivo. Cada uma entra num cartão branco de proporção fixa: o grid fica
   regular e o fundo do logo vira conteúdo do cartão, não mancha na seção. */
.clientes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: clamp(0.6rem, 1.2vw, 0.9rem);
  list-style: none;
}

.cliente {
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

.cliente picture { display: block; }

.cliente img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 208;
  object-fit: contain;
  /* são marcas locais, não logos famosos: em cor elas convencem mais.
     O dessaturado leve só uniformiza o conjunto em repouso. */
  filter: grayscale(0.3) opacity(0.9);
  transition: filter 0.45s var(--ease-soft);
}

.cliente:hover {
  transform: translateY(-4px);
  border-color: var(--brand-100);
  box-shadow: var(--shadow-sm);
}

.cliente:hover img { filter: none; }

@media (hover: none) {
  .cliente img { filter: none; opacity: 0.97; }
}

@media (max-width: 560px) {
  .clientes { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .cliente, .cliente img { transition: none; }
  .cliente:hover { transform: none; }
}

/* home: faixa dupla com scroll infinito */
.clientes-showcase {
  display: grid;
  gap: clamp(0.65rem, 1.4vw, 0.9rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.clientes-faixa { overflow: hidden; }

.clientes-track {
  display: flex;
  gap: clamp(0.6rem, 1.2vw, 0.9rem);
  width: max-content;
  list-style: none;
  animation: clientes-scroll var(--speed, 50s) linear infinite;
  animation-play-state: paused;
}

.clientes-showcase.is-running .clientes-track { animation-play-state: running; }

.clientes-faixa.rev .clientes-track { animation-direction: reverse; }

.clientes-showcase:hover .clientes-track { animation-play-state: paused; }

.clientes-showcase .cliente {
  flex: 0 0 clamp(120px, 14vw, 168px);
}

@keyframes clientes-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .clientes-showcase {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .clientes-showcase .clientes-faixa { overflow: visible; }

  .clientes-showcase .clientes-track {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    animation: none;
  }

  .clientes-showcase .cliente { flex: 0 0 auto; }
}

/* ============================================ galeria de telas */
.telas-palco { position: relative; }

.tela {
  margin: 0 auto;
  max-width: 880px;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(10, 25, 55, 0.16);
  box-shadow: var(--shadow-lg);
}

.tela-barra {
  display: flex;
  gap: 7px;
  padding: 11px 15px;
  background: #101c33;
}

.tela-barra i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.tela-barra i:first-child { background: rgba(255, 120, 110, 0.75); }
.tela-barra i:nth-child(2) { background: rgba(255, 200, 90, 0.75); }
.tela-barra i:nth-child(3) { background: rgba(120, 215, 140, 0.75); }

.tela img { width: 100%; height: auto; display: block; }

.tela-desc {
  max-width: 62ch;
  margin: 1.25rem auto 0;
  text-align: center;
  color: var(--ink-500);
  font-size: 0.98rem;
}

/* a tela de celular é estreita: não faz sentido esticar até 880px */
.tela-slot.estreita .tela { max-width: 330px; background: transparent; border: 0; box-shadow: none; }
.tela-slot.estreita .tela-barra { display: none; }

.dark .tela-desc { color: #a7bdda; }

/* ============================================ celulares sobre a foto */
.mobi {
  position: absolute;
  left: -9%;
  bottom: -7%;
  z-index: 3;
  width: 56%;
  display: block;
  /* a imagem tem fundo transparente, então a sombra segue o contorno
     dos aparelhos em vez de desenhar um retângulo */
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.55));
  animation: floaty 7.5s ease-in-out infinite;
}

.mobi img { width: 100%; height: auto; display: block; }

.hero-media.com-mobi { padding-bottom: 3%; }

@media (max-width: 980px) {
  .mobi { left: 0; bottom: -4%; width: 46%; }
}

@media (max-width: 560px) {
  .mobi { position: static; width: 72%; margin: 1.25rem auto 0; animation: none; }
}

/* ============================================ pilares abaixo do hero */
.pilares-faixa {
  padding-block: clamp(2.75rem, 5vw, 4rem) clamp(3.5rem, 6vw, 5rem);
  background: linear-gradient(180deg, #03080f 0%, #061127 45%, #071733 100%);
}

.pilares {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.pilar {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, rgba(23, 58, 122, 0.55), rgba(10, 30, 70, 0.38));
  border: 1px solid rgba(120, 170, 255, 0.16);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease-soft),
              background 0.45s var(--ease-soft);
}

.pilar:hover {
  transform: translateY(-6px);
  border-color: rgba(120, 170, 255, 0.42);
  background: linear-gradient(155deg, rgba(28, 70, 145, 0.65), rgba(12, 36, 84, 0.45));
}

/* número grande vazado no canto, como na referência */
.pilar-num {
  position: absolute;
  right: 0.7rem;
  bottom: -0.5rem;
  z-index: -1;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(148, 190, 255, 0.3);
  pointer-events: none;
}

.pilar .card-ico {
  width: var(--ico-m);
  height: var(--ico-m);
  margin-bottom: 1.1rem;
  border-radius: 13px;
  background: rgba(120, 170, 255, 0.14);
  border-color: rgba(120, 170, 255, 0.26);
  color: var(--brand-300);
}

.pilar .card-ico svg { width: 48%; height: 48%; }

.pilar:hover .card-ico {
  background: linear-gradient(140deg, var(--brand-400), var(--brand-300));
  color: var(--navy-900);
}

.pilar h3 { color: #fff; font-size: 1.12rem; margin-bottom: 0.55rem; }
.pilar p { color: #a7bdda; font-size: 0.96rem; max-width: 40ch; }

@media (max-width: 900px) {
  .pilares { grid-template-columns: 1fr; }
  .pilar p { max-width: none; }
}

/* =========================================================
   Paginas de solucao: cards com foto, selo e itens
   ========================================================= */
.sol-grade {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.85rem);
  align-items: stretch;
}

.sol-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
              border-color 0.45s var(--ease);
}

.sol-card:hover,
.sol-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--brand-100);
  box-shadow: var(--shadow-md);
}

/* a capa recorta o zoom da foto, por isso o overflow fica aqui e nao no card:
   assim o selo pode vazar para fora da imagem sem ser cortado junto */
.sol-capa {
  display: block;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--surface-3);
  aspect-ratio: 760 / 506;
}

.sol-capa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.005);
  transition: transform 0.75s var(--ease);
}

.sol-card:hover .sol-capa img,
.sol-card:focus-within .sol-capa img { transform: scale(1.07); }

/* o selo entra no fluxo logo depois da capa e sobe pela margem negativa.
   Posicao absoluta dependeria da altura do card, que muda com o texto */
.sol-ico {
  position: relative;
  z-index: 2;
  margin: calc(var(--ico-g) / -2) 0 0 1.35rem;
  align-self: flex-start;
  display: grid;
  place-items: center;
  width: var(--ico-g);
  height: var(--ico-g);
  border-radius: 17px;
  background: linear-gradient(140deg, var(--brand-500), var(--brand-600) 70%);
  color: #fff;
  box-shadow: var(--shadow-brand);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.sol-ico svg { width: 48%; height: 48%; stroke-width: 1.7; }

.sol-card:hover .sol-ico,
.sol-card:focus-within .sol-ico {
  transform: rotate(-8deg) translateY(-4px) scale(1.06);
  box-shadow: 0 22px 44px rgba(1, 67, 158, 0.36);
}

.sol-corpo {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.5rem 1.6rem;
}

.sol-corpo h3 {
  font-size: 1.22rem;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}

.sol-corpo > p {
  margin-top: 0.55rem;
  font-size: 0.965rem;
  color: var(--ink-600);
}

.sol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.05rem;
  list-style: none;
}

.sol-tags li {
  padding: 0.33rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  font-size: 0.815rem;
  font-weight: 500;
  color: var(--brand-700);
  transition: background 0.3s var(--ease-soft);
}

.sol-card:hover .sol-tags li { background: #e6efff; }

.sol-tags .sol-mais {
  background: transparent;
  border-style: dashed;
  color: var(--ink-400);
}

.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.35rem;
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--brand-600);
  align-self: flex-start;
}

.sol-link svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.sol-card:hover .sol-link svg { transform: translateX(5px); }
.sol-link:hover { color: var(--brand-500); }

@media (max-width: 1000px) {
  .sol-grade { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 660px) {
  .sol-grade { grid-template-columns: 1fr; }
  .sol-ico { border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .sol-card,
  .sol-capa img,
  .sol-ico,
  .sol-link svg { transition: none; }
  .sol-card:hover { transform: none; }
  .sol-card:hover .sol-capa img { transform: scale(1.005); }
  .sol-card:hover .sol-ico { transform: none; }
}

/* ---------------------------------------- caracteristicas da plataforma */
.caracteristicas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem clamp(1rem, 2vw, 1.8rem);
  list-style: none;
  max-width: 1020px;
  margin-inline: auto;
}

.caracteristicas li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink-800);
  font-size: 0.96rem;
}

.carac-ico {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: var(--ico-p);
  height: var(--ico-p);
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
}

.carac-ico svg { width: 54%; height: 54%; }

@media (max-width: 900px) { .caracteristicas { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 580px) { .caracteristicas { grid-template-columns: 1fr; } }

/* ---------------------------------------- video do PDV */
.video-faixa { background: var(--surface-2); }

.video-palco {
  position: relative;
  max-width: 1020px;
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0a1224;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-strong);
}

.video-palco video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* o poster e uma tela clara: um veu forte deixava tudo cinza, entao o
   contraste do botao vem do disco atras dele, nao de escurecer a imagem */
.video-bt {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  background: rgba(6, 17, 39, 0.1);
  color: #fff;
  transition: opacity 0.4s var(--ease-soft), background 0.4s var(--ease-soft);
}

.video-bt svg {
  width: clamp(56px, 16vw, 86px);
  height: clamp(56px, 16vw, 86px);
  stroke-width: 1.1;
  border-radius: 50%;
  background: rgba(1, 67, 158, 0.92);
  box-shadow: 0 16px 40px rgba(3, 12, 30, 0.5);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease-soft);
}

.video-bt:hover { background: rgba(6, 17, 39, 0.16); }
.video-bt:hover svg { background: var(--brand-500); }
.video-bt:hover svg { transform: scale(1.08); }

/* rodando: o botao some e recua da faixa de baixo, senao cobriria a barra de
   controles nativa que aparece junto com o som */
.video-palco.is-tocando .video-bt {
  opacity: 0;
  bottom: 68px;
  background: transparent;
}

.video-palco.is-tocando .video-bt:hover { opacity: 1; background: rgba(6, 17, 39, 0.28); }
.video-palco.is-tocando .video-bt svg { width: 64px; height: 64px; }

.video-nota {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-400);
}

.video-palco .tela-barra { z-index: 3; }

/* =========================================================
   Segmentos: grade de grupos com icone e rotulo
   ========================================================= */
.seg-grade {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(1.6rem, 3vw, 2.6rem) clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.seg-grupo h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  padding-bottom: 0.85rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.seg-lista { list-style: none; }

.seg-lista li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.44rem 0;
  font-size: 0.955rem;
  color: var(--ink-600);
}

.seg-ic {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: var(--ico-xp);
  height: var(--ico-xp);
  color: var(--brand-500);
}

.seg-ic svg { width: 65%; height: 65%; stroke-width: 1.7; }

/* o do titulo do grupo ganha fundo para ancorar a coluna */
.seg-ic.forte {
  width: var(--ico-p);
  height: var(--ico-p);
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
}

.seg-ic.forte svg { width: 55%; height: 55%; }

/* ---------------------------------------- atalhos para as duas solucoes */
.seg-atalhos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  max-width: 900px;
  margin-inline: auto;
}

.seg-atalho {
  display: block;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

.seg-atalho:hover {
  transform: translateY(-5px);
  border-color: var(--brand-100);
  box-shadow: var(--shadow-md);
}

.seg-atalho h3 { margin-top: 0.9rem; font-size: 1.22rem; color: var(--ink-900); }
.seg-atalho p { margin-top: 0.45rem; font-size: 0.96rem; color: var(--ink-600); }

.seg-atalho .seg-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  font-weight: 650;
  font-size: 0.94rem;
  color: var(--brand-600);
}

.seg-atalho .seg-more svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.seg-atalho:hover .seg-more svg { transform: translateX(5px); }

@media (max-width: 680px) {
  .seg-atalhos { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .seg-atalho, .seg-atalho .seg-more svg { transition: none; }
  .seg-atalho:hover { transform: none; }
}


/* ---------------------------------------- plano: anual e modulos adicionais */
.plan-anual {
  margin-top: -0.35rem;
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
  color: var(--ink-500);
}

.plan-anual b { color: var(--brand-600); font-weight: 700; }
.plan.featured .plan-anual { color: #b9d0f2; }
.plan.featured .plan-anual b { color: #fff; }

.plan-mais { list-style: none; margin-top: 0.3rem; }
.plan-mais::before { content: none !important; }

.plan-mais a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--brand-600);
}

.plan-mais a svg { width: 16px; height: 16px; }
.plan.featured .plan-mais a { color: #9ec6ff; }

.plan-add {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--line-strong);
}

.plan.featured .plan-add { border-top-color: rgba(255, 255, 255, 0.22); }

.plan-add h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 0.55rem;
}

.plan.featured .plan-add h4 { color: #9db6d8; }

.plan-add ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; }

.plan-add li {
  padding: 0.24rem 0.6rem;
  border-radius: var(--r-pill);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  font-size: 0.79rem;
  color: var(--brand-700);
}

.plan.featured .plan-add li {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #dce9ff;
}

/* o botao fica sempre no fim do cartao, alinhado entre os tres planos */
.plan .btn-block { margin-top: auto; }
