/* Páginas públicas de marketing — Obter Acesso, Quem Somos, Como Funciona */

:root {
  --mkt-bg: #0a0a0a;
  --mkt-panel: #141414;
  --mkt-panel-2: #1a1a1a;
  --mkt-border: #2a2a2a;
  --mkt-text: #e8e8e8;
  --mkt-muted: #9a9a9a;
  --mkt-accent: #ffff00;
  --mkt-accent-hover: #e6e600;
  --mkt-gestao: #02bd24;
  --mkt-nuvem: #0dcaf0;
  --mkt-footer-h: 64px;
  --mkt-font-display: "Anton", sans-serif;
  --mkt-font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body.mkt-public {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--mkt-text);
  font-family: var(--mkt-font-body);
  background-color: var(--mkt-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 15% 20%, rgba(255, 255, 0, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(2, 189, 36, 0.05), transparent 50%),
    radial-gradient(ellipse 50% 35% at 70% 10%, rgba(13, 202, 240, 0.04), transparent 45%);
  background-attachment: fixed;
}

.mkt-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(12px, 2vh, 24px) clamp(14px, 2.5vw, 28px);
  padding-bottom: calc(var(--mkt-footer-h) + 12px);
  min-height: 0;
}

.mkt-page--viewport {
  min-height: calc(100dvh - var(--mkt-footer-h));
  justify-content: center;
}

.mkt-display {
  font-family: var(--mkt-font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

.mkt-lead {
  color: var(--mkt-muted);
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  line-height: 1.45;
  margin: 0;
}

.mkt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 0, 0.12);
  color: var(--mkt-accent);
  border: 1px solid rgba(255, 255, 0, 0.35);
}

.mkt-badge--ok {
  background: rgba(0, 230, 118, 0.1);
  color: #00e676;
  border-color: rgba(0, 230, 118, 0.35);
}

.mkt-card {
  background: var(--mkt-panel);
  border: 1px solid var(--mkt-border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.mkt-logo {
  max-height: clamp(40px, 5.5vh, 64px);
  width: auto;
}

.mkt-logo--sm {
  max-height: 40px;
}

/* Footer */
.mkt-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: var(--mkt-footer-h);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid #222;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  gap: clamp(12px, 2.5vw, 28px);
  padding: 8px 12px;
  flex-wrap: wrap;
}

.mkt-footer-link {
  color: #c2c2c2;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mkt-footer-link:hover {
  color: var(--mkt-accent);
}

.mkt-footer-logo {
  max-height: 44px;
}

/* Split layout — Obter Acesso */
.mkt-split {
  display: grid;
  gap: clamp(16px, 2.5vw, 36px);
  align-items: stretch;
  width: 100%;
}

@media (min-width: 992px) {
  .mkt-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
  }

  .mkt-page--viewport .mkt-split {
    max-height: calc(100dvh - var(--mkt-footer-h) - 24px);
  }
}

.mkt-pitch {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vh, 18px);
  min-width: 0;
}

.mkt-pitch-headline {
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
}

.mkt-pitch-headline .accent {
  color: var(--mkt-accent);
}

.mkt-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(6px, 1vh, 10px);
}

.mkt-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  line-height: 1.35;
  color: #d4d4d4;
}

.mkt-benefit i {
  color: var(--mkt-accent);
  font-size: 1.05rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.mkt-desktop-warn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: clamp(10px, 1.4vh, 14px) 14px;
  border-radius: 10px;
  background: rgba(255, 255, 0, 0.05);
  border: 1px solid rgba(255, 255, 0, 0.22);
  font-size: clamp(0.75rem, 1.1vw, 0.88rem);
  line-height: 1.4;
  color: #cfcfcf;
}

