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

:root {
  --am-font: "Urbanist", sans-serif;
  --am-black: #0d0d0d;
  --am-dark: #181818;
  --am-gray-900: #222222;
  --am-gray-800: #2f2f2f;
  --am-gray-700: #4a4a4a;
  --am-gray-600: #6b6b6b;
  --am-gray-500: #8a8a8a;
  --am-gray-400: #b9b9b9;
  --am-gray-300: #d8d8d8;
  --am-gray-200: #ececec;
  --am-gray-100: #f6f6f6;
  --am-white: #ffffff;
  --am-radius: 1.25rem;
  --am-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --am-border: 1px solid rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--am-font);
  font-weight: 500;
  line-height: 1.5;
  color: var(--am-dark);
  background-color: var(--am-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea,
.navbar,
.btn,
.section-title,
.section-text,
.hero-title,
.hero-text,
.card,
p,
span,
a,
li,
label {
  font-family: var(--am-font);
}

a {
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-brand {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.brand-logo {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.logo-navbar {
  height: 30px;
  width: auto;
  display: block;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--am-black);
  color: var(--am-white);
  border-radius: 0.85rem;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--am-shadow);
}

.navbar-toggler {
  padding: 0.35rem 0.55rem;
  border-radius: 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  color: var(--am-gray-700);
  font-weight: 600;
  padding: 0.55rem 0.8rem !important;
  border-radius: 0.75rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--am-black);
  background: rgba(0, 0, 0, 0.04);
}

.btn-dark-custom,
.btn-outline-dark-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-dark-custom {
  background: var(--am-black);
  color: var(--am-white);
  border: 1px solid var(--am-black);
}

.btn-dark-custom:hover {
  background: #000;
  color: var(--am-white);
  transform: translateY(-1px);
}

.btn-outline-dark-custom {
  background: transparent;
  color: var(--am-black);
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.btn-outline-dark-custom:hover {
  background: var(--am-gray-100);
  color: var(--am-black);
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.03);
  z-index: 0;
}

.hero::before {
  width: 340px;
  height: 340px;
  top: -120px;
  left: -90px;
}

.hero::after {
  width: 440px;
  height: 440px;
  bottom: -180px;
  right: -120px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--am-gray-800);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
  max-width: 13ch;
}

.hero .lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--am-gray-700);
  max-width: 58ch;
}

.hero-card {
  background: rgba(255, 255, 255, 0.88);
  border: var(--am-border);
  box-shadow: var(--am-shadow);
  border-radius: 1.75rem;
  padding: 2rem;
  height: 100%;
}

.hero-kpi {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.15rem;
  padding: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
  height: 100%;
}

