:root {
  --color-bg: #f8f8fa;
  --color-bg-alt: #fafafa;
  --color-bg-soft: #f4f4f5;
  --color-surface: #ffffff;
  --color-surface-muted: rgba(255, 255, 255, 0.04);
  --color-dark: #0a0a0f;
  --color-dark-soft: #111118;
  --color-dark-surface: #18181b;
  --color-text: #111118;
  --color-text-soft: #52525b;
  --color-text-muted: #71717a;
  --color-text-inverse: #f4f4f5;
  --color-text-inverse-soft: #a1a1aa;
  --color-border: #e4e4e7;
  --color-border-strong: #d4d4d8;
  --color-border-dark: rgba(255, 255, 255, 0.12);

  /* Verde da identidade visual */
  --color-accent: #22c55e;
  --color-accent-hover: #16a34a;
  --color-focus: #86efac;

  --shadow-sm: 0 8px 24px rgba(17, 17, 24, 0.06);
  --shadow-md: 0 18px 50px rgba(17, 17, 24, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container-width: 1280px;
  --container-gutter: 32px;
  --section-space: 96px;
  --section-space-lg: 126px;
  --header-height: 76px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.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;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

::selection {
  color: var(--color-surface);
  background: rgba(34, 197, 94, 0.9);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - (var(--container-gutter) * 2), var(--container-width));
  margin-inline: auto;
}

.section,
.trust-bar {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section {
  padding: var(--section-space) 0;
}

.section--light {
  background: var(--color-surface);
}

.section--surface {
  background: var(--color-bg-alt);
}

.section--dark,
.section--cta,
.section--hero,
.site-footer {
  color: var(--color-text-inverse);
  background: var(--color-dark);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(244, 244, 245, 0.7);
}

.section-heading {
  max-width: 720px;
}

.section-heading--narrow {
  max-width: 640px;
}

#faq .section-heading {
  max-width: none;
  width: fit-content;
}

#faq .section-heading--centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading--centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading--centered h2,
.section-heading--centered p:last-child {
  margin-inline: auto;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--color-text-inverse);
}

.section-heading--light p:last-child {
  color: var(--color-text-inverse-soft);
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 48px;
  align-items: end;
}

.section-heading h2,
.cta-panel h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.section-heading p:last-child,
.cta-panel__lead {
  margin: 16px 0 0;
  max-width: 38rem;
  color: var(--color-text-soft);
  font-size: 1.125rem;
  line-height: 1.75;
}

.section-cta {
  margin-top: 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 15, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 32px rgba(10, 10, 15, 0.18);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--color-text-inverse);
  line-height: 0;
}

.brand__mark {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand__text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.site-header .brand__logo {
  width: clamp(300px, 20vw, 248px);
}

.site-footer__brand .brand {
  align-items: flex-start;
}

.site-footer__brand .brand__logo {
  width: clamp(210px, 20vw, 248px);
}

.site-header__panel {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.language-switcher a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(244, 244, 245, 0.84);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.language-switcher a:hover,
.site-nav a:focus-visible,
.language-switcher a:focus-visible {
  color: var(--color-text-inverse);
}

.site-nav a[aria-current="page"],
.site-nav a.is-current,
.language-switcher a[aria-current="page"] {
  color: var(--color-text-inverse);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 244, 245, 0.5);
}

.language-switcher .is-active {
  color: var(--color-text-inverse);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-inverse);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.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);
}

.hero {
  position: relative;
  overflow: clip;
  padding: calc(var(--header-height) + 38px) 0 calc(var(--section-space) - 10px);
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 35%),
    linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 5.9fr) minmax(460px, 6.1fr);
  gap: clamp(26px, 3.2vw, 48px);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 610px;
  padding-bottom: 0;
}