.mkt-desktop-warn i {
  color: var(--mkt-accent);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.mkt-desktop-warn strong {
  color: #fff;
}

/* Form card */
.mkt-form-card {
  padding: clamp(16px, 2.2vh, 28px) clamp(16px, 2vw, 28px);
  width: 100%;
  max-height: 100%;
  overflow: auto;
}

.mkt-form-card .form-label {
  color: var(--mkt-muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.mkt-form-card .form-control {
  background: #1f1f1f;
  border: 1px solid #333;
  color: #fff;
  padding: clamp(8px, 1.2vh, 11px) 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.mkt-form-card .form-control:focus {
  background: #262626;
  border-color: var(--mkt-accent);
  box-shadow: 0 0 0 3px rgba(255, 255, 0, 0.1);
  color: #fff;
}

.mkt-form-card .form-control::placeholder {
  color: #555;
}

.mkt-section-title {
  color: var(--mkt-accent);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: clamp(10px, 1.5vh, 16px) 0 clamp(6px, 1vh, 10px);
  padding-bottom: 6px;
  border-bottom: 1px solid #333;
}

.mkt-section-title:first-of-type {
  margin-top: 0;
}

.mkt-btn-cta {
  background: var(--mkt-accent);
  color: #000;
  font-weight: 800;
  border: none;
  padding: clamp(10px, 1.4vh, 13px);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: 0.25s;
  width: 100%;
  font-size: 0.95rem;
}

.mkt-btn-cta:hover {
  background: var(--mkt-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 0, 0.18);
  color: #000;
}

.mkt-btn-cta--ghost {
  background: transparent;
  color: var(--mkt-accent);
  border: 1px solid var(--mkt-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mkt-btn-cta--ghost:hover {
  background: rgba(255, 255, 0, 0.08);
  color: var(--mkt-accent);
  box-shadow: none;
}

.mkt-hint {
  color: #777;
  font-size: 0.7rem;
  margin-top: 3px;
}

.mkt-form-note {
  color: var(--mkt-muted);
  font-size: 0.75rem;
  text-align: center;
  margin: 0 0 8px;
}

body.dh-uppercase-inputs input:not([type="email"]):not([type="password"]):not([type="tel"]):not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([name="cpf"]),
body.dh-uppercase-inputs textarea:not(.dh-no-uppercase) {
  text-transform: uppercase;
}

body.dh-uppercase-inputs .dh-no-uppercase,
body.dh-uppercase-inputs .dh-no-uppercase input,
body.dh-uppercase-inputs .dh-no-uppercase textarea {
  text-transform: none;
}

body.dh-uppercase-inputs input[type="email"],
body.dh-uppercase-inputs input[type="password"],
body.dh-uppercase-inputs input[type="tel"],
body.dh-uppercase-inputs input[name="cpf"] {
  text-transform: none;
}

/* Quem Somos / Como Funciona — content shells */
.mkt-shell {
  width: 100%;
  padding: clamp(16px, 2.5vh, 28px) clamp(16px, 2.5vw, 32px);
}

.mkt-shell-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: clamp(10px, 1.5vh, 16px);
  margin-bottom: clamp(12px, 1.8vh, 20px);
  border-bottom: 1px solid #2a2a2a;
}

.mkt-back {
  color: #aaa;
  border-color: #444;
  font-size: 0.8rem;
}

.mkt-back:hover {
  color: #fff;
  border-color: #666;
}

.mkt-shell-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: clamp(8px, 1.2vh, 14px);
}

.mkt-pillars {
  display: grid;
  gap: clamp(10px, 1.5vh, 16px);
  grid-template-columns: 1fr;
}

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

.mkt-pillar {
  background: var(--mkt-panel-2);
  border: 1px solid var(--mkt-border);
  border-radius: 12px;
  padding: clamp(12px, 1.8vh, 18px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}

.mkt-pillar:hover {
  transform: translateY(-2px);
}

.mkt-pillar--remap {
  border-top: 3px solid var(--mkt-accent);
}

.mkt-pillar--remap:hover {
  border-color: rgba(255, 255, 0, 0.45);
}

.mkt-pillar--gestao {
  border-top: 3px solid var(--mkt-gestao);
}

.mkt-pillar--gestao:hover {
  border-color: rgba(2, 189, 36, 0.45);
}

.mkt-pillar--nuvem {
  border-top: 3px solid var(--mkt-nuvem);
}

.mkt-pillar--nuvem:hover {
  border-color: rgba(13, 202, 240, 0.45);
}

.mkt-pillar-icon {
  font-size: 1.45rem;
  line-height: 1;
}

.mkt-pillar--remap .mkt-pillar-icon {
  color: var(--mkt-accent);
}

.mkt-pillar--gestao .mkt-pillar-icon {
  color: var(--mkt-gestao);
}

.mkt-pillar--nuvem .mkt-pillar-icon {
  color: var(--mkt-nuvem);
}

.mkt-pillar h3 {
  font-family: var(--mkt-font-display);
  text-transform: uppercase;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  letter-spacing: 0.4px;
  margin: 0;
  color: #fff;
}

.mkt-pillar p {
  margin: 0;
  font-size: clamp(0.78rem, 1.15vw, 0.9rem);
  line-height: 1.4;
  color: var(--mkt-muted);
}

.mkt-closing {
  margin-top: clamp(12px, 2vh, 20px);
  font-size: clamp(0.85rem, 1.25vw, 0.98rem);
  line-height: 1.5;
  color: #c8c8c8;
}

.mkt-closing .accent {
  color: var(--mkt-accent);
  font-weight: 600;
}

/* Como funciona */
.mkt-flow-start {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: clamp(10px, 1.4vh, 14px) 14px;
  border-radius: 10px;
  background: rgba(255, 255, 0, 0.06);
  border: 1px solid rgba(255, 255, 0, 0.2);
  margin-bottom: clamp(12px, 1.8vh, 18px);
  font-size: clamp(0.8rem, 1.2vw, 0.92rem);
  color: #ddd;
}

.mkt-flow-start a {
  color: var(--mkt-accent);
  font-weight: 700;
  text-decoration: none;
}

.mkt-flow-start a:hover {
  text-decoration: underline;
}

.mkt-steps {
  display: grid;
  gap: clamp(6px, 1vh, 8px);
  margin-bottom: clamp(12px, 1.8vh, 18px);
}

@media (min-width: 900px) {
  .mkt-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.mkt-step {
  background: var(--mkt-panel-2);
  border: 1px solid var(--mkt-border);
  border-radius: 10px;
  padding: clamp(10px, 1.4vh, 14px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}

.mkt-step:hover {
  border-color: #444;
}

.mkt-step-num {
  font-family: var(--mkt-font-display);
  color: var(--mkt-accent);
  font-size: 1.1rem;
  line-height: 1;
}

.mkt-step p {
  margin: 0;
  font-size: clamp(0.72rem, 1.05vw, 0.84rem);
  line-height: 1.35;
  color: #c4c4c4;
}

.mkt-section-label {
  font-family: var(--mkt-font-display);
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.4px;
  color: #fff;
  margin: 0 0 clamp(8px, 1.2vh, 12px);
}

.mkt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(12px, 1.8vh, 18px);
}

.mkt-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--mkt-panel-2);
  border: 1px solid var(--mkt-border);
  font-size: clamp(0.72rem, 1.05vw, 0.85rem);
  color: #ddd;
  font-weight: 600;
}

.mkt-chip i {
  color: var(--mkt-gestao);
}

.mkt-chip--nuvem i {
  color: var(--mkt-nuvem);
}

.mkt-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(12px, 1.6vh, 16px);
  border-radius: 10px;
  background: rgba(255, 255, 0, 0.03);
  border: 1px solid rgba(255, 255, 0, 0.14);
}

.mkt-support p {
  margin: 0;
  font-size: clamp(0.78rem, 1.15vw, 0.9rem);
  color: #c8c8c8;
  line-height: 1.4;
  max-width: 520px;
}

.mkt-support .mkt-btn-cta {
  width: auto;
  padding-left: 22px;
  padding-right: 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .mkt-footer-logo {
    display: none;
  }

  .mkt-footer-link {
    font-size: 0.8rem;
  }
}

@media (max-height: 720px) and (min-width: 992px) {
  .mkt-pitch-headline {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
  }

  .mkt-benefit {
    font-size: 0.8rem;
  }

  .mkt-form-card {
    padding: 14px 18px;
  }
}