.hero-visual {
  background: linear-gradient(135deg, #111 0%, #2c2c2c 100%);
  color: #fff;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -20% -25% auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 65%);
  border-radius: 999px;
}

.screen-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.screen-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.screen-line.short {
  width: 60%;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.screen-stat {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 5.5rem 0;
}

.section-light {
  background: var(--am-gray-100);
}

.section-dark {
  background: var(--am-black);
  color: var(--am-white);
}

.section-dark .section-kicker,
.section-dark .section-title,
.section-dark .section-text,
.section-dark .card-title,
.section-dark .card-text,
.section-dark .small-label,
.section-dark p,
.section-dark li,
.section-dark h3,
.section-dark h4 {
  color: var(--am-white);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--am-gray-600);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-text {
  color: var(--am-gray-700);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 70ch;
}

.pain-card,
.solution-card,
.module-card,
.diff-card,
.benefit-card,
.contact-card,
.proof-card {
  background: var(--am-white);
  border: var(--am-border);
  border-radius: var(--am-radius);
  padding: 1.5rem;
  box-shadow: var(--am-shadow);
}

.pain-card,
.solution-card,
.module-card,
.diff-card,
.benefit-card,
.contact-card {
  height: 100%;
}

.benefit-card,
.benefit-card h3,
.benefit-card p {
  color: #383737;
}

.section-dark .proof-card,
.section-dark .contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.icon-pill {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--am-gray-100);
  color: var(--am-black);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.status-live {
  background: #efefef;
  color: #181818;
}

.status-roadmap {
  background: #fafafa;
  color: #4a4a4a;
}

.status-sob-consulta {
  background: #f4f4f4;
  color: #3a3a3a;
}

.module-card ul,
.benefit-card ul,
.proof-card ul,
.contact-card ul {
  padding-left: 1rem;
  margin-bottom: 0;
  color: var(--am-gray-700);
}

.module-card li,
.benefit-card li,
.proof-card li,
.contact-card li {
  margin-bottom: 0.45rem;
}

.module-card h3,
.diff-card h3,
.benefit-card h3,
.pain-card h3,
.solution-card h3,
.proof-card h3,
.contact-card h3,
.diff-featured h3,
.diff-mini h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.metric-box {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--am-gray-700);
}

.solution-banner {
  background: linear-gradient(135deg, #0e0e0e 0%, #2e2e2e 100%);
  color: var(--am-white);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--am-shadow);
}

.solution-banner .mini-badge {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.highlight-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.diff-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.benefit-stat {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.timeline-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 1.2rem;
  background: var(--am-white);
  border: var(--am-border);
  box-shadow: var(--am-shadow);
  height: 100%;
}

.timeline-number {
  width: 46px;
  height: 46px;
  border-radius: 1rem;
  background: var(--am-black);
  color: var(--am-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.cta-panel {
  background: linear-gradient(135deg, #f1f1f1 0%, #ffffff 100%);
  border: var(--am-border);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--am-shadow);
}

.form-control,
.form-select {
  border-radius: 0.75rem;
  min-height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.9rem 1rem;
}

textarea.form-control {
  min-height: 130px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem;
}

.footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.82);
  padding: 2.2rem 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-link {
  font-weight: 600;
}

.small-muted {
  color: var(--am-gray-600);
  font-size: 0.95rem;
}

.sticky-note {
  border-left: 4px solid var(--am-black);
  padding-left: 1rem;
}

.institutional-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--am-black);
  text-decoration: none;
}

.institutional-link:hover {
  text-decoration: underline;
}

/* Diferenciais */
.diff-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.diff-featured {
  background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
  color: #ffffff;
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: var(--am-shadow);
  min-height: 100%;
}

.diff-featured h3,
.diff-featured p {
  color: #ffffff;
}

.diff-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.diff-featured h3 {
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.diff-featured p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  margin-bottom: 1.35rem;
}

.diff-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.diff-point {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.diff-point i {
  font-size: 1rem;
}

.diff-stack {
  display: grid;
  gap: 1rem;
}

.diff-mini {
  background: #ffffff;
  border: var(--am-border);
  border-radius: 1.35rem;
  padding: 1.25rem;
  box-shadow: var(--am-shadow);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
}

.diff-mini-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--am-gray-100);
  color: var(--am-black);
  font-size: 1.2rem;
}

.diff-mini h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  letter-spacing: -0.03em;
}

.diff-mini p {
  margin: 0;
  color: var(--am-gray-700);
  font-size: 0.96rem;
}

/* Clientes */
.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  animation: logoScroll 28s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  width: 190px;
  height: 96px;
  border-radius: 1.2rem;
  background: #ffffff;
  border: var(--am-border);
  box-shadow: var(--am-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
}

.logo-item img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.25s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* CTA final */
.cta-final-section {
  padding-top: 2rem;
}

.cta-final-box {
  background: linear-gradient(135deg, #111111 0%, #2b2b2b 100%);
  border-radius: 2rem;
  padding: 3.5rem 2rem;
  box-shadow: var(--am-shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-final-title {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 950px;
  margin: 0 auto 1rem;
}

.cta-final-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.cta-final-box .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.cta-final-actions .btn {
  border-radius: 0.9rem;
  min-width: 220px;
}

.cta-final-actions .btn-outline-light:hover {
  color: #111111;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 0.9rem;
    box-shadow: var(--am-shadow);
  }

  .navbar-nav {
    gap: 0.35rem !important;
  }

  .nav-link {
    padding: 0.8rem 0.9rem !important;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-layout {
    grid-template-columns: 1fr;
  }

  .diff-featured h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 767.98px) {
  .logo-item {
    width: 150px;
    height: 82px;
    padding: 0.9rem 1rem;
  }

  .logo-item img {
    max-height: 34px;
  }

  .cta-final-box {
    padding: 2.5rem 1.25rem;
    border-radius: 1.5rem;
  }

  .cta-final-text {
    font-size: 0.98rem;
  }

  .cta-final-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    max-width: 100%;
  }

  .btn-dark-custom,
  .btn-outline-dark-custom,
  .cta-final-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .diff-mini {
    grid-template-columns: 1fr;
  }

  .eyebrow {
    font-size: 0.84rem;
  }
}
