﻿:root {
  --blue-900: #0A2E6D;
  --blue-800: #0B3C91;
  --blue-700: #0057D9;
  --blue-600: #1268E8;
  --blue-100: #EAF2FF;

  --orange-700: #E96E00;
  --orange-600: #FF7A00;
  --orange-500: #FF8A00;
  --orange-100: #FFF1E3;

  --yellow: #FFB800;
  --green: #1FA971;

  --bg: #F7F9FC;
  --white: #FFFFFF;
  --text: #17212B;
  --muted: #617080;
  --line: #DCE4EC;

  --shadow: 0 18px 50px rgba(11, 60, 145, 0.11);
  --shadow-strong: 0 24px 70px rgba(0, 87, 217, 0.18);

  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.section {
  padding: 108px 0;
}

.section-soft {
  background: var(--bg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h2 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.accent-orange {
  color: var(--orange-600);
}

.accent-blue {
  color: var(--blue-700);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

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

.btn-primary {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 122, 0, .24);
}

.btn-primary:hover {
  background: var(--orange-700);
}

.btn-login {
  background: var(--white);
  border-color: var(--blue-700);
  color: var(--blue-700);
}

.btn-login:hover {
  background: var(--blue-100);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 850;
}

.btn-link svg {
  width: 18px;
  height: 18px;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.header.is-scrolled {
  border-color: rgba(220, 228, 236, .9);
  box-shadow: 0 8px 28px rgba(11, 60, 145, .08);
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #425466;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--blue-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--blue-900);
}

.mobile-menu {
  display: none;
  padding: 0 20px 20px;
}

.mobile-menu.is-open {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-900);
  font-weight: 850;
}

.mobile-menu .mobile-login {
  margin-top: 8px;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 164px 0 104px;
  background: #F8FAFD url("../img/bg-ligth.jpg") center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 64px;
}

.hero-copy p {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
}

.hero-note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--green);
}

.panel-placeholder {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(220, 228, 236, .95);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-strong);
}

.product-window {
  overflow: hidden;
  width: 100%;
  border-radius: 22px;
  background: #F7F9FC;
}

.window-top {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #C9D3DE;
}

.window-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.dashboard {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 448px;
}

.sidebar {
  padding: 20px 14px;
  background: linear-gradient(180deg, var(--blue-800), var(--blue-900));
}

.side-logo {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 12px;
  background: var(--orange-600);
  color: var(--white);
  font-weight: 900;
}

.side-line {
  height: 9px;
  margin-bottom: 14px;
  border-radius: 99px;
  background: rgba(255,255,255,.14);
}

.side-line.active {
  background: rgba(255,255,255,.92);
}

.dash-content {
  padding: 24px;
}

.dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.dash-title {
  width: 176px;
  height: 16px;
  border-radius: 99px;
  background: var(--blue-900);
}

.dash-sub {
  width: 126px;
  height: 8px;
  margin-top: 10px;
  border-radius: 99px;
  background: #CCD5DF;
}

.dash-button {
  width: 112px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange-600);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.stat-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  border-radius: 9px;
  background: var(--blue-100);
}

.stat:nth-child(2) .stat-icon {
  background: var(--orange-100);
}

.stat:nth-child(3) .stat-icon {
  background: #EAF8F2;
}

.stat-number {
  width: 55px;
  height: 18px;
  margin-bottom: 8px;
  border-radius: 99px;
  background: var(--blue-900);
}

.stat-label {
  width: 75px;
  height: 8px;
  border-radius: 99px;
  background: #D7DFE7;
}

.table-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 14px;
  align-items: center;
}

.table-head {
  margin-bottom: 12px;
}

.table-row {
  padding: 13px 0;
  border-top: 1px solid #EDF1F5;
}

.line {
  height: 8px;
  border-radius: 99px;
  background: #D4DDE6;
}

.line.dark {
  background: var(--blue-900);
}

.badge {
  width: 76px;
  height: 24px;
  border-radius: 99px;
  background: #EAF8F2;
}

.floating-card {
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 260px;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange-600);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-card .check {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 12px;
  background: #EAF8F2;
  color: var(--green);
}

.floating-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-900);
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.panel-label {
  position: absolute;
  top: -16px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--blue-700);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(0, 87, 217, .22);
  font-size: 12px;
  font-weight: 900;
}

.grid-4,
.grid-3 {
  display: grid;
  gap: 24px;
}

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

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11, 60, 145, .05);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.icon-box.orange {
  background: var(--orange-100);
  color: var(--orange-600);
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.problem-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 44px;
}

.problem-intro .lead {
  max-width: 520px;
}

