@charset "UTF-8";
:root {
  --navy: #061c36;
  --deep: #00152e;
  --blue: #183f68;
  --gold: #d8ad53;
  --gold-light: #ecc779;
  --ink: #10243c;
  --muted: #617080;
  --line: #dce3e9;
  --soft: #f3f6f8;
  --white: #fff;
  --max: 1240px;
  --font: "Segoe UI", Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.035em;
}
p {
  color: var(--muted);
}
h1 {
  font-size: clamp(2.65rem, 4.6vw, 4.45rem);
}
h2 {
  font-size: clamp(2rem, 3.25vw, 3rem);
}
h3 {
  font-size: 1.3rem;
}
em {
  font-style: normal;
  color: var(--gold-light);
}
:focus-visible {
  outline: 3px solid #b7821a;
  outline-offset: 5px;
}
::selection {
  background: var(--gold);
  color: var(--navy);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  vertical-align: middle;
}
.section {
  padding: 100px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  line-height: 1.5;
  color: #8a6525;
  margin-bottom: 23px;
}
.eyebrow > span:empty {
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 53px;
  padding: 15px 23px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid transparent;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
}
.button .icon {
  width: 20px;
  height: 20px;
}
.button:hover {
  transform: translateY(-2px);
}
.button--primary {
  background: var(--gold-light);
  color: var(--navy);
}
.button--primary:hover {
  background: #f3d492;
}
.button--ghost {
  border: 1px solid #526071;
  color: #fff;
  background: transparent;
}
.button--ghost:hover {
  background: #ffffff0e;
}
.button--navy {
  background: var(--navy);
  color: white;
}
.button--navy:hover {
  background: var(--blue);
}
.button--outline {
  border-color: var(--line);
}
.button--outline:hover {
  background: var(--soft);
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 200;
  background: var(--gold-light);
  padding: 15px;
}
.skip-link:focus {
  top: 15px;
}
.announcement {
  background: var(--navy);
  color: #d4dfeb;
  font-size: 0.75rem;
  border-bottom: 1px solid #ffffff15;
}
.announcement .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  gap: 12px;
}
.announcement a {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.announcement strong {
  color: var(--gold-light);
  font-weight: 600;
}
.announcement .icon {
  width: 13px;
  height: 13px;
  margin-left: 6px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fffffff7;
  border-bottom: 1px solid #dde4ea;
  backdrop-filter: blur(15px);
}
.nav-wrap {
  min-height: 91px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
}
.brand-crop {
  display: block;
  width: 178px;
  height: 53px;
  position: relative;
  overflow: hidden;
}
.brand-crop img {
  position: absolute;
  width: 202px;
  height: 202px;
  max-width: none;
  left: -12px;
  top: -103px;
}
.brand--dark .brand-crop {
  width: 190px;
  height: 56px;
}
.brand--dark .brand-crop img {
  width: 224px;
  height: 224px;
  left: -18px;
  top: -116px;
}
nav#navigation {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 0.875rem;
  font-weight: 500;
}
nav#navigation > a {
  position: relative;
  padding-block: 14px;
}
nav#navigation > a:hover,
nav#navigation > a[aria-current] {
  color: #936819;
}
nav#navigation > a[aria-current]:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 2px;
  background: var(--gold);
}
nav#navigation .nav-contact {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 17px;
  margin-left: 9px;
  display: flex;
  align-items: center;
  gap: 12px;
}
nav#navigation .nav-contact .icon {
  width: 18px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--navy);
  gap: 7px;
  align-items: center;
  font-size: 0.85rem;
}
.hero {
  background: var(--deep);
  color: white;
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 44px;
  align-items: center;
  padding-top: 59px;
  padding-bottom: 58px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  color: #dcb568;
  font-size: 0.75rem;
  margin-bottom: 26px;
}
.hero h1 {
  margin-bottom: 28px;
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 400;
}
.hero h1 em {
  color: var(--gold-light);
}
.hero-description {
  color: #c0cbd6;
  font-size: 1.055rem;
  line-height: 1.8;
  margin-bottom: 33px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions .button {
  font-size: 0.82rem;
  padding-inline: 17px;
  gap: 12px;
}
.hero-actions .button--ghost {
  border-color: transparent;
  padding-inline: 8px;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8fa0b3;
  font-size: 0.75rem;
  margin-top: 30px;
}
.hero-location .icon {
  width: 16px;
  height: 16px;
}
.hero-brand {
  position: relative;
  min-width: 0;
  border: 1px solid #bfcfe224;
  background: #001632;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}
.hero-brand-top {
  position: absolute;
  top: 21px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #a1afbf;
  gap: 10px;
}
.hero-brand-bottom {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #9baec32a;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #93a5b8;
}
.hero-brand-bottom strong {
  color: #dfe6ee;
  font-weight: 400;
}
.hero-brand-bottom > a {
  border: 1px solid #7c8c9f75;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
}
.hero-brand-bottom .icon {
  width: 17px;
}
.hero-principles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid #cbd9e529;
  min-height: 86px;
  font-size: 0.8rem;
  color: #d3dce6;
}
.hero-principles > span {
  display: flex;
  gap: 11px;
  align-items: center;
}
.hero-principles .icon {
  width: 20px;
  color: var(--gold-light);
}
.hero-principles > a {
  display: flex;
  gap: 26px;
  font-size: 0.75rem;
  color: #a3b2c3;
}
.hero-principles > a > span {
  font-size: 1.4rem;
  color: var(--gold-light);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 42px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading h2 span,
.segments h2 span,
.about h2 span,
.faq-section h2 span {
  color: var(--muted);
}
.section-heading > p {
  max-width: 325px;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.filter {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 3px;
  white-space: nowrap;
  font-size: 0.825rem;
  color: var(--muted);
  padding: 11px 18px;
  display: flex;
  gap: 13px;
  align-items: center;
}
.filter.is-active {
  background: var(--navy);
  color: white;
}
.filter:not(.is-active):hover {
  background: var(--soft);
  color: var(--navy);
}
.filter > span {
  border-radius: 3px;
  background: #ffffff1a;
  padding: 1px 5px;
  font-size: 0.75rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 29px 27px 23px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: white;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.service-card:hover {
  border-color: #a7b9ca;
  background: #f8fafb;
  transform: translateY(-3px);
}
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}
.service-card-top > .icon {
  width: 30px;
  height: 30px;
  color: #a87d28;
}
.service-index {
  font-size: 0.75rem;
  color: #8a97a4;
  letter-spacing: 0.07em;
}
.service-card h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 12px;
}
.service-card > p {
  font-size: 0.875rem;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 23px;
}
.service-card-bottom {
  border-top: 1px solid #e9edf1;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 500;
  color: #486178;
}
.service-card-bottom > .icon {
  width: 19px;
  height: 19px;
}
.service-card:hover .service-card-bottom > .icon {
  color: #9b7027;
}
.cloud-section {
  background: var(--navy);
  color: white;
  position: relative;
}
.cloud-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: center;
}
.cloud-section .eyebrow {
  color: var(--gold-light);
}
.cloud-section h2 {
  font-size: clamp(2.05rem, 3.2vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 25px;
}
.cloud-content > p:not(.eyebrow):not(.transition-note) {
  color: #bdcad7;
  max-width: 510px;
  font-size: 0.95rem;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 34px;
  display: grid;
  gap: 13px;
  color: #dae4ed;
  font-size: 0.9rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-list .icon {
  color: #d8b46f;
  width: 19px;
}
.transition-note {
  color: #9eaebe;
  font-size: 0.75rem;
  margin-top: 18px;
  line-height: 1.65;
}
.cloud-directory {
  padding: 31px;
  background: #102b48;
  border: 1px solid #6b829b4f;
  border-radius: 6px;
  box-shadow: 20px 20px 0 #00152e66;
}
.cloud-directory-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 23px;
  border-bottom: 1px solid #748ca33b;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  color: #dce5ed;
}
.cloud-directory-heading > .icon {
  color: var(--gold-light);
  width: 25px;
}
.cloud-directory-heading strong {
  font-weight: 400;
  color: #9bacbc;
}
.small-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-left: auto;
  color: #8fa4b9;
}
.directory-title {
  font-size: 1.6rem;
  letter-spacing: -0.035em;
  color: #fff;
  margin-block: 25px;
}
.cloud-directory > a {
  padding: 21px 0;
  border-bottom: 1px solid #748ca333;
  display: flex;
  align-items: center;
  gap: 14px;
}
.directory-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #1c3855;
  border-radius: 4px;
  color: #b6c8d9;
}
.directory-icon .icon {
  width: 22px;
}
.cloud-directory > a > span:nth-child(2) {
  flex-grow: 1;
}
.cloud-directory strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}
.cloud-directory small {
  font-size: 0.75rem;
  color: #92a8bd;
  display: block;
  margin-top: 3px;
}
.cloud-directory > a > .icon {
  width: 18px;
  color: #b4a076;
}
.cloud-directory > a:hover strong {
  color: var(--gold-light);
}
.directory-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8fa6bc;
  font-size: 0.75rem;
  margin-top: 24px;
}
.directory-bottom .icon {
  width: 15px;
  height: 15px;
}
.segments-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
}
.segments-layout > div > p:not(.eyebrow) {
  max-width: 410px;
  margin-top: 27px;
  font-size: 0.95rem;
}
.regimes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 400px;
  margin-top: 30px;
}
.regimes > span {
  font-size: 0.75rem;
  border: 1px solid var(--line);
  padding: 6px 11px;
  border-radius: 3px;
  color: #5c6c7c;
}
.segment-list > a {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.segment-list > a:first-child {
  padding-top: 2px;
}
.segment-number {
  font-size: 0.75rem;
  color: #a5884c;
  align-self: flex-start;
  margin-top: 3px;
}
.segment-list h3 {
  font-size: 1.1rem;
  margin-bottom: 9px;
  letter-spacing: -0.02em;
}
.segment-list p {
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.segment-list > a > .icon {
  margin-left: auto;
  width: 20px;
  color: #7d8fa0;
}
.segment-list > a:hover h3 {
  color: #a0782b;
}
.about {
  background: var(--soft);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-mark {
  background: #fff;
  position: relative;
  max-width: 480px;
  box-shadow: 0 5px 50px #112b4310;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 36px;
}
.about-mark > img {
  width: 100%;
  height: auto;
}
.about-mark > p {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin: -30px 15px 0;
  color: #7e8a97;
}
.about-mark strong {
  font-weight: 500;
  color: #233e59;
}
.about-copy > p:not(.eyebrow) {
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about h2 {
  margin-bottom: 25px;
}
.about-values {
  display: flex;
  gap: 24px;
  padding-block: 15px 28px;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.about-values > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.about-values .icon {
  width: 18px;
  color: #a0772d;
}
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 56px 0;
  gap: 25px;
}
.process li {
  padding-top: 20px;
  border-top: 1px solid #d9c092;
}
.step-number {
  font-size: 0.85rem;
  color: #9e772f;
  display: block;
  margin-bottom: 32px;
}
.process h3 {
  font-size: 1.3rem;
  margin-bottom: 13px;
}
.process p {
  font-size: 0.84rem;
  line-height: 1.8;
}
.ecosystem {
  border-block: 1px solid var(--line);
  padding-block: 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}
.ecosystem > p {
  font-size: 0.8rem;
  margin: 0;
  max-width: 150px;
  line-height: 1.55;
}
.ecosystem > span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #657587;
}
.faq-section {
  padding-top: 50px;
  background: #fff;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
}
.faq-layout > div > p:not(.eyebrow) {
  max-width: 280px;
  font-size: 0.9rem;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > .icon {
  width: 19px;
  color: #8c703e;
}
.faq-list details[open] summary > .icon {
  transform: rotate(45deg);
}
.faq-list details > p {
  margin: 18px 36px 0 0;
  font-size: 0.88rem;
  line-height: 1.8;
}
.contact-banner {
  background: #e9eef3;
  padding: 61px 0;
}
.contact-banner > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
  line-height: 1.2;
}
.contact-banner .eyebrow {
  margin-bottom: 16px;
  font-size: 0.75rem;
}
.contact-banner .button {
  flex-shrink: 0;
}
.footer {
  background: var(--deep);
  color: #a9b8c8;
  padding-top: 65px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 35px;
  padding-bottom: 50px;
}
.footer-main h2 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #eef3f8;
  margin: 4px 0 22px;
}
.footer-main > div > a:not(.brand) {
  display: block;
  font-size: 0.77rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-main > div > a:hover {
  color: var(--gold-light);
}
.footer-main p {
  font-size: 0.76rem;
  color: #8a9db2;
  line-height: 1.8;
  margin-top: 19px;
}
.footer-brand p {
  margin-top: 26px;
}
.footer-brand .text-link {
  color: var(--gold-light);
}
.footer-brand .text-link .icon {
  width: 16px;
}
.footer-contact .icon {
  width: 15px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 24px;
  border-top: 1px solid #8392a233;
  color: #8194a9;
  font-size: 0.75rem;
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid #b39b64;
  color: var(--gold-light);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px #00152e25;
  z-index: 40;
  transition:
    background 0.2s,
    transform 0.2s;
}
.whatsapp-float .icon {
  width: 26px;
  height: 26px;
}
.whatsapp-float:hover {
  background: #173859;
  transform: translateY(-3px);
}
.service-hero {
  padding: 35px 0 80px;
  background: var(--navy);
  color: #fff;
}
.breadcrumb {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #8e9fb0;
  margin-bottom: 50px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.service-hero-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 85px;
  align-items: center;
}
.service-name {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 18px;
}
.service-hero .eyebrow {
  color: #9daebf;
  font-size: 0.75rem;
}
.service-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  margin-bottom: 25px;
}
.lead {
  font-size: 1.1rem;
  line-height: 1.85;
}
.service-hero .lead {
  color: #b9c8d6;
  max-width: 670px;
}
.service-hero .actions {
  margin-top: 32px;
}
.service-aside {
  padding: 34px;
  border: 1px solid #5a70865c;
  background: #0f2945;
  border-radius: 5px;
}
.service-aside > .icon {
  width: 46px;
  height: 46px;
  color: var(--gold-light);
  display: block;
  margin-bottom: 30px;
}
.service-status {
  border: 1px solid #7d735552;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: #e3bf7c;
  display: inline-block;
  border-radius: 3px;
  margin-bottom: 27px;
}
.service-aside h2 {
  font-size: 1.3rem;
}
.service-aside > p {
  font-size: 0.88rem;
  color: #b1c0cf;
}
.service-aside > p.transition-note {
  font-size: 0.75rem;
  color: #93a6b9;
  border-top: 1px solid #65788a4a;
  padding-top: 17px;
}
.detail-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.detail-features article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.detail-features article > span {
  color: #a17c34;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 30px;
}
.detail-features h3 {
  font-size: 1.45rem;
}
.detail-features p {
  font-size: 0.95rem;
}
.related-section {
  background: var(--soft);
}
.related-section h2 {
  font-size: 2.3rem;
}
.contact-page {
  padding-top: 32px;
  min-height: 700px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  padding-bottom: 20px;
}
.contact-layout h1 {
  font-size: clamp(2.8rem, 4.3vw, 4.15rem);
  font-weight: 400;
}
.contact-layout h1 em {
  color: #a97e2e;
}
.contact-layout .lead {
  max-width: 460px;
  margin-bottom: 30px;
}
.contact-service-note {
  font-size: 0.8rem;
  margin-top: 20px;
}
.contact-options > a {
  padding: 20px 0 25px;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.contact-options > a > .icon:first-child {
  color: #a5803a;
  margin-top: 3px;
}
.contact-options > a > .icon:last-child {
  margin-left: auto;
  width: 19px;
  color: #748496;
}
.contact-options small {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #7b8996;
  display: block;
  margin-bottom: 9px;
}
.contact-options strong {
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.contact-options > a > span > span {
  display: block;
  font-size: 0.84rem;
  margin-top: 6px;
  color: var(--muted);
}
.contact-options > a:hover strong {
  color: #956d24;
}
.client-box {
  background: var(--soft);
  padding: 26px;
  margin-top: 30px;
}
.client-box h2 {
  font-size: 1.25rem;
}
.client-box p {
  font-size: 0.84rem;
}
.client-box .button {
  font-size: 0.8rem;
  padding: 12px 16px;
  min-height: 46px;
  gap: 9px;
}
.legal {
  max-width: 800px;
}
.legal h1 {
  font-size: 3rem;
}
.legal h2 {
  font-size: 1.65rem;
  margin-top: 42px;
}
.legal p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal > .button {
  margin-top: 25px;
}
.not-found {
  padding-block: 60px;
}
.not-found h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
@media (min-width: 1500px) {
  .hero-layout {
    padding-top: 72px;
    padding-bottom: 72px;
    gap: 68px;
  }
  .hero h1 {
    font-size: 4.7rem;
  }
  .hero-brand {
    max-height: 540px;
  }
  .hero-logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  nav#navigation {
    gap: 18px;
    font-size: 0.8rem;
  }
  .brand-crop {
    width: 160px;
    transform-origin: left;
    transform: scale(0.9);
    margin-right: -17px;
  }
  .hero-layout {
    gap: 25px;
  }
  .hero-brand-top {
    font-size: 0.75rem;
  }
  .hero-brand-bottom {
    bottom: 17px;
    left: 19px;
    right: 19px;
  }
  .hero-principles {
    gap: 10px;
    font-size: 0.75rem;
  }
  .cloud-layout,
  .segments-layout,
  .about-layout {
    gap: 55px;
  }
  .cloud-directory {
    padding: 24px;
  }
  .small-label {
    display: none;
  }
  .section-heading {
    gap: 35px;
  }
  .footer-main {
    gap: 20px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 45px;
  }
  .footer-brand p {
    margin: 0;
  }
  .footer-brand .text-link {
    margin-left: auto;
  }
  .service-hero-layout {
    gap: 40px;
  }
  .contact-layout {
    gap: 50px;
  }
}
@media (max-width: 980px) {
  .nav-wrap {
    min-height: 78px;
  }
  .menu-toggle {
    display: flex;
  }
  .js #navigation {
    display: none;
  }
  .js #navigation.is-open {
    display: flex;
  }
  nav#navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 32px 28px;
    align-items: stretch;
    gap: 2px;
    flex-direction: column;
    box-shadow: 0 12px 20px #061c3612;
    border-top: 1px solid var(--line);
    font-size: 0.95rem;
  }
  nav#navigation .nav-contact {
    margin: 7px 0 0;
  }
  nav#navigation > a[aria-current]:after {
    display: none;
  }
  html:not(.js) .nav-wrap {
    flex-wrap: wrap;
    padding-block: 16px;
  }
  html:not(.js) nav#navigation {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    box-shadow: none;
    padding: 0;
  }
  .hero-layout {
    grid-template-columns: 1.15fr 1fr;
    gap: 20px;
    padding-block: 48px;
  }
  .hero h1 {
    font-size: 3.35rem;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
  }
  .hero-description {
    font-size: 0.9rem;
  }
  .hero-actions {
    gap: 6px;
  }
  .hero-brand {
    align-self: center;
  }
  .hero-brand-top {
    top: 14px;
    left: 15px;
    right: 15px;
    font-size: 0.75rem;
  }
  .hero-brand-bottom {
    font-size: 0.75rem;
    bottom: 14px;
    padding-top: 9px;
  }
  .hero-brand-bottom > a {
    width: 25px;
    height: 25px;
  }
  .hero-principles > a {
    display: none;
  }
  .section {
    padding: 75px 0;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .section-heading > p {
    max-width: 520px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cloud-layout {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .cloud-directory {
    padding: 20px;
    box-shadow: 10px 10px 0 #00152e66;
  }
  .cloud-directory small {
    font-size: 0.75rem;
  }
  .cloud-content .button {
    font-size: 0.8rem;
    padding-inline: 16px;
  }
  .segments-layout,
  .about-layout {
    gap: 42px;
  }
  .about-values {
    gap: 15px;
  }
  .process {
    gap: 17px;
  }
  .process h3 {
    font-size: 1.15rem;
  }
  .ecosystem {
    gap: 20px;
    flex-wrap: wrap;
  }
  .faq-layout {
    gap: 45px;
  }
  .service-hero-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
  }
  .service-aside {
    padding: 24px;
  }
  .service-hero h1 {
    font-size: 2.7rem;
  }
  .detail-features {
    gap: 30px;
  }
  .contact-layout {
    gap: 35px;
  }
  .contact-options strong {
    font-size: 1rem;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .announcement .container {
    justify-content: center;
    font-size: 0.75rem;
    min-height: 32px;
  }
  .announcement .container > a {
    display: none;
  }
  .nav-wrap {
    min-height: 72px;
  }
  .brand-crop {
    transform: scale(0.82);
    margin-right: -32px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 43px;
    padding-bottom: 32px;
    gap: 33px;
  }
  .hero h1 {
    font-size: clamp(2.9rem, 10.2vw, 4.5rem);
    margin-bottom: 23px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 24px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .button {
    font-size: 0.8rem;
  }
  .hero-actions .button--ghost {
    padding-inline: 0;
    gap: 7px;
  }
  .hero-location {
    margin-top: 23px;
    font-size: 0.75rem;
  }
  .hero-brand {
    width: 100%;
    max-width: 470px;
    justify-self: center;
    align-self: stretch;
    aspect-ratio: 1.24;
    overflow: hidden;
  }
  .hero-logo {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .hero-brand-top {
    font-size: 0.75rem;
    top: 16px;
    left: 20px;
    right: 20px;
  }
  .hero-brand-bottom {
    font-size: 0.75rem;
    bottom: 16px;
    left: 20px;
    right: 20px;
  }
  .hero-brand-bottom > a {
    width: 30px;
    height: 30px;
  }
  .hero-principles {
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 24px;
    row-gap: 13px;
    padding-block: 23px;
    font-size: 0.75rem;
  }
  .hero-principles .icon {
    width: 18px;
    height: 18px;
  }
  .hero-principles > span:last-of-type {
    flex-basis: 100%;
  }
  .section {
    padding: 62px 0;
  }
  h2 {
    font-size: 2.05rem;
  }
  .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 19px;
  }
  .section-heading {
    margin-bottom: 30px;
    gap: 22px;
  }
  .section-heading > p {
    font-size: 0.9rem;
  }
  .filter-bar {
    gap: 2px;
    margin-right: -20px;
    padding-right: 20px;
  }
  .filter {
    font-size: 0.75rem;
    padding: 10px 13px;
  }
  .filter > span {
    font-size: 0.75rem;
  }
  .services-grid {
    gap: 12px;
  }
  .service-card {
    padding: 23px 20px 20px;
  }
  .service-card h3 {
    font-size: 1.12rem;
  }
  .service-card > p {
    font-size: 0.83rem;
  }
  .service-card-top {
    margin-bottom: 22px;
  }
  .service-card-top > .icon {
    width: 27px;
    height: 27px;
  }
  .service-card-bottom {
    font-size: 0.75rem;
  }
  .cloud-layout,
  .segments-layout,
  .about-layout,
  .faq-layout,
  .contact-layout,
  .service-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cloud-content > p:not(.eyebrow) {
    max-width: none;
  }
  .cloud-directory {
    padding: 25px;
    max-width: 510px;
    width: 100%;
  }
  .cloud-directory small {
    font-size: 0.75rem;
  }
  .cloud-directory-heading {
    font-size: 0.8rem;
  }
  .small-label {
    display: block;
    font-size: 0.75rem;
  }
  .directory-title {
    font-size: 1.6rem;
  }
  .segments-layout > div > p:not(.eyebrow) {
    max-width: 100%;
  }
  .regimes {
    margin-top: 23px;
    max-width: 100%;
  }
  .segment-list > a {
    padding-block: 22px;
    gap: 16px;
  }
  .segment-list h3 {
    font-size: 1.08rem;
  }
  .about-mark {
    max-width: 410px;
    margin-inline: auto;
  }
  .about-layout {
    gap: 45px;
  }
  .about-copy {
    grid-row: 1;
  }
  .about h2 br:last-child {
    display: none;
  }
  .about-values {
    gap: 25px;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 35px 0;
  }
  .process li {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 15px;
    padding-block: 22px;
  }
  .step-number {
    grid-row: 1 / span 2;
    margin-top: 3px;
    margin-bottom: 0;
  }
  .process h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }
  .process p {
    margin: 0;
    font-size: 0.87rem;
  }
  .ecosystem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .ecosystem > p {
    grid-column: 1 / -1;
    max-width: none;
    font-size: 0.8rem;
  }
  .ecosystem > span {
    font-size: 0.76rem;
  }
  .faq-layout > div > p:not(.eyebrow) {
    max-width: none;
  }
  .faq-list summary {
    font-size: 0.92rem;
  }
  .contact-banner {
    padding-block: 43px;
  }
  .contact-banner > .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
  .contact-banner h2 {
    font-size: 2rem;
  }
  .footer {
    padding-top: 43px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 33px;
  }
  .footer-brand {
    display: block;
  }
  .footer-brand p {
    margin-block: 19px;
  }
  .footer-brand .text-link {
    margin-left: 0;
  }
  .footer-contact {
    grid-column: 1 / -1;
    border-top: 1px solid #8fa0b02a;
    padding-top: 22px;
  }
  .footer-main h2 {
    font-size: 0.76rem;
    margin-bottom: 17px;
  }
  .footer-main > div > a:not(.brand) {
    font-size: 0.77rem;
    margin-bottom: 10px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-right: 65px;
    font-size: 0.75rem;
  }
  .whatsapp-float {
    width: 47px;
    height: 47px;
    right: 17px;
    bottom: 17px;
  }
  .breadcrumb {
    margin-bottom: 30px;
    font-size: 0.75rem;
    gap: 9px;
  }
  .service-hero {
    padding-top: 25px;
    padding-bottom: 45px;
  }
  .service-hero h1 {
    font-size: 2.6rem;
  }
  .service-hero .lead {
    font-size: 1rem;
  }
  .service-aside {
    padding: 27px;
  }
  .service-aside > .icon {
    margin-bottom: 20px;
    width: 38px;
    height: 38px;
  }
  .service-status {
    margin-bottom: 20px;
  }
  .detail-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .detail-features article > span {
    margin-bottom: 16px;
  }
  .detail-features h3 {
    font-size: 1.5rem;
  }
  .related-section h2 {
    font-size: 2rem;
  }
  .contact-page {
    padding-top: 26px;
  }
  .contact-layout h1 {
    font-size: 3rem;
  }
  .contact-layout .lead {
    font-size: 1rem;
    max-width: 100%;
  }
  .contact-options > a {
    gap: 15px;
  }
  .client-box {
    padding: 23px;
  }
  .legal h1 {
    font-size: 2.5rem;
  }
  .legal h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 460px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 24px;
  }
  .service-card-top {
    margin-bottom: 22px;
  }
  .service-card h3 {
    font-size: 1.3rem;
  }
  .service-card > p {
    font-size: 0.9rem;
  }
  .service-card-bottom {
    font-size: 0.76rem;
  }
  .hero-brand {
    aspect-ratio: 1.16;
  }
  .hero-description br {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-actions .button--primary {
    font-size: 0.84rem;
  }
  .hero-actions .button--ghost {
    min-height: 40px;
  }
  .hero-principles {
    column-gap: 20px;
  }
  .hero-principles > span {
    font-size: 0.75rem;
    gap: 7px;
  }
  .small-label {
    display: none;
  }
  .about-mark {
    max-width: 330px;
  }
  .about-values {
    gap: 15px;
    font-size: 0.8rem;
  }
  .cloud-directory {
    padding: 22px;
  }
  .directory-icon {
    width: 37px;
    height: 37px;
  }
  .cloud-directory > a {
    gap: 11px;
  }
  .cloud-directory small {
    font-size: 0.75rem;
  }
  .footer-main {
    gap: 25px 18px;
  }
  .contact-options strong {
    font-size: 0.95rem;
  }
  .contact-options > a > .icon:first-child {
    width: 20px;
  }
  .contact-options > a > .icon:last-child {
    width: 16px;
  }
  .contact-options > a {
    gap: 12px;
  }
  .contact-layout h1 {
    font-size: 2.75rem;
  }
}
/* Escala de leitura consistente, inclusive nos menores dispositivos. */
.service-card > p,
.section-heading > p,
.segments-layout > div > p:not(.eyebrow),
.about-copy > p:not(.eyebrow),
.cloud-content > p:not(.eyebrow):not(.transition-note),
.segment-list p,
.process p,
.faq-list details > p,
.service-aside > p:not(.transition-note),
.detail-features p,
.client-box p {
  font-size: 1rem;
}
.filter,
.button,
.hero-actions .button,
.hero-principles,
.feature-list,
.about-values,
.service-card-bottom,
.faq-list summary,
.footer-main > div > a:not(.brand),
.footer-main p,
.contact-options > a > span > span {
  font-size: 0.875rem;
}
.hero-brand-top {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
}
.small-label {
  display: none;
}
.brand-crop {
  background: #fff;
}
.brand--dark .brand-crop {
  background: var(--deep);
}
.contact-options small,
.about-mark > p,
.service-index,
.segment-list > a > .icon,
.contact-options > a > .icon:last-child {
  color: #617080;
}
@media (max-width: 720px) {
  .hero-principles > span {
    font-size: 0.8rem;
  }
  .hero-brand-top {
    font-size: 0.75rem;
  }
  .hero-brand-bottom {
    font-size: 0.75rem;
  }
  .service-card {
    padding: 25px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
  }
  .contact-options strong {
    font-size: 1rem;
  }
  .footer-main h2 {
    font-size: 0.875rem;
  }
  .filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    margin-right: 0;
    padding-right: 0;
    gap: 6px;
  }
  .filter {
    justify-content: center;
    white-space: normal;
    padding-inline: 9px;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .announcement,
  .site-header,
  .whatsapp-float,
  .filter-bar,
  .footer,
  .contact-banner {
    display: none;
  }
  .hero,
  .service-hero,
  .cloud-section {
    background: white;
    color: black;
  }
  p,
  .hero-description {
    color: #333;
  }
  .container {
    width: 100%;
  }
  .section {
    padding: 25px 0;
  }
  .hero-brand {
    display: none;
  }
  .hero-layout,
  .service-hero-layout {
    display: block;
  }
  .button {
    border: 1px solid #999;
    color: #111;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
