:root {
  --ink: #07111f;
  --ink-2: #101d2b;
  --surface: #f7faf9;
  --surface-strong: #ffffff;
  --line: rgba(13, 29, 44, 0.12);
  --muted: #617184;
  --text: #162334;
  --teal: #16b7a6;
  --teal-dark: #0d766e;
  --gold: #d69b32;
  --green: #6fbf73;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(7, 17, 31, 0.14);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: rgba(7, 17, 31, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    min-height 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

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

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
}

.nav .nav-cta {
  margin-left: 8px;
  color: var(--ink);
  background: var(--white);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  color: var(--ink);
  background: #d9fff8;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 690px;
  padding: 124px 0 32px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.82) 34%, rgba(7, 17, 31, 0.2) 78%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.52) 0%, rgba(7, 17, 31, 0) 50%, rgba(7, 17, 31, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 5.4vw, 5.2rem);
}

.hero-lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff, #bbf7ef);
  box-shadow: 0 16px 34px rgba(22, 183, 166, 0.18);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.contact .button-secondary,
.button-secondary.light {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface-strong);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 880px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.trust-strip article {
  min-height: 96px;
  padding: 18px;
  background: rgba(7, 17, 31, 0.62);
  backdrop-filter: blur(12px);
}

.trust-strip strong,
.trust-strip article > span {
  display: block;
}

.trust-strip strong span {
  display: inline;
}

.trust-strip strong {
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1;
}

.trust-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: 94px 0;
}

.two-column,
.reach-layout,
.app-ready-layout,
.app-list,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.section h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.intro-copy {
  color: #425367;
  font-size: 1.06rem;
}

.intro-copy p {
  margin: 0 0 18px;
}

.solutions,
.security,
.app-ready {
  background: var(--white);
}

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

.solution-grid,
.principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-card,
.principles article,
.reach-panel,
.quick-links,
.app-card,
.info-panel,
.support-card,
.legal-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.07);
}

.solution-card {
  min-height: 290px;
  padding: 24px;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  color: var(--teal-dark);
  background: #e6f8f4;
  border-radius: 8px;
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.solution-card h3,
.principles h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.solution-card p,
.principles p,
.reach p,
.contact p,
.app-ready p,
.page-hero p,
.app-card p,
.support-card p,
.legal-copy p,
.info-panel p {
  color: var(--muted);
}

.solution-card p,
.principles p {
  margin: 0;
  font-size: 0.96rem;
}

.reach {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(13, 118, 110, 0.86)),
    var(--ink);
}

.reach h2 {
  color: var(--white);
}

.reach p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.07rem;
}

.reach-panel {
  justify-self: end;
  width: min(100%, 360px);
  padding: 28px;
  color: var(--ink);
}

.reach-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.reach-number span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--gold));
  border-radius: 8px;
  font-weight: 900;
}

.reach-number strong {
  color: var(--ink);
  font-size: 3.2rem;
  line-height: 1;
}

.reach-panel p {
  margin: 20px 0 0;
  color: var(--muted);
}

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

.principles article {
  padding: 26px;
  border-top: 4px solid var(--teal);
}

.principles article:nth-child(2) {
  border-top-color: var(--gold);
}

.principles article:nth-child(3) {
  border-top-color: var(--green);
}

.contact {
  background: #eef4f1;
}

.contact h2 {
  max-width: 620px;
}

.contact p {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.contact-single {
  max-width: 780px;
}

.compact {
  background: rgba(7, 17, 31, 0.96);
}

.subpage {
  background: var(--surface);
}

.page-hero {
  padding: 148px 0 82px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(13, 118, 110, 0.82)),
    var(--ink);
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.quick-links,
.info-panel,
.app-card,
.support-card,
.legal-copy {
  padding: 28px;
}

.quick-links {
  display: grid;
  gap: 12px;
}

.quick-links a,
.info-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.quick-links a::after,
.info-panel a::after {
  content: ">";
  color: var(--teal-dark);
}

.app-list {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.app-card h2,
.support-card h2,
.info-panel h2,
.legal-copy h2 {
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.15;
}

.app-card p,
.support-card p,
.legal-copy p,
.info-panel p {
  margin: 0 0 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 0 10px;
  color: var(--teal-dark);
  background: #e6f8f4;
  border: 1px solid rgba(13, 118, 110, 0.16);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.support-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.support-card .button {
  margin-top: auto;
}

.legal-layout {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
}

.legal-copy h2:not(:first-child) {
  margin-top: 32px;
}

.legal-copy a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  font-size: 0.94rem;
}

.footer-content a {
  color: var(--white);
  font-weight: 750;
}

.footer-cnpj {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 650;
}

.footer-address {
  max-width: 420px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.35;
}

@media (max-width: 920px) {
  .site-header {
    padding-inline: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(7, 17, 31, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-scrolled .nav {
    top: 64px;
  }

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

  .nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.76)),
      linear-gradient(180deg, rgba(7, 17, 31, 0.52), rgba(7, 17, 31, 0.9));
  }

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

  .two-column,
  .reach-layout,
  .app-ready-layout,
  .app-list,
  .legal-layout,
  .support-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reach-panel {
    justify-self: stretch;
    width: 100%;
  }

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

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 110px 0 34px;
  }

  .page-hero {
    padding: 122px 0 58px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 4.7rem);
  }

  .hero-actions,
  .contact-actions,
  .card-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

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

  .trust-strip {
    margin-top: 32px;
  }

  .trust-strip article {
    min-height: 96px;
  }

  .section {
    padding: 66px 0;
  }

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

  .icon {
    margin-bottom: 24px;
  }

  .reach-number {
    align-items: flex-start;
    flex-direction: column;
  }

  .reach-number strong {
    font-size: 2.65rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0;
  }
}

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