.hero h1 {
  margin: 0;
  max-width: 11.8ch;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.hero-title {
  display: grid;
  gap: 0.16em;
  min-height: 3.05em;
}

.hero-title__static,
.hero-title__dynamic-wrap {
  display: block;
}

.hero-title__dynamic-wrap {
  position: relative;
  min-height: 1.1em;
  padding-right: 0.18em;
}

.hero-title__dynamic {
  display: inline;
}

.hero-title__cursor {
  display: inline-block;
  width: 0.06em;
  height: 0.84em;
  margin-left: 0.12em;
  border-radius: 999px;
  background: rgba(134, 239, 172, 0.82);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
  vertical-align: -0.06em;
  animation: hero-caret-blink 1.1s steps(1) infinite;
}

.hero__lead {
  margin: 22px 0 0;
  max-width: 34rem;
  color: var(--color-text-inverse-soft);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero__visual {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 0 16px 12px;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 2% -8% 8% 2%;
  clip-path: polygon(12% 0, 88% 0, 100% 11%, 100% 84%, 92% 100%, 10% 100%, 0 88%, 0 14%);
  background:
    radial-gradient(circle at 68% 30%, rgba(34, 197, 94, 0.2), transparent 24%),
    radial-gradient(circle at 58% 78%, rgba(34, 197, 94, 0.09), transparent 34%),
    radial-gradient(circle at 26% 72%, rgba(8, 12, 14, 0.62), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 40%);
  opacity: 0.96;
  filter: blur(30px);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: auto -6% -2% 12%;
  height: 44%;
  background:
    radial-gradient(circle at 48% 26%, rgba(34, 197, 94, 0.13), transparent 26%),
    radial-gradient(circle at 52% 84%, rgba(5, 8, 9, 0.42), transparent 56%),
    linear-gradient(180deg, transparent, rgba(10, 10, 15, 0.42));
  filter: blur(24px);
  pointer-events: none;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-width: 760px;
  aspect-ratio: 1024 / 768;
  margin: 0 -22px 0 0;
  background:
    radial-gradient(circle at 70% 24%, rgba(34, 197, 94, 0.15), transparent 26%),
    radial-gradient(circle at 56% 100%, rgba(34, 197, 94, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  clip-path: polygon(8% 0, 90% 0, 100% 10%, 100% 88%, 93% 100%, 13% 100%, 0 90%, 0 12%);
  box-shadow:
    0 44px 96px rgba(3, 6, 7, 0.34),
    0 20px 42px rgba(3, 6, 7, 0.24),
    0 0 0 1px rgba(134, 239, 172, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
  transform: translateY(-20px);
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -6% -10% auto 8%;
  height: 84%;
  background:
    radial-gradient(circle at 50% 38%, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 34%, transparent 72%);
  filter: blur(38px);
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 78% 24%, rgba(34, 197, 94, 0.08), transparent 24%),
    radial-gradient(circle at 48% 104%, rgba(34, 197, 94, 0.07), transparent 28%),
    linear-gradient(90deg, rgba(7, 10, 11, 0.3), transparent 18%, transparent 76%, rgba(7, 10, 11, 0.18)),
    linear-gradient(180deg, rgba(7, 10, 11, 0.01) 0%, rgba(7, 10, 11, 0.13) 52%, rgba(7, 10, 11, 0.32) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-media__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 42%;
  filter: saturate(1.06) contrast(1.08) brightness(0.94);
  transform: scale(1.055);
}

@keyframes hero-caret-blink {
  0%,
  48% {
    opacity: 1;
  }

  52%,
  100% {
    opacity: 0;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--color-surface);
  background: var(--color-accent);
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-accent-hover);
}

.button--secondary,
.button--secondary-light,
.button--ghost {
  background: transparent;
}

.button--secondary {
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--color-text);
  background: rgba(17, 17, 24, 0.02);
}

.button--ghost {
  color: var(--color-text);
  border-color: rgba(17, 17, 24, 0.1);
  background: rgba(17, 17, 24, 0.02);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(17, 17, 24, 0.2);
  background: rgba(17, 17, 24, 0.04);
}

.button--secondary-light {
  color: var(--color-text-inverse);
  border-color: rgba(255, 255, 255, 0.22);
}

.button--secondary-light:hover,
.button--secondary-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.button--header {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 8px;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link::after {
  content: "\2192";
  font-size: 0.95rem;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-accent);
  gap: 12px;
}

.trust-bar {
  padding: 44px 0 52px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--color-surface) 20%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar__label {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-bar__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.metric-card {
  padding: 28px 16px 24px;
  border-top: 1px solid var(--color-border);
}

.metric-card strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.services-grid,
.cases-grid,
.institutional-grid {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

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

.services-grid > *:nth-child(-n + 3) {
  grid-column: span 2;
}

.services-grid > *:nth-child(n + 4) {
  grid-column: span 3;
}

.service-card,
.case-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card h3,
.case-card h3,
.process-step h3,
.scenario-item h3,
.differential-item h3,
.institutional-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.service-card p,
.case-card p,
.process-step p,
.scenario-item p,
.differential-item p,
.institutional-card p,
.faq-panel p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.service-card:hover,
.case-card:hover {
  border-color: rgba(34, 197, 94, 0.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}

.process-step {
  position: relative;
  padding-top: 0;
  z-index: 1;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 36px;
  margin-bottom: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.16);
  background: var(--color-surface);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.process-step p {
  margin-top: 14px;
  font-size: 0.95rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: start;
}

.split-layout__intro {
  max-width: 420px;
}

.split-layout__intro p:last-of-type {
  margin: 18px 0 0;
  color: var(--color-text-soft);
  font-size: 1.125rem;
  line-height: 1.75;
}

.split-layout__intro .button {
  margin-top: 32px;
}

.split-layout--sticky .split-layout__intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.differentials-list {
  display: grid;
  gap: 40px;
}

.differential-item {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.differential-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.differential-item p {
  margin-top: 14px;
  max-width: 42rem;
}

.scenarios-list {
  margin-top: 56px;
  border-top: 1px solid var(--color-border);
}

.scenario-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.scenario-item p {
  margin-top: 12px;
  max-width: 46rem;
}

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

.case-card {
  min-height: 100%;
  padding: 40px;
}

.case-card__context {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-card blockquote {
  margin: 4px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--color-accent);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 34%),
    linear-gradient(180deg, var(--color-dark-soft) 0%, var(--color-dark) 100%);
}

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

.institutional-card {
  padding-top: 24px;
  border-top: 1px solid var(--color-border-dark);
}

.institutional-card p {
  margin-top: 14px;
  color: var(--color-text-inverse-soft);
}

.faq-container {
  max-width: 900px;
}

.faq-container .section-heading {
  margin-inline: auto;
  text-align: center;
}

.faq-title {
  max-width: none;
  white-space: nowrap;
}

.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.faq-trigger span:first-child {
  font-size: 1.125rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
  color: var(--color-accent-hover);
}

.faq-trigger[aria-expanded="true"] {
  color: var(--color-accent-hover);
}

.faq-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--color-text-muted);
  transition: color 180ms ease;
}

.faq-trigger:hover .faq-icon,
.faq-trigger:focus-visible .faq-icon,
.faq-trigger[aria-expanded="true"] .faq-icon {
  color: var(--color-accent-hover);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.faq-panel {
  padding: 0 0 28px;
}

.faq-footer-link {
  margin: 40px 0 0;
  text-align: center;
}

.faq-footer-link .text-link {
  color: var(--color-text-soft);
}

.faq-footer-link .text-link:hover,
.faq-footer-link .text-link:focus-visible {
  color: var(--color-accent);
}

.section--cta {
  padding: var(--section-space-lg) 0;
  background:
    radial-gradient(circle at top center, rgba(34, 197, 94, 0.14), transparent 34%),
    var(--color-dark);
}

.cta-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-panel h2 {
  max-width: none;
  color: var(--color-text-inverse);
}

.cta-panel__lead {
  margin-inline: auto;
  color: var(--color-text-inverse-soft);
}

.cta-panel .button {
  margin-top: 40px;
}

.cta-panel__note {
  margin: 16px 0 0;
  color: rgba(244, 244, 245, 0.56);
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-footer {
  padding: 68px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.brand--footer {
  align-items: flex-start;
}

.site-footer__brand p {
  margin: 18px 0 0;
  max-width: 21rem;
  color: var(--color-text-inverse-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--color-text-inverse);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: rgba(244, 244, 245, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.site-footer__meta a:hover,
.site-footer__meta a:focus-visible {
  color: var(--color-text-inverse);
}

.footer-column--contact {
  font-style: normal;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p,
.site-footer__meta a {
  margin: 0;
  color: rgba(244, 244, 245, 0.56);
  font-size: 0.85rem;
  line-height: 1.6;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.language-switcher--footer {
  margin-right: 6px;
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: calc(var(--section-space) + 36px) 0 calc(var(--section-space) - 16px);
}

.page-hero--dark {
  color: var(--color-text-inverse);
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 34%),
    linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
}

.page-hero--light {
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 5fr);
  gap: 48px;
  align-items: end;
}

.page-hero__grid--single {
  grid-template-columns: 1fr;
}

.page-hero__grid--single > .page-hero__content {
  max-width: 760px;
}

.page-hero__content {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.page-hero__lead {
  margin: 24px 0 0;
  max-width: 38rem;
  font-size: 1.15rem;
  line-height: 1.75;
}

.page-hero--dark .page-hero__lead {
  color: var(--color-text-inverse-soft);
}

.page-hero--light .page-hero__lead {
  color: var(--color-text-soft);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.page-hero__visual {
  position: relative;
  min-height: 320px;
}

.page-hero__visual::before,
.page-hero__visual::after {
  content: "";
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 24, 0.08);
}

.page-hero--dark .page-hero__visual::before,
.page-hero--dark .page-hero__visual::after {
  border-color: rgba(255, 255, 255, 0.1);
}

.page-hero__visual::before {
  inset: 14% 8% 18% 18%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.page-hero__visual::after {
  inset: 32% 0 0 8%;
}

.page-hero__gridlines {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(17, 17, 24, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 24, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, black 14%, black 84%, transparent 100%);
}

.page-hero--dark .page-hero__gridlines {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

.page-hero__orb {
  position: absolute;
  inset: 16% 10% 8% 24%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.03) 42%, transparent 72%);
  filter: blur(16px);
}

.editorial-intro {
  max-width: 820px;
}

.editorial-intro h2 {
  margin: 16px 0 0;
  max-width: 16ch;
  font-size: clamp(2.15rem, 3.7vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.editorial-intro--compact h2 {
  max-width: 18ch;
}

.editorial-intro p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 1.125rem;
  line-height: 1.85;
}

.editorial-intro p + p {
  margin-top: 18px;
}

.content-grid {
  display: grid;
  gap: 24px;
}

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

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

.content-card,
.context-card,
.post-card,
.job-card,
.contact-card,
.empty-state,
.comparison-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.content-card,
.context-card,
.post-card,
.job-card,
.contact-card {
  padding: 32px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.content-card h3,
.context-card h3,
.post-card h3,
.job-card h3,
.contact-card h3,
.comparison-card h3,
.list-block h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.content-card p,
.context-card p,
.post-card p,
.job-card p,
.contact-card p,
.comparison-card p,
.list-block p {
  margin: 14px 0 0;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.content-card ul,
.context-card ul,
.list-block ul,
.comparison-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--color-text-soft);
  line-height: 1.9;
}

.comparison-list {
  display: grid;
  gap: 18px;
  margin-top: 56px;
}

.comparison-item {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.comparison-item:first-child {
  border-top: 1px solid var(--color-border);
}

.comparison-item__label {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.comparison-item__content {
  color: var(--color-text-soft);
  line-height: 1.8;
}

.list-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.list-block:first-child {
  border-top: 1px solid var(--color-border);
}

.numbered-flow {
  counter-reset: flow;
  display: grid;
  gap: 20px;
}

.numbered-flow article {
  position: relative;
  padding: 28px 28px 28px 84px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.numbered-flow article::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  top: 28px;
  left: 28px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.pill-list,
.meta-list,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li,
.meta-list li,
.quick-links li a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-soft);
  background: rgba(17, 17, 24, 0.02);
  font-size: 0.92rem;
  line-height: 1;
}

.quick-links li a {
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.quick-links li a:hover,
.quick-links li a:focus-visible {
  color: var(--color-text);
  border-color: rgba(17, 17, 24, 0.18);
  background: rgba(17, 17, 24, 0.04);
}

.page-stack {
  display: grid;
  gap: 56px;
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  gap: 32px;
  align-items: start;
}

.contact-layout--focused {
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 28px;
}

.contact-form {
  padding: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.contact-form--wide {
  padding: 40px;
}

.contact-form__lead {
  margin: 0 0 28px;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-layout--focused .contact-form__lead {
  max-width: 44rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field label {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  color: var(--color-text);
}

.form-field input:not(:placeholder-shown),
.form-field textarea:not(:placeholder-shown),
.form-field--filled input,
.form-field--filled textarea {
  border-color: var(--color-border-strong);
  background: #fcfcfd;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-muted);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: rgba(34, 197, 94, 0.5);
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.form-field--error label,
.form-field__error {
  color: #b91c1c;
}

.form-field--error input,
.form-field--error textarea {
  border-color: rgba(185, 28, 28, 0.45);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.08);
}

.form-field__error {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.form-field__hint {
  margin: -2px 0 0;
  min-height: 1.35rem;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.form-field__hint--placeholder {
  visibility: hidden;
}

.form-status {
  margin: 24px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.form-status--neutral {
  color: var(--color-text-soft);
  background: var(--color-bg-soft);
}

.form-status--success {
  color: #166534;
  border-color: rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.08);
}

.form-status--error {
  color: #991b1b;
  border-color: rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.06);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.form-note {
  margin: 18px 0 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.form-note strong {
  color: var(--color-text);
}

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

.contact-card__lead {
  margin: 12px 0 0;
  color: var(--color-text-soft);
  line-height: 1.75;
}

.contact-channel-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-channel-list li {
  display: grid;
  gap: 10px;
}

.contact-channel-list__label {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channel-list__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: rgba(17, 17, 24, 0.02);
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.contact-channel-list__link:hover,
.contact-channel-list__link:focus-visible,
.button--whatsapp:hover,
.button--whatsapp:focus-visible,
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-1px);
}

.contact-channel-list__link--ghost:hover,
.contact-channel-list__link--ghost:focus-visible {
  border-color: rgba(17, 17, 24, 0.16);
  background: rgba(17, 17, 24, 0.04);
}

.contact-channel-list__link--whatsapp,
.button--whatsapp {
  border-color: rgba(37, 211, 102, 0.2);
  color: #065f46;
  background: rgba(37, 211, 102, 0.12);
}

.contact-channel-list__link--whatsapp:hover,
.contact-channel-list__link--whatsapp:focus-visible,
.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, 0.34);
  background: rgba(37, 211, 102, 0.18);
  color: #064e3b;
}

.button.is-loading {
  cursor: wait;
  pointer-events: none;
}

.button.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: button-spin 0.7s linear infinite;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  color: #25d366;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(37, 211, 102, 0.22) 0%, rgba(37, 211, 102, 0.1) 34%, rgba(255, 255, 255, 0) 70%);
  filter: blur(10px);
  opacity: 0.95;
  pointer-events: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow:
    0 8px 18px rgba(37, 211, 102, 0.14);
  color: #1fbe59;
  transform: translateY(-1px) scale(1.03);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: currentColor;
}

.whatsapp-float__icon svg {
  width: 250px;
  height: 250px;
  fill: currentColor;
}

.whatsapp-float__label {
  display: none;
}

.support-panel {
  display: grid;
  gap: 20px;
}

.support-panel__list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--color-text-soft);
}

.support-panel__list li + li {
  margin-top: 10px;
}

.support-panel .content-card,
.support-panel .contact-card {
  box-shadow: none;
}

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

.post-card__meta,
.job-card__meta {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-card__date,
.job-card__status {
  margin: 16px 0 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.empty-state {
  padding: 40px;
}

.empty-state p {
  margin: 14px 0 0;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.kicker-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kicker-line::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.cta-panel--wide {
  max-width: 720px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.partners-showcase__content {
  display: grid;
  gap: 32px;
}

.partners-showcase--carousel .container {
  display: grid;
  gap: 32px;
}

.partners-showcase__intro--stacked {
  max-width: 760px;
}

.partners-showcase__intro--stacked p:last-of-type {
  margin: 18px 0 0;
  color: var(--color-text-soft);
  font-size: 1.125rem;
  line-height: 1.75;
}

.partners-showcase--carousel .section-cta {
  margin-top: 0;
}

.partners-showcase__content .partners-panel {
  margin-top: 0;
}

.partners-grid--logos {
  gap: 14px;
}

.partners-carousel {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  margin: 0 -4px;
  padding: 4px 4px 14px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 24, 0.22) transparent;
}

.partners-carousel:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 6px;
}

.partners-grid--carousel {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, clamp(164px, 16vw, 186px));
  gap: 14px;
  align-items: stretch;
}

.partners-grid--carousel .partner-card--logo {
  scroll-snap-align: start;
}

.partner-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.partner-card:hover,
.partner-card:focus-within {
  border-color: rgba(34, 197, 94, 0.22);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.partner-card--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-width: 0;
  min-height: 0;
  border-color: rgba(17, 17, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 250, 251, 0.92)),
    var(--color-surface);
  box-shadow: 0 8px 18px rgba(17, 17, 24, 0.035);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.partner-card--logo:hover,
.partner-card--logo:focus-within {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 253, 253, 0.96)),
    var(--color-surface);
  box-shadow: 0 12px 22px rgba(17, 17, 24, 0.045);
  transform: translateY(-1px);
}

.partner-card__wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  color: rgba(17, 17, 24, 0.5);
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.partner-card__logo-box {
  box-sizing: border-box;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 110px;
  padding: 18px 22px;
  overflow: hidden;
}

.partner-card__logo-box--dark {
  background: var(--color-dark);
}

.partner-card__logo {
  display: block;
  flex: 0 1 auto;
  width: auto;
  height: auto;
  max-width: min(100%, 152px);
  max-height: 46px;
  object-fit: contain;
  object-position: center;
  margin: auto;
}

.partner-card__logo--aws {
  max-height: 36px;
  max-width: 106px;
}

.partner-card__logo--microsoft {
  max-height: 28px;
  max-width: 132px;
}

.partner-card__logo--google {
  max-height: 38px;
  max-width: 122px;
}

.partner-card__logo--oracle {
  max-height: 26px;
  max-width: 108px;
}

.partner-card__logo--redhat {
  max-height: 40px;
  max-width: 122px;
}

.partner-card__logo--sap {
  max-height: 38px;
  max-width: 74px;
}

.partner-card__logo--ibm {
  max-height: 350px;
  max-width: 106px;
}

.partner-card__logo--dell {
  max-height: 350px;
  max-width: 108px;
}

.partner-card__logo--lenovo {
  max-height: 28px;
  max-width: 108px;
}

.partner-card__logo--cisco {
  max-height: 32px;
  max-width: 106px;
}

.partners-grid--home .partner-card__logo-box {
  min-height: 102px;
  padding: 16px 20px;
}

.partners-grid--home .partner-card--logo {
  border-radius: 22px;
}

.partners-grid--institutional {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.partners-grid--institutional .partner-card__logo-box {
  min-height: 104px;
}

.partners-showcase .split-layout {
  grid-template-columns: minmax(280px, 4.25fr) minmax(0, 7.75fr);
  align-items: start;
  gap: 36px;
}

.partners-showcase__intro {
  max-width: 400px;
}

.partners-showcase__content {
  gap: 24px;
}

.partners-showcase__content .partners-panel {
  margin-top: 0;
}

@supports (-webkit-touch-callout: none) {
  .partners-grid--carousel {
    grid-auto-columns: minmax(164px, 186px);
  }

  .partner-card--logo,
  .partner-card__logo-box {
    min-height: 0;
  }

  .partner-card__logo-box {
    height: 110px;
  }

  .partners-grid--home .partner-card__logo-box {
    height: 102px;
  }

  .partners-grid--institutional .partner-card__logo-box {
    height: 104px;
  }
}

.partner-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.partner-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.partners-panel {
  margin-top: 40px;
  padding: 26px 28px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 250, 251, 0.9)),
    var(--color-surface);
  box-shadow: 0 10px 22px rgba(17, 17, 24, 0.03);
}

.partners-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.partners-panel p {
  margin: 18px 0 0;
  max-width: 56rem;
  color: var(--color-text-soft);
  font-size: 1.04rem;
  line-height: 1.8;
}

.prose-block {
  max-width: 860px;
}

.prose-block > * + * {
  margin-top: 18px;
}

.prose-block h2,
.prose-block h3,
.prose-block h4 {
  margin: 0;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.prose-block h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 600;
}

.prose-block h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 600;
}

.prose-block h4 {
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
}

.prose-block p,
.prose-block li {
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.prose-block ul,
.prose-block ol {
  margin: 0;
  padding-left: 20px;
}

.prose-block a {
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-color: rgba(34, 197, 94, 0.35);
  text-underline-offset: 3px;
}

.prose-block a:hover,
.prose-block a:focus-visible {
  text-decoration-color: var(--color-accent);
}

.prose-index {
  margin: 28px 0 36px;
  padding: 24px 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(17, 17, 24, 0.02);
}

.prose-index h2 {
  font-size: 1rem;
  line-height: 1.4;
}

.prose-index ul {
  margin-top: 16px;
}

.prose-index li + li {
  margin-top: 8px;
}

.status-panel--wide {
  max-width: 760px;
}

.last-updated {
  margin: 0 0 28px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.status-panel {
  max-width: 680px;
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.status-panel p {
  margin: 18px 0 0;
  color: var(--color-text-soft);
  font-size: 1.06rem;
  line-height: 1.8;
}

.status-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.page-hero--compact {
  padding-bottom: 40px;
}

.editorial-hero {
  padding-top: calc(var(--section-space) + 8px);
}

.editorial-hero .page-hero__content,
.editorial-intro--compact {
  max-width: 760px;
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.editorial-feature__meta,
.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.editorial-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-feature h3,
.editorial-card h3,
.editorial-list-item h3,
.related-card h3,
.article-body h2,
.article-body h3 {
  letter-spacing: -0.03em;
}

.editorial-feature h3 {
  margin: 18px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.editorial-feature p,
.editorial-card p,
.editorial-list-item p,
.related-card p,
.article-sidebar-card p {
  color: var(--color-text-soft);
  line-height: 1.8;
}

.editorial-feature__aside,
.editorial-stack {
  display: grid;
  gap: 24px;
}

.editorial-callout,
.article-callout {
  padding: 24px;
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03));
}

.editorial-callout p,
.article-callout p {
  margin: 0;
}

.editorial-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.editorial-card,
.editorial-list-item,
.related-card,
.article-sidebar-card {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.editorial-feature:hover,
.editorial-feature:focus-within,
.editorial-card:hover,
.editorial-card:focus-within,
.editorial-list-item:hover,
.editorial-list-item:focus-within,
.related-card:hover,
.related-card:focus-within {
  border-color: rgba(34, 197, 94, 0.18);
  box-shadow: var(--shadow-md);
}

.editorial-card h3,
.editorial-list-item h3,
.related-card h3 {
  margin: 14px 0 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  gap: 48px;
  align-items: start;
}

.article-column {
  min-width: 0;
}

.article-aside {
  display: grid;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.article-sidebar-card h2,
.article-sidebar-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.article-sidebar-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.article-body {
  max-width: 760px;
}

.article-body > * + * {
  margin-top: 18px;
}

.article-body h2 {
  margin-top: 48px;
  font-size: 2rem;
  line-height: 1.15;
}

.article-body h3 {
  margin-top: 28px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.article-body p,
.article-body li {
  color: var(--color-text-soft);
  font-size: 1.06rem;
  line-height: 1.9;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(17, 17, 24, 0.03);
  color: var(--color-text);
  font-size: 1.08rem;
  line-height: 1.8;
}

.article-body a {
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-color: rgba(34, 197, 94, 0.45);
  text-underline-offset: 3px;
}

.article-body a:hover,
.article-body a:focus-visible {
  text-decoration-color: var(--color-accent);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.article-body th,
.article-body td {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: rgba(17, 17, 24, 0.03);
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.editorial-note {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .content-grid--3,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .services-grid > *:nth-child(-n + 3),
  .services-grid > *:nth-child(n + 4) {
    grid-column: span 1;
  }

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

  .process-timeline::before {
    left: 0;
    right: 34%;
  }

  .editorial-feature,
  .article-shell,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

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

@media (max-width: 920px) {
  :root {
    --container-gutter: 20px;
    --section-space: 72px;
    --section-space-lg: 88px;
    --header-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header__panel {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px 20px 28px;
    background: rgba(10, 10, 15, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(10, 10, 15, 0.2);
    max-height: calc(100vh - var(--header-height));
    overscroll-behavior: contain;
    overflow-y: auto;
  }

  .site-header__panel.is-open {
    display: flex;
  }

  .site-nav__list,
  .site-header__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav__list {
    gap: 18px;
  }

  .site-header__actions {
    gap: 16px;
  }

  .site-header__actions .button {
    width: 100%;
    justify-content: center;
  }

  .site-header .brand__logo {
    width: clamp(154px, 38vw, 194px);
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__grid,
  .page-hero__grid,
  .split-layout,
  .section-heading--split,
  .content-grid--2,
  .content-grid--3,
  .editorial-grid,
  .context-grid,
  .contact-support-grid,
  .partners-grid,
  .contact-layout,
  .post-grid,
  .cases-grid,
  .institutional-grid,
  .site-footer__top,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: calc(var(--header-height) + 26px);
  }

  .page-hero {
    padding-top: calc(var(--section-space) + 20px);
  }

  .hero__visual {
    min-height: 450px;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    padding: 4px 0 0;
  }

  .hero-media {
    width: min(100%, 590px);
    clip-path: polygon(7% 0, 91% 0, 100% 10%, 100% 89%, 94% 100%, 12% 100%, 0 91%, 0 10%);
    margin: 0;
    transform: translateY(-12px);
  }

  .hero-media__image {
    object-position: 53% 42%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .page-hero__actions .button {
    width: 100%;
  }

  .trust-bar__metrics,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 56px;
    padding-left: 24px;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 8px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-step__number {
    margin-bottom: 18px;
    background: var(--color-bg-alt);
  }

  .split-layout--sticky .split-layout__intro {
    position: static;
  }

  .partners-showcase__content {
    gap: 24px;
  }

  .partners-grid--carousel {
    grid-template-columns: none;
    grid-auto-columns: minmax(180px, 240px);
  }

  .comparison-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .site-footer__bottom {
    justify-content: flex-start;
    gap: 16px;
  }

  .site-footer__meta {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .site-footer__top {
    gap: 32px;
  }

  .status-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .editorial-feature,
  .editorial-card,
  .editorial-list-item,
  .related-card,
  .article-sidebar-card,
  .partners-panel {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .site-footer__brand .brand__logo {
    width: min(220px, 100%);
  }

  .hero {
    padding-bottom: calc(var(--section-space) - 4px);
  }

  .hero h1 {
    max-width: none;
    font-size: 2.25rem;
  }

  .hero-title {
    min-height: 3.55em;
  }

  .page-hero h1 {
    max-width: none;
    font-size: 2.25rem;
  }

  .section-heading h2,
  .cta-panel h2 {
    max-width: none;
    font-size: 2rem;
  }

  .section-heading p:last-child,
  .cta-panel__lead,
  .hero__lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .editorial-intro h2 {
    max-width: none;
    font-size: 2rem;
  }

  .trust-bar {
    padding: 36px 0 44px;
  }

  .metric-card {
    padding-inline: 0;
  }

  .service-card,
  .case-card,
  .content-card,
  .context-card,
  .post-card,
  .job-card,
  .contact-card,
  .contact-form,
  .empty-state {
    padding: 28px 24px;
    min-height: auto;
  }

  .faq-trigger {
    padding: 24px 0;
  }

  .faq-trigger span:first-child {
    font-size: 1rem;
  }

  .faq-title {
    white-space: normal;
  }

  .partner-card {
    padding: 24px;
  }

  .partner-card--logo {
    padding: 0;
  }

  .partner-card__logo-box {
    min-height: 98px;
    padding: 16px 18px;
  }

  .partner-card__logo {
    max-width: min(100%, 136px);
    max-height: 34px;
  }

  .partner-card__logo--ibm {
    max-height: 400px;
    max-width: 106px;
  }

  .partner-card__logo--dell {
    max-height: 400px;
    max-width: 106px;
  }

  .hero__visual {
    min-height: 300px;
    margin-top: 18px;
    padding-top: 6px;
  }

  .hero-media {
    width: min(100%, 100%);
    max-width: 380px;
    clip-path: polygon(6% 0, 93% 0, 100% 9%, 100% 91%, 95% 100%, 10% 100%, 0 92%, 0 9%);
    margin: 0;
    transform: none;
  }

  .hero-media::before {
    inset: -12% -10% auto 8%;
    height: 68%;
    filter: blur(20px);
  }

  .hero-media__image {
    object-position: 53% 43%;
    transform: scale(1.035);
  }

  .partners-grid--carousel {
    grid-auto-columns: minmax(156px, 72vw);
    gap: 16px;
  }

  .cta-panel .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 64px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-title__cursor {
    display: none;
  }
}

/* WordPress theme foundation supplements */
body.admin-bar .site-header {
  top: 32px;
}

.content-shell {
  max-width: 920px;
}

.theme-panel {
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.entry-card {
  display: grid;
  gap: 12px;
}

.entry-card__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.entry-card__excerpt,
.entry-content {
  color: var(--color-text-soft);
  line-height: 1.8;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.theme-panel .editorial-note {
  margin: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-soft);
  background: var(--color-surface);
}

.page-numbers.current {
  color: var(--color-text);
  border-color: rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.08);
}

.theme-status {
  min-height: 58vh;
  display: grid;
  align-items: center;
}

.status-shell {
  max-width: 760px;
}

.theme-status .status-panel {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.theme-status .status-panel h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
}

.theme-status .status-panel__lead {
  margin: 18px 0 0;
  color: var(--color-text-inverse-soft);
  line-height: 1.75;
}

.theme-status .status-panel__actions {
  margin-top: 28px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  body.admin-bar .site-header {
    top: 0;
  }
}
