* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #001533;
  --navy-2: #001e4d;
  --gold: #f4a300;
  --white: #ffffff;
  --text: #061739;
  --muted: #5f6b82;
  --border: #e5e9f1;
  --blue: #0d6efd;
  --green: #1dbf73;
  --purple: #7c3aed;
  --orange: #f59e0b;
  --header-offset: 86px;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset, 86px);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  padding-top: var(--header-offset, 86px);
}

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

img,
video,
iframe {
  max-width: 100%;
}

/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-height: 86px;
  background: linear-gradient(90deg, #00132f, #001d46);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 58px;
}

.brand h1 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.brand span {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 16px;
  font-weight: 600;
}

.nav a {
  transition: 0.3s;
}

.nav a:hover,
.nav .active {
  color: var(--gold);
}

.header-button {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 10px;
  padding: 15px 26px;
  font-weight: 800;
  transition: 0.3s;
  white-space: nowrap;
}

.header-button:hover {
  background: var(--gold);
  color: var(--navy);
}

/* =========================
   BOTÃ•ES
========================= */

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 8px;
  padding: 15px 23px;
  font-weight: 900;
  transition: 0.3s;
}

.primary-button {
  background: var(--gold);
  color: var(--navy);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(244, 163, 0, 0.28);
}

.secondary-button {
  color: var(--white);
  border: 1.4px solid rgba(255, 255, 255, 0.75);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 600px;
  background: radial-gradient(circle at 80% 20%, #073a78 0%, #001533 45%, #000d26 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 44% 56%;
  position: relative;
  overflow: hidden;
  padding: 46px 58px 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 5% 80%, rgba(0, 132, 255, 0.22), transparent 28%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.hero-tag {
  width: fit-content;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero h2 {
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.hero h2 strong {
  color: var(--gold);
}

.hero p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 460px;
}

/* =========================
   DASHBOARD PASSAGENS
========================= */

.sales-panel {
  position: absolute;
  right: 150px;
  top: 30px;
  width: 520px;
  min-height: 330px;
  background: #ffffff;
  color: var(--text);
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
  padding: 24px;
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-header strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.panel-header span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.status-badge {
  background: rgba(29, 191, 115, 0.14);
  color: var(--green);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

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

.sales-metrics div {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px;
  background: #f8fbff;
}

.sales-metrics small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.sales-metrics strong {
  display: block;
  font-size: 19px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 4px;
}

.sales-metrics span {
  font-size: 11px;
  color: var(--green);
  font-weight: 800;
}

.route-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #ffffff;
  margin-bottom: 16px;
}

.route-title {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 12px;
}

.route-title i {
  color: var(--gold);
}

.route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid #eef1f6;
  font-size: 13px;
}

.route-item span {
  color: var(--text);
}

.route-item strong {
  color: var(--blue);
  white-space: nowrap;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.features-row div {
  background: #f4f8ff;
  color: var(--navy);
  border-radius: 10px;
  padding: 10px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.features-row i {
  display: block;
  color: var(--blue);
  font-size: 17px;
  margin-bottom: 6px;
}

/* =========================
   TELEFONE WHATSAPP
========================= */

.phone-card {
  position: absolute;
  right: -25px;
  top: 145px;
  width: 185px;
  height: 395px;
  padding: 12px 10px 14px;
  background: #f6f0e6;
  border: 6px solid #151515;
  border-radius: 34px;
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.38),
    0 0 0 3px #1476ff,
    0 0 28px rgba(13, 110, 253, 0.38);
  overflow: hidden;
  z-index: 4;
}

.phone-card::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 15px;
  background: #111;
  border-radius: 0 0 13px 13px;
  z-index: 6;
}

.phone-card::after {
  content: "\f232";
  font-family: "Font Awesome 6 Brands";
  position: absolute;
  right: 13px;
  bottom: 13px;
  width: 25px;
  height: 25px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  z-index: 7;
}

.phone-top {
  background: linear-gradient(180deg, #003f9e, #06245a);
  margin: -12px -10px 14px;
  padding: 38px 14px 14px;
  border-radius: 27px 27px 0 0;
  color: #ffffff;
}

.phone-top strong {
  display: block;
  font-size: 12px;
  color: #ffffff;
  font-weight: 900;
}

.phone-top small {
  display: block;
  font-size: 8px;
  color: #4dff9a;
  margin-top: 2px;
}

.phone-message,
.phone-answer {
  color: #061739;
  font-size: 10px;
  line-height: 1.35;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);
}

.phone-message {
  background: #ffffff;
  margin-bottom: 10px;
}

.phone-answer {
  background: #d7ffe0;
  margin-top: 5px;
}

.phone-card button {
  width: 100%;
  border: none;
  background: #ffffff;
  color: #0d6efd;
  padding: 10px 8px;
  margin-bottom: 9px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.ticket-info {
  display: none;
}

/* =========================
   SOLUÃ‡Ã•ES
========================= */

.solutions {
  background: #ffffff;
  padding: 60px 32px 34px;
}

.section-title {
  text-align: center;
  margin-bottom: 26px;
}

.small-title {
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.small-title span {
  width: 42px;
  height: 3px;
  background: var(--gold);
}

.section-title h2 {
  font-size: 31px;
  color: var(--navy);
  font-weight: 900;
}

.solutions-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.solution-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  min-height: 170px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 20, 60, 0.04);
  transition: 0.3s;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 20, 60, 0.09);
}

.icon,
.custom-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
}

.custom-icon {
  background: rgba(13, 110, 253, 0.08);
}

.custom-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.icon i {
  font-size: 32px;
}

.icon.blue {
  color: var(--blue);
  background: rgba(13, 110, 253, 0.12);
}

.icon.purple {
  color: var(--purple);
  background: rgba(124, 58, 237, 0.12);
}

.icon.green {
  color: var(--green);
  background: rgba(29, 191, 115, 0.12);
}

.icon.orange {
  color: var(--orange);
  background: rgba(245, 158, 11, 0.14);
}

.solution-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 900;
  line-height: 1.15;
}

