:root {
  color-scheme: light;
  --bg: #f5f8f6;
  --surface: #fff;
  --surface2: #e9f2ef;
  --ink: #0b2730;
  --muted: #536d74;
  --header: rgba(245, 248, 246, 0.9);
  --line: #d2e0dc;
  --cyan: #168f9b;
  --lime: #76a843;
  --bright: #a9e950;
  --deep: #061820;
  --shadow: 0 24px 70px rgba(10, 42, 52, 0.13);
  --container: min(1180px, calc(100% - 40px));
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #06141c;
  --surface: #0b222c;
  --surface2: #0d2b35;
  --ink: #edf5f3;
  --muted: #a8bdc1;
  --header: rgba(6, 20, 28, 0.9);
  --line: #24434b;
  --cyan: #3ed8e5;
  --lime: #94c94c;
  --bright: #b8f45d;
  --deep: #020b10;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  transition:
    color 0.2s,
    background 0.2s;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 10px 16px;
  color: #061820;
  background: var(--bright);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: absolute;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--header);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 6px 15px 6px 7px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(10, 42, 52, 0.12);
  font-weight: 850;
  letter-spacing: 0.14em;
}
.header-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 9px 11px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--surface2);
}
.nav-links .nav-cta {
  margin-left: 5px;
  color: #061820;
  background: var(--bright);
}
.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: #061820;
  background: #c8fa76;
}
.theme-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.theme-toggle .moon,
[data-theme="dark"] .theme-toggle .sun {
  display: none;
}
[data-theme="dark"] .theme-toggle .moon {
  display: block;
}
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bg), var(--surface2));
}
.hero::before,
.page-hero::before,
.dark::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(22, 143, 155, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 143, 155, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero::after,
.page-hero::after {
  position: absolute;
  top: -250px;
  right: -160px;
  width: 720px;
  height: 720px;
  content: "";
  background: radial-gradient(
    circle,
    rgba(53, 189, 201, 0.16),
    transparent 68%
  );
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
  min-height: 790px;
  padding: 150px 0 80px;
}
.hero-media {
  display: grid;
  gap: 15px;
}
.hero-logo,
.page-art {
  overflow: hidden;
  padding: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-logo img,
.page-art img {
  width: 100%;
  border-radius: 22px;
}
.hero-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.hero-shortcuts a {
  padding: 9px 7px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  transition:
    transform 0.18s,
    border-color 0.18s;
}
.hero-shortcuts a:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}
h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}
h1 {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(3.1rem, 5.8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}
h1 em {
  color: var(--lime);
  font-weight: inherit;
}
h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}
h3 {
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 600;
}
.hero-copy > p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: #061820;
  background: var(--bright);
  border: 1px solid var(--bright);
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.18s,
    background 0.18s;
}
.button:hover {
  background: #c8fa76;
  transform: translateY(-2px);
}
.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}
.button.secondary:hover {
  background: var(--surface);
}
.button.dark {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
}
.trust-strip {
  color: #d9e6e6;
  background: #092c36;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  min-height: 108px;
  align-items: center;
}
.trust-grid > * {
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-grid > :first-child {
  padding-left: 0;
}
.trust-grid > :last-child {
  border: 0;
}
.trust-label {
  color: #9cb3b8;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.trust-item {
  color: #fff;
  font-weight: 750;
}
.section {
  position: relative;
  padding: 104px 0;
}
.section.alt {
  background: var(--surface2);
}
.section.dark {
  overflow: hidden;
  color: #c5d4d7;
  background: var(--deep);
}
.section.dark > .container {
  position: relative;
  z-index: 1;
}
.section.dark h2,
.section.dark h3 {
  color: #fff;
}
.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: end;
  margin-bottom: 52px;
}
.section-head p {
  max-width: 620px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1.07rem;
}
.section.dark .section-head p {
  color: #a9bec3;
}
.service-grid,
.feature-grid,
.provider-grid,
.process-grid {
  display: grid;
  gap: 18px;
}
.service-grid {
  grid-template-columns: repeat(4, 1fr);
}
.feature-grid,
.provider-grid {
  grid-template-columns: repeat(3, 1fr);
}
.process-grid {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}
.service-card h3 {
  margin-top: auto;
  margin-bottom: 14px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.card-number,
.process-number {
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}
.card-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  color: var(--cyan);
  font-weight: 800;
}
.card-link::after {
  content: "→";
}
.feature-card {
  min-height: 240px;
}
.feature-card h3 {
  margin: 26px 0 12px;
}
.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #061820;
  background: var(--bright);
  border-radius: 14px;
  font-family: Consolas, monospace;
  font-weight: 850;
}
.provider-card {
  min-height: 250px;
}
.provider-name {
  display: block;
  margin-bottom: 25px;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 850;
}
.process-card {
  min-height: 245px;
  color: #c4d3d6;
  background: #0b2731;
  border-color: #23414a;
}
.process-card h3 {
  margin: 54px 0 14px;
  color: #fff;
}
.process-card p {
  color: #a9bec3;
}
.process-number {
  color: #3ed8e5;
}
.hero-logo {
  aspect-ratio: 1;
}
.hero-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.process-card .process-number {
  display: inline-grid;
  width: fit-content;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  place-items: center;
  color: #061820;
  background: #b8f45d;
  border-radius: 14px;
  font-size: 0.86rem;
}
.process-card h3 {
  margin-top: 30px;
}
.process-grid.contact-steps {
  gap: 96px;
}
.contact-steps .process-card {
  z-index: 1;
  min-height: 220px;
  padding: 26px;
  overflow: visible;
}
.contact-steps .process-card h3 {
  margin: 28px 0 12px;
  font-size: clamp(1.7rem, 2.1vw, 2.05rem);
}
.contact-steps .process-card p {
  font-size: 1.05rem;
  line-height: 1.55;
}
.contact-steps .process-number {
  font-size: 20px;
  line-height: 1;
}
.contact-steps .process-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -68px;
  z-index: 3;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #b8f45d;
  background-color: #123f4c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M7 16h17m-6-6 6 6-6 6' fill='none' stroke='%23b8f45d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  border: 1px solid #3e747a;
  border-radius: 50%;
  content: "";
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  text-shadow: 0 0 18px rgba(184, 244, 93, 0.5);
  transform: translateY(-50%);
}
.provider-logo {
  width: auto;
  height: 48px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 190;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}
