:root {
  --ink: #151515;
  --ink-soft: #2f3840;
  --slate: #68737b;
  --surface: #f6f7f8;
  --surface-2: #eef1f3;
  --surface-3: #fbfbfb;
  --white: #ffffff;
  --accent: #2e79a7;
  --accent-soft: #dcecf6;
  --blue: #1f5f86;
  --green: #25d366;
  --line: rgba(16, 16, 16, 0.10);
  --line-strong: rgba(16, 16, 16, 0.2);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-150%); padding: 10px 16px; background: var(--white); color: var(--ink); border: 1px solid var(--line); border-radius: 8px; }
.skip-link:focus { transform: none; }

.contact-bar {
  background: #111111;
  color: #f5f5f5;
  font-size: .78rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-bar__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.contact-bar a { display: inline-flex; align-items: center; gap: 7px; transition: opacity .2s ease, color .2s ease; }
.contact-bar a:hover { opacity: .9; color: #d8ebf8; }
.contact-bar__right { display: flex; align-items: center; gap: 22px; }

.site-header { position: absolute; z-index: 1000; width: 100%; top: 0; left: 0; }
.navbar {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
}
.navbar.is-scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  border-bottom-color: rgba(0,0,0,.08);
}
.navbar__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 13px;
  background: rgba(255,255,255,.08);
}
.navbar.is-scrolled .brand__mark {
  border-color: rgba(0,0,0,.12);
  background: #f5f5f5;
}
.brand__mark svg { width: 37px; height: 37px; stroke-width: 2.4; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; font-weight: 400; letter-spacing: .06em; }
.brand__text small { margin-top: 6px; color: rgba(255,255,255,.88); letter-spacing: .32em; font-size: .54rem; font-weight: 700; }
.navbar.is-scrolled .brand__text small { color: var(--slate); }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: .92rem; font-weight: 650; }
.nav-links a { position: relative; color: inherit; }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -10px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: inherit; }
.nav-cta {
  padding: 11px 19px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.navbar.is-scrolled .nav-cta { border-color: rgba(0,0,0,.16); }
.nav-cta:hover { background: #111111; border-color: #111111; color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 11px; background: rgba(255,255,255,.08); padding: 11px; color: inherit; }
.navbar.is-scrolled .menu-toggle { border-color: rgba(0,0,0,.12); background: #f5f5f5; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .25s ease; }

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 180px;
  color: var(--white);
  background: #171717;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(18,18,18,.86) 0%, rgba(18,18,18,.8) 36%, rgba(18,18,18,.58) 66%, rgba(18,18,18,.64) 100%),
    url("assets/images/hero-debase-light.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.02), rgba(255,255,255,0) 25%, rgba(0,0,0,.08));
}
.hero__glow { display: none; }
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .65fr);
  gap: 84px;
  align-items: center;
  padding-bottom: 142px;
}
.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfe0eb;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.eyebrow span { width: 36px; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--accent); }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3rem, 5vw, 5.3rem); line-height: 1.02; letter-spacing: -.05em; font-weight: 760; }
.hero h1 em { display: block; margin-top: 12px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-weight: 400; opacity: .92; }
.hero__lead { max-width: 640px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: #111111; box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.button--primary:hover { background: var(--accent); box-shadow: 0 16px 36px rgba(46,121,167,.25); }
.button--glass { color: var(--white); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.10); backdrop-filter: blur(12px); }
.button--glass:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }
.button--full { width: 100%; border: 0; }
.hero__panel {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 65px rgba(0,0,0,.18);
}
.hero__panel-top { display: flex; align-items: center; gap: 10px; color: #eef3f6; font-size: .8rem; font-weight: 700; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #38df8b; box-shadow: 0 0 0 5px rgba(56,223,139,.12); }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.metric {
  min-height: 114px;
  padding: 17px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.18);
}
.metric strong { display: block; color: #111111; font-size: 1.55rem; letter-spacing: -.04em; }
.metric span { color: #55636c; font-size: .78rem; line-height: 1.35; }
.hero__panel-footer { display: flex; gap: 10px; color: #edf3f6; font-size: .78rem; line-height: 1.45; }
.hero__panel-footer svg { flex: 0 0 auto; color: #fff; margin-top: 2px; }
.hero__bottom {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(17,17,17,.58);
  backdrop-filter: blur(10px);
}
.hero__bottom-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.hero__bottom-inner > span { color: rgba(255,255,255,.72); font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.partner-list { display: flex; flex-wrap: wrap; gap: 42px; align-items: center; color: #fff; }
.partner-list strong { font-size: .96rem; font-weight: 650; }

.section { padding: 108px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; align-items: end; gap: 60px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .clients-head h2, .partnerships-copy h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.1vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  color: #111111;
}
.section-heading > p, .clients-head > p { margin: 0 0 8px; color: #606d75; font-size: 1.02rem; }

.section--services {
  position: relative;
  background:
    linear-gradient(to bottom, #ffffff 0%, #f7f8f9 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  padding: 30px 28px 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: #111111;
  opacity: .12;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.service-card--featured { background: #111111; border-color: #111111; color: #fff; }
.service-card--featured::before { background: #ffffff; opacity: .4; }
.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f2f4f6;
  color: #111111;
  margin-bottom: 18px;
}
.service-card--featured .service-card__icon { background: rgba(255,255,255,.14); color: #fff; }
.service-card > span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 9px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--slate);
  background: #f4f6f7;
  border-radius: 999px;
}
.service-card--featured > span { background: rgba(255,255,255,.14); color: rgba(255,255,255,.88); }
.service-card h3 { margin: 0 0 10px; font-size: 1.18rem; line-height: 1.3; }
.service-card p { margin: 0 0 18px; color: #65737c; font-size: .92rem; }
.service-card--featured p { color: rgba(255,255,255,.82); }
.service-card a { display: inline-flex; align-items: center; gap: 9px; color: #111111; font-weight: 700; font-size: .88rem; }
.service-card--featured a { color: #fff; }
.service-card a svg { transition: transform .2s ease; }
.service-card:hover a svg { transform: translateX(4px); }

.section--about {
  position: relative;
  color: var(--ink);
  background: #ffffff;
}
.about-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 78px; align-items: center; }
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  aspect-ratio: 1 / .86;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.08);
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 18px -16px -16px 18px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 26px;
  z-index: -1;
}
.about-visual__badge {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: 190px;
  padding: 20px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-soft);
}
.about-visual__badge strong { display: block; color: #111111; font-size: 1.7rem; }
.about-visual__badge span { display: block; font-size: .77rem; line-height: 1.4; color: var(--slate); }
.about-copy > p:not(.eyebrow) { color: #5e6972; font-size: 1rem; }
.difference-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  background: #f8f9fa;
}
.difference-box__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: #111111; }
.difference-box h3 { margin: 0 0 7px; font-size: 1rem; }
.difference-box p { margin: 0; color: #65727a; font-size: .88rem; }

.section--clients {
  background: #f8f9fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clients-head { display: grid; grid-template-columns: 1.1fr .6fr; gap: 60px; align-items: end; margin-bottom: 40px; }
.client-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.client-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.client-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.client-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #eaf4f8; }
.client-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.client-card:hover .client-card__media img { transform: scale(1.04); }
.client-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,17,17,.02) 0%, rgba(17,17,17,.5) 100%); }
.client-card__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: #111111;
  font-weight: 700;
  font-size: .84rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}
.client-card__badge svg { width: 18px; height: 18px; color: var(--accent); }
.client-card__content { padding: 24px; }
.client-card h3 { margin: 0 0 8px; font-size: 1.08rem; color: #111111; }
.client-card p { margin: 0; color: #667780; font-size: .93rem; line-height: 1.65; }

.section--partnerships {
  color: var(--ink);
  background: #ffffff;
}
.partnerships-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.partnerships-image { position: relative; }
.partnerships-image img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
}
.partnerships-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(to top right, rgba(255,255,255,.04), transparent 60%);
}
.partnerships-copy > p:not(.eyebrow) { color: #5f6b74; }
.check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: center; gap: 11px; color: #2d3941; font-size: .9rem; }
.check-list svg { color: #111111; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font-weight: 800; font-size: .88rem; }
.text-link:hover svg { transform: translateX(4px); }
.text-link svg { transition: transform .2s ease; }

.section--contact {
  position: relative;
  color: var(--white);
  background: #111111;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,.96), rgba(17,17,17,.86)),
    url("assets/images/imagem-contato.webp") center/cover;
  opacity: .92;
}
.contact-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-copy { padding-top: 30px; }
.contact-copy h2 { color: #fff; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.8); font-size: 1rem; }
.contact-options { display: grid; gap: 12px; margin-top: 34px; }
.contact-options a { display: flex; align-items: center; gap: 14px; width: max-content; max-width: 100%; color: #f0f3f5; }
.contact-options a > span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; background: rgba(255,255,255,.06); }
.contact-options small { display: block; color: rgba(255,255,255,.62); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-options strong { font-size: .9rem; }
.contact-card {
  padding: 34px;
  color: var(--ink);
  border-radius: 25px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 36px 90px rgba(0,0,0,.22);
  border: 1px solid rgba(0,0,0,.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-card label { display: block; margin-bottom: 15px; color: #283a44; font-size: .76rem; font-weight: 800; }
.contact-card input, .contact-card select, .contact-card textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d8e1e5;
  border-radius: 11px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fafbfc;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-card input:focus, .contact-card select:focus, .contact-card textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(46,121,167,.14); }
.contact-card textarea { resize: vertical; min-height: 122px; }
.contact-card .consent { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 18px; color: #687780; font-weight: 500; font-size: .74rem; }
.contact-card .consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: #111111; flex: 0 0 auto; }
.form-status { min-height: 20px; margin: 12px 0 0; color: var(--accent); text-align: center; font-size: .78rem; font-weight: 700; }
.privacy-note { margin-top: 18px; border-top: 1px solid #e4ebee; padding-top: 15px; }
.privacy-note summary { cursor: pointer; color: #52646d; font-size: .78rem; font-weight: 800; }
.privacy-note p { margin: 10px 0 0; color: #75858d; font-size: .72rem; line-height: 1.6; }

.site-footer { color: #cfd7dc; background: #0c0c0c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .8fr .9fr; gap: 56px; padding-top: 72px; padding-bottom: 58px; }
.brand--footer { color: var(--white); }
.footer-brand p { max-width: 320px; margin-top: 20px; font-size: .86rem; color: rgba(255,255,255,.72); }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: .82rem; }
.footer-links strong, .footer-contact strong { margin-bottom: 8px; color: var(--white); font-size: .84rem; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: .72rem; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 7px; color: #ffffff; }

.floating-whatsapp {
  position: fixed;
  z-index: 1001;
  right: 24px;
  bottom: 24px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: white;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 13px 36px rgba(19,120,67,.36);
  font-weight: 800;
  font-size: .82rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(19,120,67,.48); }
.floating-whatsapp svg { width: 24px; height: 24px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .hero { min-height: 930px; }
  .hero__content { grid-template-columns: 1fr; gap: 42px; padding-bottom: 125px; }
  .hero__panel { max-width: 650px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .partnerships-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 760px; }
  .about-visual__badge { right: 22px; }
  .partnerships-image img { min-height: 390px; }
  .contact-copy { padding-top: 0; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .contact-bar { display: none; }
  .site-header { top: 0; }
  .navbar__inner { min-height: 72px; }
  .brand__mark { width: 42px; height: 42px; }
  .brand__text strong { font-size: 1.45rem; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 14px 24px;
    background: rgba(255,255,255,.98);
    color: var(--ink);
    border-top: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transform: translateY(-140%);
    opacity: 0;
    visibility: hidden;
    transition: .28s ease;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a { padding: 14px; }
  .nav-links a::after { display: none; }
  .nav-cta { border-radius: 11px; margin-top: 8px; text-align: center; border-color: rgba(0,0,0,.12); }
  .hero { min-height: 920px; padding-top: 120px; }
  .hero__content { padding-bottom: 110px; }
  .hero__bottom-inner, .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
  .section { padding: 88px 0; }
  .section-heading, .clients-head { grid-template-columns: 1fr; gap: 20px; }
  .services-grid, .client-cards, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .about-visual::after { display: none; }
  .about-visual__badge { position: static; width: auto; margin-top: 16px; }
  .contact-card { padding: 24px; }
  .floating-whatsapp { right: 16px; bottom: 16px; padding: 0 16px; }
}

@media (max-width: 560px) {
  .hero { min-height: auto; }
  .hero h1 { font-size: 2.45rem; }
  .hero__lead { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .partner-list { justify-content: center; gap: 16px 24px; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 58px; justify-content: center; padding: 0; }
}


/* =========================================================
   TEMA ESCURO CORPORATIVO
   Preto como base, branco para contraste e azul apenas
   como detalhe discreto da identidade tecnolÃ³gica.
   ========================================================= */
:root {
  --ink: #f4f4f4;
  --ink-soft: #d4d4d4;
  --slate: #a7a7a7;
  --surface: #101010;
  --surface-2: #161616;
  --surface-3: #1d1d1d;
  --white: #ffffff;
  --accent: #477f9f;
  --accent-soft: #18252d;
  --blue: #477f9f;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.20);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.24);
}

body {
  color: #f2f2f2;
  background: #090909;
}

.skip-link {
  background: #ffffff;
  color: #111111;
}

.contact-bar { background: #050505; }

.navbar.is-scrolled {
  color: #f5f5f5;
  background: rgba(8, 8, 8, .96);
  border-bottom-color: rgba(255,255,255,.10);
  box-shadow: 0 12px 35px rgba(0,0,0,.38);
}
.navbar.is-scrolled .brand__mark {
  border-color: rgba(255,255,255,.14);
  background: #151515;
}
.navbar.is-scrolled .brand__text small { color: #bdbdbd; }
.navbar.is-scrolled .nav-cta { border-color: rgba(255,255,255,.22); }
.navbar.is-scrolled .menu-toggle {
  border-color: rgba(255,255,255,.14);
  background: #151515;
}

.hero { background: #060606; }
.hero__backdrop {
  background-image:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.90) 38%, rgba(5,5,5,.70) 67%, rgba(5,5,5,.78) 100%),
    url("assets/images/hero-debase-light.jpg");
  filter: saturate(.64) contrast(1.08);
}
.hero h1 em { color: #d9d9d9; }
.hero__panel {
  background: rgba(10,10,10,.78);
  border-color: rgba(255,255,255,.14);
}
.metric {
  color: #f3f3f3;
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
}
.metric strong { color: #ffffff; }
.metric span { color: #bdbdbd; }
.hero__bottom { background: rgba(0,0,0,.72); }
.button--primary {
  color: #111111;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
}
.button--primary:hover {
  color: #ffffff;
  background: #477f9f;
}

.section-heading h2,
.about-copy h2,
.clients-head h2,
.partnerships-copy h2,
.contact-copy h2 { color: #f4f4f4; }
.section-heading > p,
.clients-head > p { color: #aaaaaa; }
.eyebrow--dark { color: #7fa3b7; }

.section--services {
  background: #0b0b0b;
  border-color: rgba(255,255,255,.08);
}
.service-card {
  color: #f3f3f3;
  background: #171717;
  border-color: rgba(255,255,255,.09);
  box-shadow: var(--shadow-soft);
}
.service-card::before { background: #ffffff; opacity: .10; }
.service-card:hover {
  border-color: rgba(255,255,255,.22);
  background: #1b1b1b;
}
.service-card--featured {
  color: #111111;
  background: #f1f1f1;
  border-color: #f1f1f1;
}
.service-card--featured::before { background: #111111; opacity: .26; }
.service-card__icon {
  color: #f5f5f5;
  background: #242424;
}
.service-card--featured .service-card__icon {
  color: #ffffff;
  background: #111111;
}
.service-card > span {
  color: #bcbcbc;
  background: #232323;
}
.service-card--featured > span {
  color: #4f4f4f;
  background: #dddddd;
}
.service-card p { color: #aaaaaa; }
.service-card--featured p { color: #535353; }
.service-card a { color: #f4f4f4; }
.service-card--featured a { color: #111111; }

.section--about {
  color: #ededed;
  background: #111111;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.about-visual img {
  border-color: rgba(255,255,255,.10);
  filter: saturate(.62) contrast(1.06) brightness(.82);
}
.about-visual::after { border-color: rgba(255,255,255,.16); }
.about-visual__badge {
  color: #f5f5f5;
  background: #080808;
  border-color: rgba(255,255,255,.11);
}
.about-visual__badge strong { color: #ffffff; }
.about-visual__badge span { color: #a6a6a6; }
.about-copy > p:not(.eyebrow) { color: #b0b0b0; }
.difference-box {
  background: #191919;
  border-color: rgba(255,255,255,.10);
}
.difference-box__icon {
  color: #111111;
  background: #ffffff;
}
.difference-box p { color: #aaaaaa; }

.section--clients {
  background: #080808;
  border-color: rgba(255,255,255,.07);
}
.client-card {
  color: #f4f4f4;
  background: #161616;
  border-color: rgba(255,255,255,.10);
}
.client-card:hover { background: #1b1b1b; }
.client-card__media img {
  filter: saturate(.70) contrast(1.05) brightness(.82);
}
.client-card__media::after {
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.80) 100%);
}
.client-card__badge {
  color: #ffffff;
  background: rgba(8,8,8,.92);
  border: 1px solid rgba(255,255,255,.13);
}
.client-card__badge svg { color: #8cabbc; }
.client-card h3 { color: #f4f4f4; }
.client-card p { color: #a8a8a8; }

.section--partnerships {
  color: #ededed;
  background: #121212;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.partnerships-image img {
  border-color: rgba(255,255,255,.10);
  filter: saturate(.55) brightness(.70) contrast(1.08);
}
.partnerships-image::after {
  background: linear-gradient(to top right, rgba(0,0,0,.34), transparent 60%);
}
.partnerships-copy > p:not(.eyebrow) { color: #adadad; }
.check-list li { color: #d6d6d6; }
.check-list svg { color: #ffffff; }
.text-link { color: #8cabbc; }

.section--contact {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgb(2, 2, 2) 0%,
      rgba(3, 3, 3, 0.682) 42%,
      rgba(3, 3, 3, 0.237) 100%
    ),
    var(--contact-photo, url("assets/images/imagem-contato.webp"));
  background-position: center, center right;
  background-size: cover, cover;
  background-repeat: no-repeat;
  opacity: 1;
}

.contact-grid {
  position: relative;
  z-index: 2;
}
.contact-card {
  color: #f2f2f2;
  background: #151515;
  border-color: rgba(255,255,255,.11);
}
.contact-card label { color: #dddddd; }
.contact-card input,
.contact-card select,
.contact-card textarea {
  color: #eeeeee;
  background: #0d0d0d;
  border-color: rgba(255,255,255,.13);
}
.contact-card input::placeholder,
.contact-card textarea::placeholder { color: #777777; }
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: #718f9f;
  box-shadow: 0 0 0 4px rgba(71,127,159,.16);
}
.contact-card .consent { color: #9d9d9d; }
.form-status { color: #8cabbc; }
.privacy-note { border-color: rgba(255,255,255,.10); }
.privacy-note summary { color: #d1d1d1; }
.privacy-note p { color: #929292; }
.contact-options a > span { background: rgba(255,255,255,.05); }

.site-footer { background: #030303; }
.footer-bottom { border-color: rgba(255,255,255,.08); }

@media (max-width: 780px) {
  .nav-links {
    color: #f4f4f4;
    background: rgba(8,8,8,.99);
    border-top-color: rgba(255,255,255,.08);
    box-shadow: 0 12px 30px rgba(0,0,0,.4);
  }
  .nav-cta { border-color: rgba(255,255,255,.16); }
}