.transition-note {
  margin-top: 32px;
  padding: 22px 26px;
  border-left: 5px solid var(--orange-600);
  border-radius: 0 16px 16px 0;
  background: var(--orange-100);
  color: var(--blue-900);
  font-size: 18px;
  font-weight: 850;
}

.panel-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid #BDD3FF;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-100), #FFFFFF);
}

.panel-callout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-900);
  font-size: 18px;
}

.panel-callout p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.step {
  position: relative;
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.step::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -18px;
  width: 18px;
  height: 2px;
  background: var(--line);
}

.step:last-child::after {
  display: none;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 900;
}

.step:nth-child(2) .step-number,
.step:nth-child(4) .step-number {
  background: var(--orange-600);
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-card {
  min-height: 260px;
  border-top: 4px solid transparent;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--orange-600);
  box-shadow: var(--shadow);
}

.solution-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 32px;
}

.solution-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--orange-100);
  color: var(--orange-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.solution-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.solution-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.solution-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.solution-card .btn-link {
  margin-top: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: start;
  gap: 60px;
}

.faq-section .trust-grid {
  grid-template-columns: .72fr 1.18fr;
  gap: 60px;
}

.faq-intro {
  max-width: 520px;
}

.faq-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.4vw, 44px);
}

.trust-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.trust-point {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.trust-point svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--orange-600);
}

.trust-point strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-900);
}

.trust-point p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(220, 228, 236, .9);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(11, 60, 145, .06);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  color: var(--blue-900);
  text-align: left;
  font-weight: 850;
}

.faq-question svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--orange-600);
  transition: transform .2s ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 24px;
  color: var(--muted);
}

.video-section {
  background: #F8FAFC;
}

.video-intro {
  display: grid;
  justify-items: center;
  margin: 0 auto 22px;
  text-align: center;
}

.video-intro h2 {
  max-width: 780px;
  margin-bottom: 18px;
  color: #050B14;
  font-size: clamp(32px, 3.7vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-divider {
  width: 56px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--orange-600);
}

.video-intro .lead {
  max-width: 720px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 860px);
  margin: 0 auto;
  border: 6px solid var(--orange-600);
  border-radius: 18px;
  background: #0B1622;
  box-shadow: 0 24px 70px rgba(11, 60, 145, .13);
}

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

.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 0 0 14px rgba(255, 122, 0, .22);
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.video-play:hover {
  background: var(--orange-700);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-play svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

.video-frame.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.9);
}

.video-cta {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
}

.cta-section {
  background: var(--blue-900);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  align-items: center;
  gap: 64px;
}

.cta-section .eyebrow {
  color: #FFB35F;
}

.cta-section .lead {
  color: #D6E0EA;
}

.cta-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.cta-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E6EEF5;
}

.cta-point svg {
  width: 20px;
  height: 20px;
  color: #FFB35F;
}

.form-card {
  width: min(100%, 560px);
  justify-self: end;
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.form-card h3 {
  margin-bottom: 8px;
  color: var(--blue-900);
  font-size: 24px;
}

.form-card > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.form-grid > .field,
.form-grid > .submit-button {
  grid-column: 1 / -1;
}

#nameField,
#roleField,
#cnpjField,
#phoneField {
  grid-column: auto;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(0, 87, 217, .12);
}

.field-error {
  min-height: 14px;
  color: #C92A2A;
  font-size: 12px;
}

.form-card .btn {
  width: 100%;
  min-height: 48px;
}

.privacy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.whatsapp-link {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  color: var(--green);
  font-weight: 850;
}

.field.has-error input,
.field.has-error select {
  border-color: #D92D20;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, .10);
}

.field-error {
  min-height: 14px;
  color: #B42318;
  font-size: 12px;
  font-weight: 700;
}

.submit-button {
  position: relative;
  overflow: hidden;
}

.submit-button:disabled {
  cursor: wait;
  opacity: .78;
  transform: none;
}

.submit-button-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: submit-spin .75s linear infinite;
}

.submit-button.is-loading .submit-spinner {
  display: inline-block;
}

@keyframes submit-spin {
  to { transform: rotate(360deg); }
}

.form-message {
  display: none;
  align-items: flex-start;
  gap: 13px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 12px 30px rgba(10, 46, 109, .08);
}

.form-message.is-visible {
  display: flex;
  animation: form-message-in .28s ease-out;
}

.form-message.is-success {
  border-color: #A6E1C6;
  background: linear-gradient(135deg, #EAF8F2, #F7FFFB);
  color: #0B6B48;
}

.form-message.is-error {
  border-color: #F1B8B8;
  background: linear-gradient(135deg, #FFF0F0, #FFF8F8);
  color: #A61B1B;
}

.form-message-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255,255,255,.72);
}

