/* Página pública — Conhecer a aplicação */

.cg-conhecer {
  width: min(1100px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 3rem;
}

.cg-conhecer__hero {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.cg-conhecer__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #38bdf8;
}

html[data-theme="light"] .cg-conhecer__eyebrow {
  color: #0284c7;
}

.cg-conhecer__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--auth-text, #e2e8f0);
}

html[data-theme="light"] .cg-conhecer__title {
  color: #0f172a;
}

.cg-conhecer__lead {
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--auth-text-muted, #94a3b8);
}

html[data-theme="light"] .cg-conhecer__lead {
  color: #475569;
}

.cg-conhecer__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  align-items: center;
  justify-content: center;
}

.cg-conhecer__btn-tour {
  width: auto;
  min-width: 12rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.cg-conhecer__link {
  border: 0;
  background: none;
  padding: 0;
  color: var(--auth-link, #38bdf8);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cg-conhecer__link:hover {
  color: #7dd3fc;
}

html[data-theme="light"] .cg-conhecer__link:hover {
  color: #0369a1;
}

.cg-conhecer__link--muted {
  font-weight: 600;
  opacity: 0.9;
}

.cg-conhecer__modules {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.cg-conhecer__module {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.45);
}

html[data-theme="light"] .cg-conhecer__module {
  background: #fff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.cg-conhecer__module:nth-child(even) {
  grid-template-columns: minmax(260px, 1.1fr) minmax(220px, 0.9fr);
}

.cg-conhecer__module:nth-child(even) .cg-conhecer__module-copy {
  order: 2;
}

.cg-conhecer__module:nth-child(even) .cg-conhecer__module-stage {
  order: 1;
}

.cg-conhecer__module-index {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #38bdf8;
}

html[data-theme="light"] .cg-conhecer__module-index {
  color: #0284c7;
}

.cg-conhecer__module-copy h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--auth-text, #e2e8f0);
}

html[data-theme="light"] .cg-conhecer__module-copy h2 {
  color: #0f172a;
}

.cg-conhecer__module-copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--auth-text-muted, #94a3b8);
}

html[data-theme="light"] .cg-conhecer__module-copy p {
  color: #475569;
}

.cg-conhecer__module-stage {
  min-width: 0;
}

.cg-conhecer__module-stage .cg-device {
  max-width: 100%;
}

.cg-conhecer__module-stage .cg-device__screen {
  max-height: 220px;
}

.cg-conhecer__module-stage[data-device="multi"] .cg-produto-tour__multi {
  transform: scale(0.92);
  transform-origin: center center;
}

.cg-conhecer__cta {
  margin-top: 2.5rem;
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.12), rgba(15, 23, 42, 0.55));
  text-align: center;
}

html[data-theme="light"] .cg-conhecer__cta {
  background: linear-gradient(160deg, #e0f2fe, #f8fafc);
  border-color: #7dd3fc;
}

.cg-conhecer__cta-inner {
  max-width: 32rem;
  margin: 0 auto;
}

.cg-conhecer__cta h2 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--auth-text, #e2e8f0);
}

html[data-theme="light"] .cg-conhecer__cta h2 {
  color: #0f172a;
}

.cg-conhecer__cta p {
  margin: 0 0 1.1rem;
  color: var(--auth-text-muted, #94a3b8);
  font-size: 0.95rem;
}

html[data-theme="light"] .cg-conhecer__cta p {
  color: #475569;
}

.cg-conhecer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.cg-conhecer__cta-actions .empresa-auth-split__submit {
  width: auto;
  min-width: 14rem;
}

@media (max-width: 820px) {
  .cg-conhecer__module,
  .cg-conhecer__module:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .cg-conhecer__module:nth-child(even) .cg-conhecer__module-copy,
  .cg-conhecer__module:nth-child(even) .cg-conhecer__module-stage {
    order: initial;
  }

  .cg-conhecer__module-stage .cg-device__screen {
    max-height: 200px;
  }
}

/* Página conhecer: container auth mais largo */
.landing-container:has(.cg-conhecer) {
  max-width: 1140px;
}
