@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary: #0762f0;
  --secondary: #3a71c2;
  --accent: #f6b306;
  --teal: #5f9bae;
  --cerulean: #1a83b6;
  --background: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #0f172a;
  --text-soft: #334155;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 26px 80px rgba(15, 23, 42, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 252, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--primary);
}
/* Glifo oficial da marca direto (sem tile), consistente com o app shell.
   Cabeçalho e rodapé da landing ficam sobre fundo claro → variante azul. */
.brand-mark .brand-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.18s ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.btn {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(7, 98, 240, 0.25);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border-color: rgba(7, 98, 240, 0.24);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.7vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero {
  padding: 78px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.hero-lead {
  color: var(--text-soft);
  font-size: 1.28rem;
  max-width: 720px;
}

.hero-support {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 690px;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-badges span:first-child {
  background: rgba(246, 179, 6, 0.13);
  border-color: rgba(246, 179, 6, 0.42);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 16%, rgba(246, 179, 6, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(7, 98, 240, 0.11), rgba(95, 155, 174, 0.13)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-phone {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 3;
  width: 218px;
  padding: 8px;
  border-radius: 40px;
  background: #0b1220;
  box-shadow: var(--shadow-strong);
}

.hero-phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 18px;
  border-radius: 999px;
  background: #000;
  z-index: 4;
}

.hero-phone-video {
  display: block;
  width: 100%;
  aspect-ratio: 384 / 832;
  object-fit: cover;
  border-radius: 32px;
  background: #000;
}

.hero-illustrative-tag {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  padding: 4px 10px;
  border-radius: 999px;
}

.dashboard-preview {
  position: absolute;
  right: 28px;
  top: 38px;
  z-index: 1;
  width: 82%;
  min-height: 330px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: 20px;
}

.preview-bar,
.panel-header {
  width: 42%;
  height: 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  margin-bottom: 22px;
}

.preview-metrics,
.panel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.preview-metrics div,
.panel-cards div {
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 14px;
}

.preview-metrics strong,
.panel-cards strong {
  display: block;
  color: var(--primary);
  font-size: 1.75rem;
}

.preview-metrics span,
.panel-cards span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-chart {
  height: 130px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 26px;
  padding: 18px;
  border-radius: 16px;
  background: var(--surface-soft);
}

.preview-chart span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: var(--primary);
}

.preview-chart span:nth-child(2),
.preview-chart span:nth-child(5) {
  background: var(--teal);
}

.preview-chart span:nth-child(3) {
  background: var(--accent);
}

.phone-preview {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: 210px;
  min-height: 350px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  padding: 18px 14px;
}

.phone-notch {
  width: 60px;
  height: 7px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--surface-soft);
}

.phone-title {
  margin-bottom: 14px;
  font-weight: 800;
}

.book-preview {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.book-preview strong,
.book-preview span {
  display: block;
}

.book-preview strong {
  font-size: 0.88rem;
}

.book-preview span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.book-dot {
  width: 34px;
  height: 44px;
  border-radius: 8px;
  background: var(--primary);
}

.book-dot.gold {
  background: var(--accent);
}

.phone-button {
  min-height: 40px;
  display: grid;
  place-items: center;
  margin-top: 16px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.84rem;
}

section {
  padding: 78px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p,
.metrics-grid p,
.security-grid p,
.audience-grid p,
.implementation-section p,
.contact-section p,
.final-card p {
  color: var(--muted);
}

.insight-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.insight-card,
.comparison-card,
.workflow-grid article,
.value-grid article,
.security-list article,
.lead-form,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.insight-card,
.comparison-card,
.workflow-grid article,
.value-grid article,
.security-list article {
  padding: 24px;
}

.card-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: rgba(7, 98, 240, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.insight-card p,
.comparison-card li,
.workflow-grid p,
.value-grid p {
  color: var(--muted);
}

.category-section,
.product-section,
.implementation-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.comparison-card ul {
  padding-left: 18px;
}

.comparison-card h3 small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.comparison-card.featured {
  position: relative;
  border-color: rgba(7, 98, 240, 0.34);
  background:
    linear-gradient(180deg, rgba(7, 98, 240, 0.08), rgba(255, 255, 255, 0.98)),
    var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.featured-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(246, 179, 6, 0.16);
  color: #8a6200;
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: workflow;
}

.workflow-grid article span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.product-grid,
.metrics-grid,
.security-grid,
.audience-grid,
.contact-grid,
.final-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.feature-list span,
.audience-tags span,
.implementation-steps span,
.contact-highlights span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-dashboard-bg {
  position: absolute;
  right: 22px;
  top: 30px;
  z-index: 1;
  width: 90%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.device-phone {
  position: relative;
  width: 258px;
  max-width: 82%;
  margin: 0 auto;
  padding: 8px;
  border-radius: 44px;
  background: #0b1220;
  box-shadow: var(--shadow-strong);
}

.device-phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 20px;
  border-radius: 999px;
  background: #000;
  z-index: 2;
}

.device-phone img {
  display: block;
  width: 100%;
  border-radius: 36px;
}

.workflow-shot {
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-soft);
  aspect-ratio: 16 / 10;
}

.workflow-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.metrics-panel img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.hero-visual.is-photo,
.product-visual.is-photo {
  min-height: 0;
  border: 0;
  background: none;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.hero-visual.is-photo img,
.product-visual.is-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.device-phone video {
  display: block;
  width: 100%;
  border-radius: 36px;
  background: #000;
}

.problem-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.5fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 44px;
}

.problem-intro .section-heading {
  margin-bottom: 0;
}

.problem-video {
  display: flex;
  justify-content: center;
}

.problem-video .device-phone {
  width: 224px;
}

.atos-diagram {
  max-width: 620px;
  margin: 0 auto 44px;
}

.atos-diagram img {
  display: block;
  width: 100%;
  height: auto;
}

.atos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ato {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 26px 24px;
}

.ato-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.ato h3 {
  margin-bottom: 8px;
}

.ato > p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.ato ul {
  margin: 0;
  padding-left: 18px;
}

.ato li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.product-visual {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(7, 98, 240, 0.32);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(7, 98, 240, 0.08), rgba(95, 155, 174, 0.12)),
    var(--background);
  overflow: hidden;
}

.visual-note {
  max-width: 320px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  z-index: 2;
}

.screen-stack {
  position: absolute;
  inset: 40px;
  opacity: 0.58;
}

.screen-card {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.screen-card.large {
  inset: 0 12% 26% 0;
}

.screen-card.medium {
  right: 0;
  bottom: 6%;
  width: 48%;
  height: 48%;
}

.screen-card.small {
  left: 8%;
  bottom: 0;
  width: 30%;
  height: 46%;
}

.metrics-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
}

.panel-bars {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.panel-bars span {
  height: 24px;
  border-radius: 999px;
  background: var(--primary);
}

.panel-bars span:nth-child(2) {
  background: var(--teal);
}

.panel-bars span:nth-child(3) {
  background: var(--accent);
}

.check-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  color: var(--text-soft);
}

.security-section {
  background: #0f172a;
  color: #fff;
}

.security-section .eyebrow {
  color: var(--accent);
}

.security-grid p,
.security-list p {
  color: rgba(255, 255, 255, 0.74);
}

.security-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.security-list article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.audience-tags,
.implementation-steps,
.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.implementation-steps {
  justify-content: center;
}

.contact-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(246, 179, 6, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(7, 98, 240, 0.08), rgba(95, 155, 174, 0.12)),
    var(--surface);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--text-soft);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--background);
  color: var(--text);
  padding: 12px 13px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(7, 98, 240, 0.18);
  border-color: rgba(7, 98, 240, 0.45);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding-top: 0;
}

.final-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 38px;
}

.site-footer {
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-footer .brand-mark {
  width: 34px;
  height: 34px;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .product-grid,
  .metrics-grid,
  .security-grid,
  .audience-grid,
  .contact-grid,
  .problem-intro,
  .atos-grid,
  .final-card {
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .workflow-grid,
  .value-grid,
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-name {
    white-space: normal;
    max-width: 150px;
    line-height: 1.05;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  section,
  .hero {
    padding: 56px 0;
  }

  .hero-actions .btn,
  .final-actions .btn,
  .lead-form .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .dashboard-preview {
    width: calc(100% - 36px);
    right: 18px;
    left: 18px;
  }

  .preview-metrics,
  .panel-cards,
  .comparison-grid,
  .workflow-grid,
  .value-grid,
  .insight-grid,
  .feature-list,
  .security-list {
    grid-template-columns: 1fr;
  }

  .hero-phone {
    left: 20px;
    bottom: 20px;
    width: 188px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