.form-message-icon svg {
  width: 20px;
  height: 20px;
}

.form-message strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

.form-message p {
  margin: 0;
  color: inherit;
}

@keyframes form-message-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


.mobile-login,.footer-login{width:100%;padding:14px 2px;border:0;border-bottom:1px solid var(--line);background:transparent;color:var(--blue-900);text-align:left;font-weight:850;cursor:pointer}
.footer-login{padding:0;border:0;color:inherit;font-weight:400}.footer-login:hover{color:var(--white)}
.login-modal{position:fixed;z-index:3000;inset:0;display:none;align-items:center;justify-content:center;padding:20px;background:rgba(7,29,69,.68);backdrop-filter:blur(8px)}
.login-modal.is-open{display:flex}.login-dialog{position:relative;width:min(100%,430px);padding:34px;border-radius:26px;background:var(--white);box-shadow:0 30px 90px rgba(0,0,0,.28)}
.login-close{position:absolute;top:16px;right:16px;display:grid;width:40px;height:40px;place-items:center;border:1px solid var(--line);border-radius:12px;background:var(--white);color:var(--blue-900)}
.login-brand{width:210px;margin-bottom:24px}.login-dialog h3{margin-bottom:8px;color:var(--blue-900);font-size:30px}.login-dialog>p{margin-bottom:24px;color:var(--muted)}
.password-wrap{position:relative}.password-wrap input{padding-right:50px}.password-toggle{position:absolute;top:50%;right:10px;display:grid;width:36px;height:36px;place-items:center;border:0;border-radius:9px;background:transparent;color:var(--muted);transform:translateY(-50%)}
.login-error{display:none;margin-top:14px;padding:13px 14px;border:1px solid #F1B8B8;border-radius:12px;background:#FFF0F0;color:#A61B1B;font-size:14px;font-weight:750}.login-error.is-visible{display:block}body.modal-open{overflow:hidden}

.footer {
  padding: 48px 0 28px;
  background: #071D45;
  color: #C8D4DF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 40px;
  padding-bottom: 34px;
}

.footer .brand img {
  width: 230px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.16));
}

.footer p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #AEBCC8;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 850;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-privacy {
  color: var(--white);
  font-family: inherit;
}

.privacy-seals {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: none;
  font-family: inherit;
}

.privacy-seals img {
  width: auto;
  max-width: 120px;
  height: auto;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  color: var(--white);
}

.footer-contact-location {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.footer-contact .footer-privacy {
  grid-column: 2;
  grid-row: 2;
}

.footer-contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-contact-icon svg {
  width: 24px;
  height: 24px;
}

.footer-contact-item:hover .footer-contact-icon {
  background: var(--orange-600);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-contact-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
}

.footer-contact-item span span {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #9EADBA;
  font-size: 13px;
}

.mobile-cta {
  display: none;
}

.back-to-top {
  position: fixed;
  z-index: 1200;
  left: 24px;
  bottom: 24px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(255, 122, 0, .28);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--orange-700);
  box-shadow: 0 20px 46px rgba(255, 122, 0, .34);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

.whatsapp-float {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 18px 42px rgba(8, 92, 49, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(8, 92, 49, .34);
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 66px;
  bottom: 18px;
  width: max-content;
  max-width: 170px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--white);
  color: var(--blue-900);
  box-shadow: 0 10px 28px rgba(11, 60, 145, .16);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-float-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: translateY(-50%) rotate(45deg);
}

.whatsapp-float:hover .whatsapp-float-tooltip,
.whatsapp-float:focus-visible .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float-photo {
  overflow: hidden;
  width: 66px;
  height: 66px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--white);
}

.whatsapp-float-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-float-icon {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
}