.whatsapp-float img {
  width: 34px;
  height: 34px;
}
@media (max-width: 680px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 1050px) and (min-width: 681px) {
  .contact-steps .process-card:nth-child(2)::after {
    top: auto;
    right: auto;
    bottom: -68px;
    left: 50%;
    content: "";
    transform: translateX(-50%) rotate(135deg);
  }
}
@media (max-width: 680px) {
  .process-grid.contact-steps {
    gap: 72px;
  }
  .contact-steps .process-card:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -56px;
    left: 50%;
    content: "";
    transform: translateX(-50%) rotate(90deg);
  }
}
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.visual-frame {
  overflow: hidden;
  padding: 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 31px;
  box-shadow: var(--shadow);
}
.visual-frame img {
  width: 100%;
  border-radius: 23px;
}
.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  color: var(--lime);
  content: "✓";
  font-weight: 850;
}
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 52px 58px;
  color: #fff;
  background: #0b303b;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.cta-panel h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
}
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 68px;
  align-items: center;
  min-height: 680px;
  padding: 155px 0 70px;
}
.page-hero h1 {
  max-width: 870px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}
.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 84px;
}
.intro-grid .lead {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.36;
}
.timeline {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 0.7fr 1.3fr;
  gap: 34px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item span {
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-weight: 850;
}
.timeline-item h3,
.timeline-item p {
  margin: 0;
}
.timeline-item p {
  color: var(--muted);
}
.contact-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
  gap: 18px;
}
.form-field {
  display: grid;
  gap: 7px;
  width: 100%;
  min-width: 0;
}
.form-field.full {
  grid-column: 1;
}
.form-field label {
  font-size: 0.82rem;
  font-weight: 800;
}
.form-hint {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
}
.form-field input,
.form-field select {
  height: 54px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 189, 201, 0.16);
}
.form-field textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form .button {
  width: 100%;
  min-height: 54px;
  justify-content: center;
}
.form-status {
  min-height: 24px;
  margin: 5px 0 0;
  color: var(--cyan);
  font-weight: 750;
  text-align: center;
}
.contact-detail {
  margin: 30px 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.contact-detail strong {
  display: block;
  margin-bottom: 5px;
}
.site-footer {
  padding: 66px 0 28px;
  color: #a9bec3;
  background: #020b10;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 68px;
  padding-bottom: 50px;
}
.footer-brand {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}
.footer-grid p {
  max-width: 400px;
}
.footer-title {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a:hover {
  color: #b8f45d;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  border-color: #b8f45d;
  transform: translateY(-3px);
}
.social-links img {
  width: 25px;
  height: 25px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.7s ease forwards;
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }
  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-top: 145px;
  }
  .hero-logo,
  .page-art {
    width: min(650px, 100%);
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .manifesto,
  .section-head,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
@media (max-width: 1050px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }
  .nav-wrap {
    min-height: 78px;
  }
  .header-logo {
    width: 50px;
    height: 50px;
  }
  .brand span {
    display: none;
  }
  h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .section {
    padding: 72px 0;
  }
  .hero-grid,
  .page-hero-grid {
    padding: 125px 0 64px;
  }
  .hero-shortcuts {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid > * {
    padding: 18px 12px;
  }
  .trust-grid > :first-child {
    grid-column: 1/-1;
    padding-left: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .service-grid,
  .feature-grid,
  .provider-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 275px;
  }
  .cta-panel {
    grid-template-columns: 1fr;
    padding: 36px 26px;
  }
  .timeline-item {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }
  .timeline-item p {
    grid-column: 2;
  }
  .contact-card {
    padding: 24px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-field.full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* Editorial product-story layout inspired by the supplied reference. */
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Arial,
    sans-serif;
  letter-spacing: -0.01em;
}
.hero::before,
.page-hero::before {
  opacity: 0.38;
}
.hero-grid {
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 880px;
  padding-top: 180px;
}
h1,
h2,
h3 {
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Arial,
    sans-serif;
}
h1 {
  font-size: clamp(3.6rem, 6.5vw, 6.8rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.07em;
}
h1 em {
  font-style: normal;
}
h2 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 740;
  line-height: 1;
  letter-spacing: -0.06em;
}
h3 {
  font-weight: 720;
  letter-spacing: -0.025em;
}
.hero-copy > p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.5;
}
.hero-logo,
.page-art,
.visual-frame {
  padding: 0;
  border: 0;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.hero-logo img,
.page-art img,
.visual-frame img {
  border-radius: 38px;
}
.hero-shortcuts a {
  padding: 11px 8px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: 0 5px 18px rgba(10, 42, 52, 0.08);
}
.section {
  padding: 132px 0;
}
.section-head {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 64px;
}
.section-head h2 {
  max-width: 930px;
}
.section-head p {
  max-width: 760px;
  font-size: 1.15rem;
}
.service-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  padding: 38px;
  border: 0;
  border-radius: 34px;
  box-shadow: 0 2px 0 var(--line);
}
.service-card {
  min-height: 410px;
}
.service-card h3 {
  max-width: 390px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}
.feature-grid,
.provider-grid,
.process-grid {
  gap: 24px;
}
.feature-card,
.provider-card,
.process-card {
  min-height: 285px;
}
.manifesto {
  gap: 110px;
}
.page-hero-grid {
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 820px;
  padding-top: 175px;
}
.page-hero h1 {
  font-size: clamp(3.5rem, 6vw, 6.3rem);
}
.cta-panel {
  padding: 70px;
  border-radius: 40px;
}

@media (max-width: 1050px) {
  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 150px;
  }
  .manifesto {
    gap: 48px;
  }
  .section {
    padding: 100px 0;
  }
}
@media (max-width: 680px) {
  h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }
  h2 {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
  }
  .hero-grid,
  .page-hero-grid {
    padding-top: 130px;
  }
  .section {
    padding: 82px 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 330px;
  }
  .card {
    padding: 30px;
    border-radius: 28px;
  }
  .cta-panel {
    padding: 40px 28px;
    border-radius: 30px;
  }
}