.solution-card h4 {
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 12px;
}

.solution-card a {
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

.solution-card .purple-link {
  color: var(--purple);
}

.solution-card .green-link {
  color: var(--green);
}

.solution-card .orange-link {
  color: var(--orange);
}

/* =========================
   POR QUE ESCOLHER
========================= */

.why-soluway {
  background: #f7f9fc;
  padding: 72px 58px;
}

.why-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 44px;
  align-items: center;
}

.why-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.why-left h2 {
  font-size: 38px;
  line-height: 1.12;
  color: var(--navy);
  font-weight: 900;
  margin: 16px 0 18px;
}

.why-left p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 26px;
}

.why-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 15px 22px;
  border-radius: 9px;
  font-weight: 900;
  transition: 0.3s;
}

.why-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(244, 163, 0, 0.25);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 20, 60, 0.05);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(0, 20, 60, 0.1);
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 900;
}

.why-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* =========================
   BENEFÃCIOS
========================= */

.benefits-section {
  background: linear-gradient(90deg, #00112c, #001b45);
  color: #ffffff;
  padding: 32px 58px;
  display: grid;
  grid-template-columns: 22% 78%;
  gap: 30px;
}

.benefits-title span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.benefits-title h2 {
  margin-top: 12px;
  font-size: 28px;
  line-height: 1.15;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefits-list div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 24px;
}

.benefits-list i {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}

.benefits-list h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.benefits-list p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

/* =========================
   CTA
========================= */

.cta {
  max-width: 1020px;
  margin: 28px auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 42px;
  display: grid;
  grid-template-columns: 190px 1fr 260px;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 20, 60, 0.05);
}

.cta-illustration {
  width: 150px;
  height: 150px;
  background: #eef6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 54px;
}