.whatsapp-float-icon svg {
  width: 19px;
  height: 19px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: grid;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .trust-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .faq-section .trust-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-intro {
    max-width: 680px;
  }

  .panel-placeholder {
    max-width: 760px;
  }

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

  .step::after {
    display: none;
  }

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

  .solution-card:last-child {
    grid-column: 1 / -1;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: grid;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  #nameField,
  #roleField,
  #cnpjField,
  #phoneField {
    grid-column: 1 / -1;
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 168px;
  }

  .nav-actions .btn-primary,
  .nav-actions .btn-login {
    display: none;
  }

  .hero {
    padding: 112px 0 68px;
    background-position: 58% center;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  h2 {
    font-size: 34px;
    letter-spacing: 0;
  }

  .hero-copy p,
  .lead {
    font-size: 17px;
  }

  .eyebrow {
    font-size: 8px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn-link {
    justify-content: center;
    padding: 12px 0;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .panel-label {
    position: static;
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 12px;
    text-align: center;
  }

  .dashboard {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 300px;
  }

  .sidebar {
    padding: 14px 8px;
  }

  .dash-content {
    min-width: 0;
    padding: 14px;
  }

  .dash-header {
    gap: 12px;
  }

  .dash-title {
    width: min(150px, 42vw);
  }

  .dash-sub {
    width: min(116px, 34vw);
  }

  .dash-button {
    width: 76px;
    height: 32px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats .stat:nth-child(n+2) {
    display: none;
  }

  .table-card {
    padding: 14px;
  }

  .table-head,
  .table-row {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .8fr) 58px;
    gap: 10px;
  }

  .badge {
    width: 58px;
  }

  .problem-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid-4,
  .grid-3,
  .steps {
    grid-template-columns: 1fr;
  }

  .solution-card:last-child {
    grid-column: auto;
  }

  .video-intro {
    margin-bottom: 18px;
  }

  .video-frame {
    border-width: 4px;
    border-radius: 14px;
  }

  .video-play {
    width: 64px;
    height: 64px;
    box-shadow: 0 0 0 10px rgba(255, 122, 0, .2);
  }

  .video-play svg {
    width: 28px;
    height: 28px;
  }

  .benefit-card {
    min-height: auto;
  }

  .panel-callout {
    grid-template-columns: 1fr;
  }

  .panel-callout .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding-bottom: 28px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .footer-contact-location {
    grid-column: auto;
    grid-row: auto;
    order: 3;
  }

  .footer-contact .footer-privacy {
    grid-column: auto;
    grid-row: auto;
    order: 4;
  }

  .privacy-seals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
  }

  .privacy-seals img {
    width: auto;
    max-width: 118px;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer {
    padding: 42px 0 30px;
  }

  .footer .brand img {
    width: 190px;
  }

  .footer p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a,
  .footer-login {
    min-height: auto;
    padding: 0;
    border-bottom: 0;
  }

  .footer-contact-item {
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.04);
  }

  .footer-privacy {
    padding-top: 6px;
  }

  .footer-contact-icon {
    width: 42px;
    height: 42px;
  }

  .footer-contact-icon svg {
    width: 21px;
    height: 21px;
  }

  .footer-contact-item strong {
    font-size: 15px;
  }

  .footer-contact-item span span {
    font-size: 14px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 999;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
  }

  .mobile-cta .btn {
    width: 100%;
    box-shadow: 0 14px 34px rgba(255, 122, 0, .34);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 88px;
    width: 68px;
    height: 68px;
  }

  .back-to-top {
    left: 16px;
    bottom: 88px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float-photo {
    width: 58px;
    height: 58px;
  }

  .whatsapp-float-tooltip {
    right: 58px;
    bottom: 16px;
    max-width: 136px;
    padding: 7px 10px;
    font-size: 10px;
  }

  body.form-in-view .whatsapp-float {
    bottom: 16px;
  }

  body.form-in-view .back-to-top {
    bottom: 16px;
  }

  body.form-in-view .mobile-cta {
    display: none;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand img {
    width: 148px;
  }

  .hero {
    padding-top: 102px;
  }

  h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero-copy p,
  .lead {
    font-size: 16px;
  }

  .btn {
    min-height: 50px;
    padding: 0 16px;
  }

  .panel-placeholder {
    padding: 10px;
    border-radius: 18px;
  }

  .product-window {
    border-radius: 14px;
  }

  .window-top {
    height: 40px;
    padding: 0 12px;
  }

  .window-label {
    font-size: 11px;
  }

  .dashboard {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 258px;
  }

  .side-logo {
    width: 28px;
    height: 28px;
    margin-bottom: 18px;
    border-radius: 9px;
  }

  .side-line {
    height: 7px;
    margin-bottom: 10px;
  }

  .dash-content {
    padding: 10px;
  }

  .dash-header {
    margin-bottom: 12px;
  }

  .dash-button {
    width: 54px;
    height: 28px;
    border-radius: 8px;
  }

  .stat {
    padding: 12px;
    border-radius: 12px;
  }

  .stat-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
  }

  .table-card {
    padding: 10px;
    border-radius: 12px;
  }

  .table-head,
  .table-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, .72fr) 42px;
    gap: 8px;
  }

  .table-row {
    padding: 10px 0;
  }

  .badge {
    width: 42px;
    height: 20px;
  }

  .floating-card {
    padding: 14px;
    border-radius: 14px;
  }

  .privacy-seals {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .privacy-seals img {
    max-width: 132px;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