.theme-toggle:hover {
  transform: scale(1.06);
}
.hero-logo,
.page-art,
.visual-frame {
  position: relative;
  isolation: isolate;
}
.hero-logo::after,
.page-art::after,
.visual-frame::after {
  position: absolute;
  inset: -70% -30%;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    110deg,
    transparent 38%,
    rgba(255, 255, 255, 0.2) 49%,
    transparent 60%
  );
  transform: translateX(-70%) rotate(8deg);
  animation: panel-shine 9s ease-in-out infinite;
}
.hero-logo img {
  animation: image-float 7s ease-in-out infinite;
}
.page-art img {
  animation: image-float 8s ease-in-out infinite reverse;
}
.visual-frame img {
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.visual-frame:hover img {
  transform: scale(1.025);
}
.button,
.hero-shortcuts a,
.nav-links a {
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  box-shadow: 0 10px 28px rgba(118, 168, 67, 0.2);
}
@keyframes image-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.008);
  }
}
@keyframes panel-shine {
  0%,
  62% {
    transform: translateX(-75%) rotate(8deg);
  }
  82%,
  100% {
    transform: translateX(75%) rotate(8deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo img,
  .page-art img,
  .hero-logo::after,
  .page-art::after,
  .visual-frame::after {
    animation: none;
  }
}

.pointer-effects body::before {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    260px circle at var(--cursor-x, -500px) var(--cursor-y, -500px),
    rgba(62, 216, 229, 0.13),
    transparent 72%
  );
}
.mouse-trail {
  position: fixed;
  inset: 0;
  z-index: 210;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    260px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(62, 216, 229, 0.18),
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.28s;
}
.card:hover::before {
  opacity: 1;
}
.card > * {
  position: relative;
  z-index: 1;
}
.hero-logo,
.page-art {
  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.7s;
}
.hero-logo:hover,
.page-art:hover {
  transform: scale(1.025);
  box-shadow: 0 35px 90px rgba(10, 42, 52, 0.2);
}
.page-art.category-art {
  display: grid;
  aspect-ratio: 1;
  padding: clamp(20px, 4vw, 46px);
  place-items: center;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
}
.page-art.category-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.hero-logo.is-clickable {
  cursor: pointer;
}
.hero-logo.is-clickable:focus-visible {
  outline: 3px solid var(--bright);
  outline-offset: 6px;
}
@media (pointer: coarse) {
  .pointer-effects body::before,
  .mouse-trail {
    display: none;
  }
  .hero-logo:hover,
  .page-art:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pointer-effects body::before,
  .mouse-trail {
    display: none;
  }
  .hero-logo:hover,
  .page-art:hover {
    transform: none;
  }
}

.morph-symbol {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  display: grid;
  width: 64%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.12) rotate(-70deg);
  isolation: isolate;
  pointer-events: none;
}
.morph-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 10px 14px rgba(52, 120, 184, 0.2));
  animation: none !important;
}
.morph-symbol[data-category="cloud"] img {
  filter: drop-shadow(0 10px 16px rgba(52, 120, 184, 0.24))
    drop-shadow(0 3px 8px rgba(79, 150, 95, 0.14));
}
.morph-symbol[data-category="devops"] img {
  filter: drop-shadow(0 10px 16px rgba(209, 165, 54, 0.22))
    drop-shadow(0 3px 8px rgba(52, 120, 184, 0.14));
}
.morph-symbol[data-category="cyber-seguranca"] img {
  filter: drop-shadow(0 10px 16px rgba(183, 68, 68, 0.23))
    drop-shadow(0 3px 8px rgba(79, 150, 95, 0.13));
}
.morph-symbol[data-category="inteligencia-artificial"] img {
  filter: drop-shadow(0 10px 16px rgba(52, 120, 184, 0.23))
    drop-shadow(0 3px 8px rgba(183, 68, 68, 0.12));
}
.hero-logo.is-morphing {
  background: transparent;
  box-shadow: none;
}
.hero-logo.is-morphing::before {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  width: 80%;
  aspect-ratio: 1;
  content: "";
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 54px rgba(10, 42, 52, 0.16);
  transform: translate(-50%, -50%);
}
.hero-logo.is-morphing::after {
  display: none;
}
.hero-logo > img {
  position: relative;
  z-index: 1;
}
.hero-logo.is-morphing > img {
  animation: morph-logo-out 0.68s cubic-bezier(0.6, 0, 0.4, 1) forwards !important;
}
.hero-logo.is-morphing .morph-symbol {
  animation: morph-category-in 0.68s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}
