:root {
  --navy-900: #0b1730;
  --navy-800: #10233e;
  --navy-700: #173257;
  --gray-50: #f6f7f9;
  --gray-100: #eef1f4;
  --gray-400: #7b8794;
  --gray-600: #5e6875;
  --white: #ffffff;
  --orange: #e98a2e;
  --orange-dark: #d8791d;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 14px 36px rgba(16, 35, 62, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--gray-50);
  color: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* topo */
.topbar {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 16, 31, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.topbar-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-name {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.menu a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.menu a:hover {
  opacity: 0,72;
}

.menu-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

/* hero */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;

  display: flex;
  align-items: center;

  background: linear-gradient(
    120deg,
    #0b1730 60%
    #0f2a5c 100%
  );
}

/* garante que o conteúdo fique acima da imagem */
.hero > * {
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7, 16, 31, 0.94) 0%, rgba(7, 16, 31, 0.86) 38%, rgba(7, 16, 31, 0.34) 72%, rgba(7, 16, 31, 0.16) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero-text {
  color: var(--white);
  max-width: 620px;
}

.mini-brand {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 500;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 24px;
  color: #f0a14a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  max-width: 9ch;
  font-weight: 800;
}

.hero-description {
  margin: 0 0 34px;
  font-size: 1.12rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  letter-spacing: 0.01em;
}

ons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-primary {
  display: inline-flex;        /* muda isso */
  align-items: center;         /* centraliza vertical */
  justify-content: center;     /* centraliza horizontal */

  background: linear-gradient(135deg, #ffb84d, #f59e0b);
  color: #0b1730;

  padding: 14px 26px;
  border-radius: 999px;

  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.28);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #eb9639 0%, #d8791d 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 140, 0, 0.35);
}

.btn:active {
  transform: scale(0.97);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-large {
  min-height: 60px;
  padding: 0 30px;
}

.hero-location {
  margin-top: 40px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.hero-location span {
  opacity: 0.7;
  font-size: 0.9rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.image-card {
  width: 100%;
  max-width: 540px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.30),
    0 8px 24px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 16, 31, 0.22), transparent 45%);
  pointer-events: none;
}

.image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.01);
}

/* trust */
.trust-bar {
  position: relative;
  margin-top: 40px;
  padding-top: 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
trust-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(16, 35, 62, 0.10);
  border: 1px solid rgba(16, 35, 62, 0.05);
}

.trust-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1rem;
}

.trust-item span {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 0.96rem;
}

/* sections */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--gray-50);
}

.section-dark {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.about-text h2,
.cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy-900);
  font-weight: 800;
}

.section-heading p,
.about-text p,
.cta-box p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 44px rgba(16, 35, 62, 0.10);
  border: 1px solid rgba(16, 35, 62, 0.05);
}

.step-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  color: var(--navy-900);
}

.step-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.7;
}

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.about-box {
  background: linear-gradient(135deg, #0b1730 0%, #122746 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 22px 50px rgba(16, 35, 62, 0.16);
}

.about-box h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.about-box ul {
  margin: 0;
  padding-left: 20px;
}

.about-box li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

/* cta */
.cta-section {
  background: linear-gradient(135deg, #0b1730 0%, #10233e 100%);
}

.cta-box {
  text-align: center;
  max-width: 840px;
}

.cta-box h2 {
  color: var(--white);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0 auto 28px;
}

/* footer */
.footer {
  background: #09101f;
  color: rgba(255, 255, 255, 0.84);
  padding: 56px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.footer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--white);
}

.footer p,
.footer a {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

.footer p {
  margin: 8px 0 0;
}

.footer a {
  transition: all 0.3s ease;
}

.footer a:hover {
  opacity: 1;
  transform: translateX(2px)
}

/* responsivo */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .steps-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .trust-bar {
    margin-top: 0;
    padding-top: 24px;
  }

  .menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .image-card {
    border-radius: 22px;
  }

  .trust-item,
  .step-card,
  .about-box {
    padding: 24px;
  }
}