.cta h2 {
  font-size: 28px;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.cta-list {
  list-style: none;
}

.cta-list li {
  margin-bottom: 13px;
  font-size: 15px;
}

.cta-list i {
  margin-right: 8px;
  color: var(--blue);
}

/* =========================
   FOOTER
========================= */

.footer {
  background: linear-gradient(90deg, #00112c, #001b45);
  color: #ffffff;
  padding: 34px 58px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 42px;
}

.footer h2 {
  font-size: 28px;
}

.footer span {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer h3 {
  font-size: 16px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 7px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials i {
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1200px) {
  .header {
    padding: 0 32px;
  }

  .hero {
    grid-template-columns: 42% 58%;
    padding: 42px 32px 58px;
  }

  .sales-panel {
    right: 95px;
    width: 470px;
  }

  .phone-card {
    right: -5px;
    width: 165px;
    height: 370px;
  }
}

@media (max-width: 950px) {
  :root {
    --header-offset: 180px;
  }

  .header {
    height: auto;
    padding: 18px 24px;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 42px 24px 70px;
    text-align: center;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-tag,
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 660px;
    margin-top: 40px;
  }

  .sales-panel {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }

  .phone-card {
    position: absolute;
    left: 50%;
    right: auto;
    top: 300px;
    transform: translateX(-50%);
    width: 175px;
    height: 380px;
  }

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

  .why-container {
    grid-template-columns: 1fr;
  }

  .why-left {
    text-align: center;
  }

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

  .benefits-section {
    grid-template-columns: 1fr;
  }

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

  .cta {
    grid-template-columns: 1fr;
    text-align: center;
    margin: 30px 24px;
  }

  .cta-illustration {
    margin: 0 auto;
  }

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

@media (max-width: 600px) {
  :root {
    --header-offset: 170px;
  }

  .header {
    padding: 16px 18px;
  }

  .brand h1 {
    font-size: 25px;
  }

  .nav {
    gap: 14px;
    font-size: 14px;
  }

  .header-button {
    width: 100%;
    max-width: 260px;
    padding: 12px 20px;
    text-align: center;
  }

  .hero {
    padding: 34px 18px 52px;
    min-height: auto;
  }

  .hero-tag {
    font-size: 10px;
    text-align: center;
  }

  .hero h2 {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -0.8px;
  }

  .hero p {
    font-size: 15px;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 34px;
  }

  .sales-panel {
    position: relative;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    min-height: auto;
  }

  .panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .sales-metrics {
    grid-template-columns: 1fr;
  }

  .route-item {
    align-items: flex-start;
  }

  .route-item span {
    max-width: 70%;
  }

  .features-row {
    grid-template-columns: 1fr;
  }

  .phone-card {
    position: relative;
    inset: auto;
    transform: none;
    width: 210px;
    height: 410px;
    margin: 28px auto 0;
  }

  .solutions {
    padding: 52px 18px 34px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .small-title {
    font-size: 11px;
    gap: 10px;
  }

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

  .solution-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 18px;
  }

  .icon,
  .custom-icon {
    margin: 0 auto;
  }

  .why-soluway {
    padding: 52px 18px;
  }

  .why-container {
    text-align: center;
  }

  .why-left h2 {
    font-size: 30px;
  }

  .benefits-section {
    padding: 42px 18px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .benefits-list div {
    border-left: none;
    padding-left: 0;
  }

  .cta {
    grid-template-columns: 1fr;
    margin: 28px 18px;
    padding: 28px 20px;
    text-align: center;
  }

  .cta-illustration {
    margin: 0 auto;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 34px 22px;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}

.produto-em-breve {
  cursor: pointer;
}

.produto-em-breve .mensagem-produto {
  display: none;
  margin-top: 16px;
  margin-bottom: 16px;
  background: #f3ecff;
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.produto-em-breve.mostrar-aviso .mensagem-produto {
  display: block;
}

.produto-bloqueado {
  border: none;
  background: none;
  padding: 0;
  color: #7c3aed;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lgpd-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  margin-top: 18px;
  opacity: 1;
}

.lgpd-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-bottom {
  width: 100%;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  opacity: 0.85;
}

.footer-bottom p {
  margin: 4px 0;
}