.hero-logo.is-morphing .morph-symbol[data-category="cloud"] {
  animation: morph-cloud-in 0.82s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}
.hero-logo.is-morphing .morph-symbol[data-category="cyber-seguranca"] {
  animation: morph-security-in 0.78s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}
@keyframes morph-logo-out {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) rotate(0);
  }
  55% {
    opacity: 0.35;
    filter: blur(3px);
    transform: scale(0.72) rotate(16deg);
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.18) rotate(80deg);
  }
}
@keyframes morph-category-in {
  0%,
  30% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.12) rotate(-70deg);
    border-radius: 50%;
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0);
    border-radius: 34%;
  }
}
@keyframes morph-cloud-in {
  0%,
  24% {
    clip-path: inset(62% 8% 0);
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.72);
  }
  62% {
    clip-path: inset(34% 4% 0);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
  100% {
    clip-path: inset(0);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes morph-security-in {
  0%,
  22% {
    clip-path: circle(9% at 50% 54%);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
  66% {
    clip-path: circle(38% at 50% 54%);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
  100% {
    clip-path: circle(72% at 50% 50%);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.hero-logo.is-returning > img {
  animation: morph-logo-back 0.52s cubic-bezier(0.2, 0.8, 0.2, 1) forwards !important;
}
.hero-logo.is-returning .morph-symbol {
  animation: morph-category-out 0.52s cubic-bezier(0.4, 0, 0.4, 1) forwards !important;
}
.hero-logo.is-returning::before {
  animation: morph-panel-out 0.52s ease forwards;
}
@keyframes morph-logo-back {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.18) rotate(80deg);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes morph-category-out {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(-55deg);
  }
}
@keyframes morph-panel-out {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo.is-morphing > img {
    opacity: 0;
    animation: none !important;
  }
  .hero-logo.is-morphing .morph-symbol {
    opacity: 1;
    transform: translate(-50%, -50%);
    animation: none !important;
  }
}

[data-reveal] {
  opacity: 1;
  transform: none;
  animation: none;
}
.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}
.reveal-enabled .card[data-reveal].is-visible:hover {
  transform: translateY(-5px);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.mobile-categories {
  display: none;
}
.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(2, 11, 16, 0.96);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s,
    visibility 0.25s;
}
.page-preloader.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1051px) {
  .page-preloader {
    display: none;
  }
}
.preloader-content {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}
.preloader-mark {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--bright);
  border-radius: 50%;
  animation: preloader-spin 0.75s linear infinite;
}
.preloader-content strong {
  font-size: clamp(1.35rem, 5vw, 2rem);
  letter-spacing: -0.03em;
}
@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 680px) {
  .mobile-categories {
    display: flex;
    gap: 8px;
    width: 100%;
    padding: 0 14px 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .mobile-categories::-webkit-scrollbar {
    display: none;
  }
  .mobile-categories a {
    flex: 1 0 auto;
    padding: 7px 12px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 800;
    text-align: center;
  }
  .mobile-categories .mobile-contact {
    color: #061820;
    background: var(--bright);
    border-color: var(--bright);
  }
  .mobile-categories .mobile-contact:hover,
  .mobile-categories .mobile-contact[aria-current="page"] {
    background: #c8fa76;
    border-color: #c8fa76;
  }
  .hero-grid,
  .page-hero-grid {
    padding-top: 180px;
  }
  main {
    text-align: center;
  }
  .actions {
    justify-content: center;
  }
  .intro-grid .lead,
  .section-head p {
    margin-inline: auto;
  }
  .contact-form {
    text-align: left;
  }
  .check-list {
    text-align: left;
  }
  .timeline-item {
    text-align: left;
  }
  .eyebrow {
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-preloader {
    transition: none;
  }
  .preloader-mark {
    animation: none;
    border-color: var(--bright);
  }
}
