/* =========================================================================
   Diferente Engenharia — main.css
   Layout fiel ao Figma (node 15340:12). Mobile-first ajustado para o
   breakpoint de design de 1440px, com colapsos responsivos.
   ========================================================================= */

/* ------------------------------------------------------------------ Fonts */
/*
 * A fonte de display do layout é a "Akzentica 4F" (comercial). Quando os
 * arquivos estiverem disponíveis, descomente e coloque-os em assets/fonts/.
 * Enquanto isso, o fallback é Poppins.
 *
 * @font-face {
 *   font-family: "Akzentica 4F";
 *   src: url("../fonts/Akzentica4F-Light.woff2") format("woff2");
 *   font-weight: 300; font-display: swap;
 * }
 * @font-face {
 *   font-family: "Akzentica 4F";
 *   src: url("../fonts/Akzentica4F-Medium.woff2") format("woff2");
 *   font-weight: 500; font-display: swap;
 * }
 * @font-face {
 *   font-family: "Akzentica 4F";
 *   src: url("../fonts/Akzentica4F-SemiBold.woff2") format("woff2");
 *   font-weight: 600; font-display: swap;
 * }
 */

/* --------------------------------------------------------------- Tokens */
:root {
  --navy: #101f3a;
  --navy-card: #122951;
  --navy-border: #1f3b70;
  --navy-divider: #3d7797;
  --blue: #2c59af;
  --blue-2: #274c92;
  --blue-3: #1b3669;
  --violet: #5102b6;
  --violet-light: #884cfa;
  --violet-bg: #f1eaff;
  --ink: #181c28;
  --white: #fefefe;
  --gray-200: #eaecf0;
  --placeholder: #3b588e;
  --muted-purple: #ab9fc0;

  --bg-soft: #faf8ff;
  --bg-light: #f9fbff;
  --header-border: #e4e4e4;

  --font-body:
    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Akzentica 4F", "Poppins", sans-serif;

  --container: 1216px;
  --gutter: 48px;
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
p {
  margin: 0;
}

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

/* Acessibilidade — skip link */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--white);
  color: var(--navy);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  height: 52px;
  font-size: 16px;
  line-height: 20px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}
.btn--violet {
  background: var(--violet-light);
  border-color: var(--violet-light);
  color: #fff;
}
.btn--violet:hover {
  background: #7536e8;
  border-color: #7536e8;
}
.btn--outline-blue {
  background: transparent;
  border-color: var(--blue-2);
  color: var(--blue-2);
  font-size: 14px;
}
.btn--outline-blue:hover {
  background: var(--blue-2);
  color: #fff;
}
.btn--outline-muted {
  height: 44px;
  background: transparent;
  border-color: var(--muted-purple);
  color: var(--muted-purple);
  font-size: 14px;
}
.btn--outline-muted:hover {
  background: var(--muted-purple);
  color: #fff;
}

/* --------------------------------------------------------------- Sections */
.section {
  padding-block: 96px;
}
.section--dark {
  background: var(--navy);
}
.section--soft {
  background: var(--bg-soft);
}
.section--light {
  background: var(--bg-light);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 72px;
}
.section-head__titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 588px;
}
.section-head__rule {
  flex: 1 1 auto;
  max-width: 592px;
  height: 1px;
  background: rgba(81, 2, 182, 0.18);
}
.section--dark .section-head__rule {
  background: rgba(255, 255, 255, 0.16);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
}
.section-title--light {
  color: var(--white);
}
.section-title--violet {
  color: var(--violet);
}
.section-subtitle {
  font-size: 24px;
  color: var(--ink);
}
.section-subtitle--light {
  color: var(--white);
}

/* =================================================================== HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--header-border);
  box-shadow:
    2px 2px 3px rgba(89, 89, 89, 0.1),
    8px 7px 5.5px rgba(89, 89, 89, 0.09);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  width: min(var(--container), 100% - var(--gutter));
  margin-inline: auto;
}
.site-header__logo img {
  height: 46px;
  width: auto;
}
.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.site-nav__link,
.site-nav__list a {
  font-size: 16px;
  color: var(--navy);
  transition: color 0.2s ease;
}
.site-nav__link:hover,
.site-nav__list a:hover {
  color: var(--violet-light);
}
.site-nav__link.is-active,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a,
.site-nav__list .current-menu-ancestor > a,
.site-nav__list .current-page-ancestor > a {
  background: linear-gradient(180deg, var(--violet-light), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
/* No desktop, o wrapper é "transparente": nav e portal seguem como itens
   diretos do flex do header (layout idêntico ao original). */
.site-header__collapse {
  display: contents;
}
.site-header__toggle {
  display: none;
}

/* ===================================================================== HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 138px var(--gutter);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.05;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 864px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.hero__eyebrow {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 64px;
  line-height: 1.2;
  color: var(--navy);
  min-height: 1.2em;
}
.hero__rotate {
  display: inline-block;
  will-change: transform, opacity;
}
.hero__rotate.is-animating .hero__rotate-text::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.9em;
  margin-left: 6px;
  background: var(--navy);
  vertical-align: -0.06em;
  animation: caret-blink 0.9s steps(1) infinite;
}
@keyframes caret-blink {
  50% {
    opacity: 0;
  }
}
.hero__lead {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero__lead p {
  font-size: 18px;
  color: rgba(16, 31, 58, 0.72);
}

/* Indicador de scroll no rodapé do hero (32px da base). */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--navy);
  transform: translateX(-50%);
  animation: hero-scroll-bob 1.8s ease-in-out infinite;
}
.hero__scroll-mouse {
  width: 28px;
  height: 28px;
}
.hero__scroll-chevron {
  width: 22px;
  height: 22px;
  margin-top: -4px;
  animation: hero-scroll-chevron 1.8s ease-in-out infinite;
}
.hero__scroll-wheel {
  transform-origin: center;
  animation: hero-scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes hero-scroll-bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes hero-scroll-chevron {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(-2px);
  }
  50% {
    opacity: 1;
    transform: translateY(2px);
  }
}
@keyframes hero-scroll-wheel {
  0% {
    opacity: 0;
    transform: translateY(-3px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll,
  .hero__scroll-chevron,
  .hero__scroll-wheel {
    animation: none;
  }
}

/* ================================================================= SERVICES */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  min-height: 440px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  outline: none;
}
.service-card__icon {
  width: 64px;
  height: 64px;
  flex: none;
}
.service-card__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.service-card__body {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.service-card__head {
  width: 100%;
  /* Reserva a altura do título grande (2 linhas) para a divisória não
	   "pular" quando o título encolhe no hover. */
  min-height: 110px;
  box-sizing: border-box;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--navy-divider);
  text-align: center;
}
.service-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  font-size: 34px;
  line-height: 1.15;
  transition: font-size 0.3s ease;
}
/* Frase curta e descrição ocupam a MESMA célula (empilhadas): a troca é só
   cross-fade de opacidade, sem mudar a altura → sem tremer. */
.service-card__copy {
  flex: 1 1 auto;
  display: grid;
  margin-top: 24px;
}
.service-card__copy > * {
  grid-area: 1 / 1;
  align-self: start;
}
.service-card__tagline,
.service-card__desc {
  color: rgba(254, 254, 254, 0.8);
  font-size: 18px;
  width: 100%;
  transition: opacity 0.3s ease;
}
.service-card__tagline {
  text-align: center;
  opacity: 1;
}
.service-card__desc {
  text-align: left;
  opacity: 0;
}

/* Hover/foco: título encolhe e a descrição cruza com a frase, no lugar. */
.service-card {
  cursor: pointer;
}
.service-card:hover .service-card__title,
.service-card:focus .service-card__title,
.service-card.is-active .service-card__title {
  font-size: 20px;
}
.service-card:hover .service-card__head,
.service-card:focus .service-card__head,
.service-card.is-active .service-card__head {
  text-align: left;
}
.service-card:hover .service-card__tagline,
.service-card:focus .service-card__tagline,
.service-card.is-active .service-card__tagline {
  opacity: 0;
}
.service-card:hover .service-card__desc,
.service-card:focus .service-card__desc,
.service-card.is-active .service-card__desc {
  opacity: 1;
}

/* ================================================================= PROJECTS */
.projects__head {
  align-items: center;
}
.projects__intro {
  font-size: 16px;
  color: var(--ink);
  max-width: 494px;
  text-align: left;
}

.projects__carousel {
  position: relative;
}
.projects-swiper {
  width: 100%;
  overflow: hidden;
}
.projects-swiper .swiper-slide {
  height: 491px;
}

.project-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: grab;
}
.projects-swiper:active .project-card {
  cursor: grabbing;
}
.project-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 31, 58, 0) 38%, var(--navy) 75%);
}
.project-card__logo {
  position: absolute;
  top: 24px;
  left: 24px;
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}
.project-card__meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}
.project-card__title {
  font-size: 20px;
}
.project-card__area {
  font-size: 16px;
}

.projects__arrows {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.projects__arrow {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.projects__arrow:hover {
  opacity: 0.65;
}
.projects__arrow img {
  width: 32px;
  height: 32px;
}
[data-projects-next] img {
  transform: rotate(180deg);
}
/* Seta sem mais slides naquele sentido fica apagada e inativa (Swiper). */
.projects__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
/* Se todos os slides cabem na tela, o Swiper trava a navegação: some as setas. */
.projects__arrow.swiper-button-lock {
  display: none;
}

.projects__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 56px;
}
.projects__note {
  font-size: 16px;
  color: var(--navy);
  max-width: 592px;
}

/* =============================================================== PRINCIPLES */
.principles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.principle-card {
  background: #fff;
  border-left: 8px solid var(--violet);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow:
    20px 23px 18px rgba(16, 31, 58, 0.05),
    9px 10px 14px rgba(16, 31, 58, 0.09),
    2px 3px 8px rgba(16, 31, 58, 0.1);
}
.principle-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.principle-card__number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--violet);
}
.principle-card__title {
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
}
.principle-card__text {
  font-size: 16px;
  color: rgba(16, 31, 58, 0.8);
}

/* ================================================================== CONTACT */
.contact {
  border-bottom: 1px solid var(--blue);
}
.contact__grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: space-between;
}
.contact__form-col {
  flex: 0 1 592px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.contact__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}
.contact__eyebrow {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--white);
}
.contact__title {
  font-size: 48px;
  color: var(--white);
  font-weight: 400;
}
.contact__lead {
  font-size: 18px;
  color: rgba(254, 254, 254, 0.8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__field label {
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--white);
  background: rgba(27, 54, 105, 0.16);
  border: 1px solid var(--blue-3);
  border-radius: 8px;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 79px;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--placeholder);
  font-size: 12px;
}
.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--white);
}
.contact-form__consent input {
  margin-top: 3px;
  accent-color: var(--violet);
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.contact__office {
  flex: 0 1 488px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact__office-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--white);
  line-height: 1.2;
}
.office-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.office-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.office-list__icon {
  flex: none;
  width: 42px;
  height: 42px;
  background: var(--violet-bg);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.office-list__text {
  font-size: 16px;
  color: var(--white);
}
.contact__map {
  height: 358px;
  overflow: hidden;
}
.contact__map img,
.contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

/* =================================================================== FOOTER */
.site-footer {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.site-footer__inner {
  width: min(var(--container), 100% - var(--gutter));
  margin-inline: auto;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.site-footer__logo {
  height: 42px;
  width: auto;
}
.site-footer__social {
  display: flex;
  gap: 8px;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}
.site-footer__social a:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}
.site-footer__social img {
  width: 28px;
  height: 28px;
  transition: transform 0.25s ease;
}
.site-footer__social a:hover img {
  transform: scale(1.12);
}
.site-footer__cols {
  display: flex;
  gap: 48px;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 132px;
  max-width: 312px;
}
.site-footer__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--white);
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__list a,
.site-footer__list span {
  font-size: 14px;
  color: var(--gray-200);
  transition: color 0.2s ease;
}
.site-footer__list a:hover {
  color: #2c59af;
}
.site-footer__divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
}
.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}
.site-footer__legal a {
  position: relative;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}
.site-footer__legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 0.3s ease,
    background-color 0.25s ease;
}
.site-footer__legal a:hover {
  color: var(--violet-light);
}
.site-footer__legal a:hover::after {
  transform: scaleX(1);
  background: var(--violet-light);
}
.site-footer__wordmark {
  margin-top: 16px;
  overflow: hidden;
  aspect-ratio: 1399.35 / 118.31;
}
.site-footer__wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

/* ================================================================ QUEM SOMOS */
/* Container da página: 1216px com 15px de padding lateral (pedido do cliente). */
.about .container {
  width: min(var(--container), 100% - 30px);
}

/* ----------------------------------------------------------- Abertura */
.about-intro {
  background: var(--white);
  padding-block: 80px 24px;
}
.about-intro__eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: var(--violet);
  margin-bottom: 16px;
}
.about-intro__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.2;
  color: var(--navy);
  max-width: 891px;
  margin-bottom: 16px;
}
.about-intro__lead {
  font-size: 24px;
  line-height: 1.2;
  color: rgba(16, 31, 58, 0.8);
  max-width: 915px;
}
.about-intro__brand {
  color: var(--violet);
}

/* ----------------------------------------------------------- Diretores */
.about-founders {
  background: var(--white);
  padding-block: 40px 80px;
}
.about-founders .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.founder-card {
  display: flex;
  gap: 40px;
  align-items: stretch;
  width: 100%;
  max-width: 1016px;
  margin-inline: auto;
  padding: 32px;
  background: var(--white);
  border-left: 8px solid var(--violet);
  box-shadow:
    2px 3px 4px rgba(16, 31, 58, 0.1),
    9px 10px 7px rgba(16, 31, 58, 0.09),
    20px 23px 9px rgba(16, 31, 58, 0.05);
}
.founder-card--photo-right {
  flex-direction: row-reverse;
  border-left: 0;
  border-right: 8px solid var(--violet);
}
.founder-card__photo {
  flex: 0 0 335px;
  width: 335px;
  overflow: hidden;
}
.founder-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.founder-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 3.36px;
  color: var(--violet-light);
}
.founder-card__role {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}
.founder-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founder-card__list li {
  font-size: 16px;
  color: rgba(16, 31, 58, 0.9);
}

/* ------------------------------------------------------- O que Nos Move */
.about-move__inner {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.about-move__head {
  width: 100%;
}

.about-pillars {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--blue-3);
}
.about-pillar {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 15px;
  border-top: 4px solid var(--white);
}
.about-pillar__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 2.88px;
  color: var(--white);
}
.about-pillar__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.about-five {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about-five__label {
  font-size: 24px;
  color: var(--white);
  text-align: center;
}
.about-five__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.value-card {
  flex: 0 1 224px;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
}
.value-card__rule {
  width: 56px;
  height: 3px;
  background: var(--white);
  margin-bottom: 12px;
}
.value-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}
.value-card__text {
  font-size: 12px;
  color: rgba(254, 254, 254, 0.8);
}

/* =========================================================== NOSSOS SERVIÇOS */
.services-page .container,
.careers-page .container {
  width: min(var(--container), 100% - 30px);
}

.services-detail {
  background: var(--bg-soft);
  padding-block: 80px;
}
.services-detail__eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: var(--violet);
  margin-bottom: 24px;
}
.services-detail__list {
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.service-block {
  display: flex;
  flex-direction: column;
  gap: 48px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.service-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.service-block__heading {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 520px;
}
.service-block__number {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--violet);
}
.service-block__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: var(--navy);
}
.service-block__audience {
  flex: 0 0 208px;
  width: 208px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1.6px;
  color: rgba(16, 31, 58, 0.6);
  text-align: right;
}
.service-block__divider {
  border: 0;
  border-top: 1px solid rgba(16, 31, 58, 0.2);
  margin: 0;
}

.service-block__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}
.service-block__summary {
  flex: 0 1 527px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--navy);
}
.service-block__lead {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
.service-block__text {
  font-size: 18px;
  line-height: 1.2;
  color: rgba(16, 31, 58, 0.8);
}

.service-block__specs {
  flex: 0 1 592px;
  margin: 0;
}
.service-block__spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.service-block__spec + .service-block__spec {
  border-top: 1px solid rgba(16, 31, 58, 0.2);
}
.service-block__spec:first-child {
  border-top: 1px solid rgba(16, 31, 58, 0.2);
}
.service-block__spec:last-child {
  border-bottom: 1px solid rgba(16, 31, 58, 0.2);
}
.service-block__spec dt {
  font-size: 14px;
  letter-spacing: 1.4px;
  color: var(--violet);
  white-space: nowrap;
}
.service-block__spec dd {
  flex: 0 0 384px;
  width: 384px;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(16, 31, 58, 0.8);
}

/* ================================================================= CARREIRAS */
.careers {
  background: var(--bg-soft);
  padding-block: 80px;
}
.careers__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

.careers__intro {
  flex: 0 1 531px;
  display: flex;
  flex-direction: column;
  gap: 47px;
  padding-top: 76px;
}
.careers__intro-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 486px;
}
.careers__intro-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: var(--navy);
}
.careers__intro-rule {
  width: 235px;
  height: 4px;
  background: var(--violet);
}
.careers__intro-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.careers__intro-text p {
  font-size: 16px;
  line-height: 1.2;
  color: rgba(16, 31, 58, 0.8);
}

.careers__card {
  flex: 0 0 624px;
  max-width: 624px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
  background: var(--white);
  box-shadow:
    2px 3px 4px rgba(16, 31, 58, 0.1),
    9px 10px 7px rgba(16, 31, 58, 0.09),
    20px 23px 9px rgba(16, 31, 58, 0.05);
}
.careers__card-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.careers__card-eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--violet-light);
}
.careers__card-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--navy);
}
.careers__card-lead {
  font-size: 14px;
  color: var(--navy);
}

.careers__feedback {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
}
.careers__feedback--ok {
  background: #e7f7ee;
  color: #15633a;
  border: 1px solid #b6e3c8;
}
.careers__feedback--error {
  background: #fdecec;
  color: #8a1c1c;
  border: 1px solid #f3c2c2;
}

.careers-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.careers-form__hp,
.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form__feedback {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.contact-form__feedback--ok {
  background: rgba(231, 247, 238, 0.12);
  color: #b6e3c8;
  border: 1px solid rgba(182, 227, 200, 0.4);
}
.contact-form__feedback--error {
  background: rgba(253, 236, 236, 0.12);
  color: #f3c2c2;
  border: 1px solid rgba(243, 194, 194, 0.4);
}
.careers-form__field input,
.careers-form__field textarea {
  width: 100%;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: rgba(221, 221, 221, 0.16);
  border: 1px solid var(--blue-3);
  border-radius: 8px;
}
.careers-form__field input::placeholder,
.careers-form__field textarea::placeholder {
  color: rgba(16, 31, 58, 0.55);
}
.careers-form__field textarea {
  resize: vertical;
  min-height: 80px;
}
.careers-form__file label {
  display: block;
  font-size: 12px;
  color: rgba(16, 31, 58, 0.7);
  margin-bottom: 6px;
}
.careers-form__file input {
  width: 100%;
  font-size: 13px;
  color: var(--navy);
}
.careers-form__file input::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  color: var(--violet-light);
  background: var(--violet-bg);
  border: 1px solid var(--violet-light);
  border-radius: 6px;
  cursor: pointer;
}
.careers-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--navy);
}
.careers-form__consent input {
  margin-top: 2px;
  flex: 0 0 auto;
}
.careers-form__submit {
  align-self: flex-start;
}

/* =========================================================== NOSSOS PROJETOS */
.projects-page .container {
  width: min(var(--container), 100% - 30px);
}
.projects-archive {
  background: var(--bg-soft);
  padding-block: 80px;
}
.projects-archive__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: var(--violet);
  margin-bottom: 48px;
}

/* Barra de filtros */
.projects-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.projects-filters__all {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 auto;
}
.projects-filters__rule {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(81, 2, 182, 0.25);
}
.projects-filters__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.projects-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 12px 24px;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--muted-purple);
  border: 1px solid var(--muted-purple);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.projects-filter:hover {
  color: var(--violet-light);
  border-color: var(--violet-light);
}
.projects-filter.is-active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(90deg, var(--violet), var(--violet-light));
}
.projects-filters__all .projects-filter {
  flex: 0 0 auto;
}
.projects-filter--demo {
  cursor: default;
}

/* Lista de projetos */
.projects-list {
  display: flex;
  flex-direction: column;
}
.project-row {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-block: 32px;
  border-bottom: 1px solid rgba(16, 31, 58, 0.15);
}
.project-row__info {
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding-block: 16px;
}
.project-row__top {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.project-row__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project-row__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: var(--navy);
}
.project-row__desc {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(16, 31, 58, 0.85);
}
.project-row__meta {
  display: flex;
  gap: 37px;
  margin: 0;
}
.project-row__meta-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-row__meta dt {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  background: linear-gradient(90deg, var(--violet), var(--violet-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.project-row__meta dd {
  margin: 0;
  font-size: 24px;
  color: var(--navy);
}
.project-row__brand {
  display: flex;
  align-items: center;
  gap: 24px;
}
.project-row__brand img {
  height: 28px;
  width: auto;
}
.project-row__brand-rule {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(16, 31, 58, 0.15);
}

/* Slider (Swiper) do projeto */
.project-row__media {
  flex: 0 0 592px;
  max-width: 592px;
}
.project-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.project-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-slider__placeholder {
  background: linear-gradient(135deg, var(--navy-card), var(--navy));
}
.project-slider__nav {
  position: absolute;
  bottom: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 12px;
  border: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
  transition: background 0.2s ease;
}
.project-slider__nav:hover {
  background: rgba(0, 0, 0, 0.35);
}
.project-slider__nav img {
  width: 32px;
  height: 32px;
}
.project-slider__prev {
  left: 0;
}
.project-slider__prev img {
  transform: rotate(180deg);
}
.project-slider__next {
  right: 0;
}
.projects-list__empty {
  padding-block: 48px;
  font-size: 18px;
  color: var(--navy);
}

/* Rodapé da lista: CTA + paginação */
.projects-archive__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
}
.projects-archive__cta {
  height: 52px;
  color: var(--muted-purple);
  border: 1px solid var(--muted-purple);
  background: transparent;
}
.projects-archive__cta:hover {
  color: #fff;
  background: var(--muted-purple);
}
.projects-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  line-height: 1;
}
.projects-pagination .page-numbers {
  color: var(--muted-purple);
  opacity: 0.3;
  transition: opacity 0.2s ease;
}
.projects-pagination a.page-numbers:hover {
  opacity: 1;
}
.projects-pagination .page-numbers.current {
  color: var(--violet);
  opacity: 1;
}
/* Setas da paginação: ícone (máscara) recolorível, navy no padrão. */
.projects-pagination .prev,
.projects-pagination .next {
  display: inline-flex;
  align-items: center;
  opacity: 1;
}
.projects-pagination .prev {
  margin-right: 4px;
}
.projects-pagination .next {
  margin-left: 4px;
}
.proj-page-arrow {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: var(--navy);
  -webkit-mask: url("../images/arrow-slider.svg") no-repeat center / contain;
  mask: url("../images/arrow-slider.svg") no-repeat center / contain;
  transition: background-color 0.2s ease;
}
.projects-pagination a:hover .proj-page-arrow {
  background-color: var(--violet);
}
.proj-page-arrow--prev {
  transform: rotate(180deg);
}

/* ============================================================== RESPONSIVE */
@media (max-width: 1080px) {
  .section-title {
    font-size: 40px;
  }
  .hero__title {
    font-size: 52px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 0;
  }
  .service-card__title {
    font-size: 26px;
  }
  .contact__grid {
    flex-direction: column;
  }
  .contact__form-col,
  .contact__office {
    flex-basis: auto;
    width: 100%;
  }
}

/* ----------------------------------- Header: menu hamburguer até 1024px */
@media (max-width: 1024px) {
  /* No mobile/tablet o wrapper vira um painel; sai do display:contents. */
  .site-header__collapse {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 16px var(--gutter) 24px;
    background: var(--white);
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 16px 32px rgba(16, 31, 58, 0.14);
    /* Estado fechado: escondido, pronto para animar. */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;
  }
  .site-header.nav-open .site-header__collapse {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s;
  }

  .site-nav {
    width: 100%;
  }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav__list li {
    border-bottom: 1px solid var(--header-border);
  }
  .site-nav__list a {
    display: block;
    padding: 14px 4px;
    font-size: 17px;
    /* Pequena entrada deslizante de cada item ao abrir. */
    opacity: 0;
    transform: translateX(-8px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      color 0.2s ease;
  }
  .site-header.nav-open .site-nav__list a {
    opacity: 1;
    transform: translateX(0);
  }
  /* Escalonamento da entrada dos itens. */
  .site-header.nav-open .site-nav__list li:nth-child(1) a {
    transition-delay: 0.05s;
  }
  .site-header.nav-open .site-nav__list li:nth-child(2) a {
    transition-delay: 0.1s;
  }
  .site-header.nav-open .site-nav__list li:nth-child(3) a {
    transition-delay: 0.15s;
  }
  .site-header.nav-open .site-nav__list li:nth-child(4) a {
    transition-delay: 0.2s;
  }
  .site-header.nav-open .site-nav__list li:nth-child(n + 5) a {
    transition-delay: 0.25s;
  }

  /* Portal do Cliente dentro do menu, em largura total. */
  .site-header__portal {
    display: inline-flex;
    width: 100%;
    height: 48px;
    margin-top: 8px;
  }

  /* Botão hamburguer (vira "X" quando aberto). */
  .site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
  }
  .site-header__toggle-box {
    position: relative;
    width: 24px;
    height: 18px;
  }
  .site-header__toggle-box span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition:
      transform 0.3s ease,
      opacity 0.2s ease,
      top 0.3s ease;
  }
  .site-header__toggle-box span:nth-child(1) {
    top: 0;
  }
  .site-header__toggle-box span:nth-child(2) {
    top: 8px;
  }
  .site-header__toggle-box span:nth-child(3) {
    top: 16px;
  }
  .site-header.nav-open .site-header__toggle-box span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  .site-header.nav-open .site-header__toggle-box span:nth-child(2) {
    opacity: 0;
  }
  .site-header.nav-open .site-header__toggle-box span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 32px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-head__rule {
    display: none;
  }
  .projects__head {
    align-items: flex-start;
  }
  .principles__grid {
    grid-template-columns: 1fr;
  }
  .projects__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 78px;
  }
  .section {
    padding-block: 64px;
  }
  /* Hero mantém o tamanho; o ajuste de altura vem do header menor. */
  .hero {
    padding: 96px 24px;
    min-height: 85vh;
  }
  /* Título que se alterna (o span herda do .hero__title). */
  .hero__title {
    font-size: 30px;
  }
  /* Parágrafos de apoio do hero. */
  .hero__lead p {
    font-size: 14px;
  }
  /* Logo um pouco menor no mobile. */
  .site-header__logo img {
    height: 36px;
  }
  .section-title {
    font-size: 32px;
  }
  .contact__title {
    font-size: 36px;
  }
  .site-footer__top {
    flex-direction: column;
  }
  .site-footer__cols {
    flex-wrap: wrap;
  }
  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* -------------------------------------------------- Quem Somos — responsivo */
@media (max-width: 1080px) {
  .about-intro__title {
    font-size: 48px;
  }
}

@media (max-width: 900px) {
  .founder-card,
  .founder-card--photo-right {
    flex-direction: column;
  }
  .founder-card__photo {
    flex-basis: auto;
    width: 100%;
    height: 320px;
  }
  .about-pillars {
    flex-direction: column;
    gap: 24px;
  }
}

/* Tablet: foto dos fundadores mais alta e alinhada ao topo. */
@media (min-width: 601px) and (max-width: 900px) {
  .founder-card__photo {
    height: 660px;
  }
  .founder-card__photo img {
    object-position: center top;
  }
}

@media (max-width: 600px) {
  .about-intro {
    padding-block: 56px 16px;
  }
  .about-intro__eyebrow {
    font-size: 28px;
  }
  .about-intro__title {
    font-size: 32px;
  }
  .about-intro__lead {
    font-size: 18px;
  }
  .founder-card {
    padding: 20px;
    gap: 24px;
  }
  .founder-card__name {
    font-size: 22px;
    letter-spacing: 2px;
  }
  .value-card {
    flex-basis: 100%;
  }
}

/* ------------------------------------- Nossos Serviços / Carreiras — responsivo */
@media (max-width: 1080px) {
  .service-block__title {
    font-size: 36px;
  }
  .service-block__body {
    gap: 40px;
  }
  .careers__intro-title,
  .careers__card-title {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  .service-block__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .service-block__heading {
    max-width: none;
  }
  .service-block__audience {
    flex-basis: auto;
    width: auto;
    text-align: left;
  }
  .service-block__body {
    flex-direction: column;
    gap: 32px;
  }
  .service-block__summary,
  .service-block__specs {
    flex-basis: auto;
    width: 100%;
  }
  .service-block__spec dd {
    flex-basis: auto;
    width: auto;
    max-width: 60%;
    text-align: right;
  }

  .careers__grid {
    flex-direction: column;
    gap: 40px;
  }
  .careers__intro {
    flex-basis: auto;
    padding-top: 0;
  }
  .careers__card {
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .services-detail,
  .careers {
    padding-block: 56px;
  }
  .services-detail__eyebrow {
    font-size: 28px;
  }
  .service-block__title {
    font-size: 28px;
  }
  .service-block__heading {
    gap: 16px;
  }
  .service-block__lead {
    font-size: 20px;
  }
  .service-block__spec {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .service-block__spec dd {
    max-width: none;
    width: 100%;
    text-align: left;
  }
  .careers__intro-title {
    font-size: 32px;
  }
  .careers__card-title {
    font-size: 32px;
  }
}

/* ------------------------------------------- Nossos Projetos — responsivo */
@media (max-width: 1080px) {
  .project-row {
    gap: 24px;
  }
  .project-row__media {
    flex-basis: 420px;
    max-width: 420px;
  }
  .project-row__title {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .project-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .project-row__info {
    order: 2;
    padding-block: 0;
    gap: 24px;
  }
  .project-row__media {
    order: 1;
    flex-basis: auto;
    max-width: none;
  }
  .projects-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .projects-filters__rule {
    display: none;
  }
  .projects-filters__cats {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .projects-archive {
    padding-block: 56px;
  }
  .project-row__title {
    font-size: 24px;
  }
  .project-row__desc {
    font-size: 16px;
  }
  .project-row__meta {
    flex-direction: column;
    gap: 20px;
  }
  .project-row__meta dd {
    font-size: 20px;
  }
  .projects-filter {
    height: 44px;
    padding: 10px 16px;
    font-size: 13px;
  }
  .projects-archive__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .legal {
    padding-block: 56px;
  }
  .legal__title {
    font-size: 32px;
  }
  .legal__body h2 {
    font-size: 20px;
  }
}

/* ==================================================== POLÍTICA DE PRIVACIDADE */
.legal-page .container {
  width: min(var(--container), 100% - 30px);
}
.legal {
  background: var(--bg-soft);
  padding-block: 80px;
}
.legal__inner {
  max-width: 880px;
}
.legal__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.legal__eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--violet);
}
.legal__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  color: var(--navy);
}
.legal__updated {
  font-size: 14px;
  color: rgba(16, 31, 58, 0.6);
}
.legal__body {
  color: rgba(16, 31, 58, 0.85);
  font-size: 16px;
  line-height: 1.7;
}
.legal__body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal__body p {
  margin-bottom: 16px;
}
.legal__body ul {
  margin: 0 0 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal__body a {
  color: var(--violet-light);
  text-decoration: underline;
}
.legal__body a:hover {
  color: var(--violet);
}

/* ============================================================== PRELOADER */
/* Escondido por padrão; só aparece quando o <head> marca .is-preloading
   (1ª visita da sessão). Em páginas seguintes, nunca chega a renderizar. */
.site-preloader {
  display: none;
}
html.is-preloading body {
  overflow: hidden;
}
html.is-preloading .site-preloader {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* fallback */
  height: 100dvh; /* altura visível real no mobile (sem a barra do navegador "passar") */
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  overflow: hidden;
  transition: opacity 0.5s ease;
}
.site-preloader.is-done {
  opacity: 0;
  pointer-events: none;
}
.site-preloader__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* O vídeo tem peso visual mais acima do centro; deslocamos um pouco
     para baixo para parecer realmente centralizado na tela. */
  transform: translateY(10%);
}
/* Tablet: deslocamento menor. */
@media (min-width: 601px) and (max-width: 900px) {
  .site-preloader__video {
    transform: translateY(6%);
  }
}
/* Mobile: sem deslocamento, só o aumento. */
@media (max-width: 600px) {
  .site-preloader__video {
    transform: scale(1.6);
    transform-origin: center center;
  }
}

/* Entrada do header + hero APÓS o preloader (só na 1ª visita da sessão).
   Enquanto .is-preloading está no <html>, header e hero ficam escondidos;
   ao remover a classe, ambos transicionam suavemente para o estado visível. */
.site-header {
  transition:
    opacity 0.8s ease 0.1s,
    transform 0.8s ease 0.1s;
}
html.is-preloading .site-header {
  opacity: 0;
  transform: translateY(-16px);
}
html.is-preloading .hero__content,
html.is-preloading.has-reveal .hero__content.is-visible {
  opacity: 0;
  transform: translateY(24px);
  transition-delay: 0.3s;
}

/* ===================================================== ANIMAÇÕES DE ENTRADA */
/*
 * Fade-up sutil na entrada das seções. Ativado só com a flag .has-reveal
 * (definida no <head>, e apenas quando o usuário não pediu menos movimento).
 * O .is-visible é adicionado por main.js quando o bloco entra na viewport.
 */
.has-reveal .hero__content,
.has-reveal .section > .container > *,
.has-reveal .home-shot-hero__inner > .home-shot-kicker,
.has-reveal .home-shot-hero__lead,
.has-reveal .home-shot-hero__inner > .home-shot-link,
.has-reveal .home-shot-section-head > div,
.has-reveal .home-shot-sidecopy,
.has-reveal .home-shot-service-card,
.has-reveal .home-shot-services__footer,
.has-reveal .home-shot-projects__filters,
.has-reveal .home-shot-project-card,
.has-reveal .home-shot-projects__footer,
.has-reveal .home-shot-principles__head,
.has-reveal .home-shot-principle-card,
.has-reveal .home-shot-contact__left,
.has-reveal .home-shot-office {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.has-reveal .hero__content.is-visible,
.has-reveal .section > .container > *.is-visible,
.has-reveal .home-shot-hero__inner > .home-shot-kicker.is-visible,
.has-reveal .home-shot-hero__lead.is-visible,
.has-reveal .home-shot-hero__inner > .home-shot-link.is-visible,
.has-reveal .home-shot-section-head > div.is-visible,
.has-reveal .home-shot-sidecopy.is-visible,
.has-reveal .home-shot-service-card.is-visible,
.has-reveal .home-shot-services__footer.is-visible,
.has-reveal .home-shot-projects__filters.is-visible,
.has-reveal .home-shot-project-card.is-visible,
.has-reveal .home-shot-projects__footer.is-visible,
.has-reveal .home-shot-principles__head.is-visible,
.has-reveal .home-shot-principle-card.is-visible,
.has-reveal .home-shot-contact__left.is-visible,
.has-reveal .home-shot-office.is-visible {
  opacity: 1;
  transform: none;
}
/* Escalonamento leve dos blocos dentro de cada seção. */
.has-reveal .section > .container > *:nth-child(2) {
  transition-delay: 0.08s;
}
.has-reveal .section > .container > *:nth-child(3) {
  transition-delay: 0.16s;
}
.has-reveal .section > .container > *:nth-child(n + 4) {
  transition-delay: 0.24s;
}

.has-reveal .home-shot-hero__lead {
  transition-delay: 0.12s;
}

.has-reveal .home-shot-hero__inner > .home-shot-link {
  transition-delay: 0.22s;
}

.has-reveal .home-shot-service-card:nth-child(2),
.has-reveal .home-shot-project-card:nth-child(2),
.has-reveal .home-shot-principle-card:nth-child(2) {
  transition-delay: 0.08s;
}

.has-reveal .home-shot-service-card:nth-child(3),
.has-reveal .home-shot-project-card:nth-child(3),
.has-reveal .home-shot-principle-card:nth-child(3) {
  transition-delay: 0.16s;
}

.has-reveal .home-shot-project-card:nth-child(n + 4),
.has-reveal .home-shot-principle-card:nth-child(n + 4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal .hero__content,
  .has-reveal .section > .container > *,
  .has-reveal .home-shot-hero__inner > .home-shot-kicker,
  .has-reveal .home-shot-hero__lead,
  .has-reveal .home-shot-hero__inner > .home-shot-link,
  .has-reveal .home-shot-section-head > div,
  .has-reveal .home-shot-sidecopy,
  .has-reveal .home-shot-service-card,
  .has-reveal .home-shot-services__footer,
  .has-reveal .home-shot-projects__filters,
  .has-reveal .home-shot-project-card,
  .has-reveal .home-shot-projects__footer,
  .has-reveal .home-shot-principles__head,
  .has-reveal .home-shot-principle-card,
  .has-reveal .home-shot-contact__left,
  .has-reveal .home-shot-office {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ======================================================== LENIS smooth scroll */
/* Classes adicionadas pelo Lenis no <html> em runtime. */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: clip;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* =========================================================================
   Layout 2026.07 — adaptação do HTML novo mantendo a base WordPress atual
   ========================================================================= */

:root {
  --navy: #0e1a36;
  --navy-soft: #15264d;
  --page-soft: #f6f5fb;
  --page-soft-2: #f3f2f7;
  --page-line: #e7e3f1;
  --text-soft: #6b7385;
  --text-mid: #475067;
  --link-violet: #4b2e85;
  --violet: #4b2e85;
  --violet-light: #6e4bc0;
  --font-body: "IBM Plex Sans", "Poppins", sans-serif;
  --font-display: "Archivo", "Poppins", sans-serif;
  --container: 1280px;
  --gutter: 6vw;
}

body {
  background: #fff;
  color: var(--navy);
}

.section {
  padding-block: 84px;
}

.section-head {
  align-items: end;
  margin-bottom: 40px;
}

.section-head--stacked {
  align-items: start;
}

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

.section-head__rule {
  background: var(--page-line);
}

.section-kicker {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--link-violet);
  font-weight: 600;
}

.section-title,
.page-hero__title,
.about-founders__title,
.cta-strip__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--link-violet);
  font-size: 15px;
  font-weight: 600;
}

.section-link:hover {
  color: var(--navy);
}

.page-hero {
  display: grid;
  gap: 18px;
  padding: 74px 0 62px;
  border-bottom: 1px solid var(--page-line);
}

.page-hero__title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 3.125rem);
  line-height: 1.04;
}

.page-hero__lead {
  margin: 0;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 32px;
  background:
    radial-gradient(circle at top right, rgba(75, 46, 133, 0.08), transparent 35%),
    var(--page-soft);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.home-hero__content {
  max-width: 640px;
  padding-block: 16px;
}

.home-hero__eyebrow {
  margin-bottom: 14px;
}

.home-hero__title {
  margin: 0;
  min-height: 0;
  font-size: clamp(3rem, 5.2vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.home-hero__lead {
  margin-top: 24px;
  max-width: 590px;
  color: var(--text-soft);
}

.home-hero__lead p {
  font-size: 1rem;
  line-height: 1.75;
  color: inherit;
}

.home-hero__lead p + p {
  margin-top: 14px;
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--link-violet);
  font-size: 15px;
  font-weight: 600;
}

.home-hero__cta:hover {
  color: var(--navy);
}

.home-hero__media {
  position: relative;
}

.home-hero__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 520px;
  box-shadow: 0 36px 80px -52px rgba(14, 26, 54, 0.45);
}

.home-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 26, 54, 0) 20%, rgba(14, 26, 54, 0.18) 100%);
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__scroll {
  position: static;
  justify-content: center;
  margin: 20px auto 0;
  color: var(--link-violet);
}

.services--layout-2026,
.contact--layout-2026 {
  background: var(--page-soft);
}

.projects--layout-2026,
.about-founders--layout-2026 {
  background: #fff;
}

.principles--layout-2026 {
  background: var(--page-soft-2);
}

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

.services__footer {
  margin-top: 28px;
}

.service-card {
  height: 100%;
  padding: 28px 26px;
  border: 1px solid var(--page-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 64px -46px rgba(14, 26, 54, 0.4);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(75, 46, 133, 0.08), rgba(75, 46, 133, 0.02));
}

.service-card__title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.service-card__tagline,
.service-card__desc {
  color: var(--text-soft);
  line-height: 1.7;
}

.service-card__desc {
  margin-top: 14px;
}

.projects--layout-2026 {
  background: #fff;
}

.projects__head {
  margin-bottom: 34px;
}

.projects__intro {
  max-width: 420px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.project-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 22px;
  background: #d9dce5;
}

.project-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__shade {
  background: linear-gradient(180deg, rgba(14, 26, 54, 0.04), rgba(14, 26, 54, 0.66));
}

.project-card__meta {
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.project-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.projects__arrows {
  margin-top: 18px;
}

.projects__arrow {
  border-color: var(--page-line);
  background: #fff;
}

.projects__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
}

.projects__note {
  max-width: 620px;
  color: var(--text-mid);
  line-height: 1.7;
}

.principles__grid {
  gap: 20px;
}

.principle-card {
  border: 1px solid var(--page-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 24px 22px;
}

.principle-card__number {
  color: var(--link-violet);
  font-weight: 600;
}

.principle-card__title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.principle-card__text {
  color: var(--text-soft);
  line-height: 1.7;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 54px;
}

.contact__intro {
  margin-bottom: 24px;
}

.contact__eyebrow {
  margin-bottom: 8px;
  color: var(--link-violet);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.contact__title,
.contact__office-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.contact__title {
  font-size: clamp(2rem, 3vw, 2.15rem);
}

.contact__lead {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-form,
.careers-form,
.careers__card,
.contact__office {
  border: 1px solid var(--page-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 64px -46px rgba(14, 26, 54, 0.4);
}

.contact-form,
.careers-form {
  padding: 0;
  box-shadow: none;
  border: 0;
  background: transparent;
}

.contact__plugin-form,
.contact__office,
.careers__card {
  padding: 34px 30px;
}

.contact-form__field label,
.careers-form__field label,
.careers-form__file label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.contact-form__field input,
.contact-form__field textarea,
.careers-form__field input,
.careers-form__field textarea,
.careers-form__file input {
  border: 1px solid #e4e0ee;
  border-radius: 10px;
  background: var(--page-soft);
  color: var(--navy);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder,
.careers-form__field input::placeholder,
.careers-form__field textarea::placeholder {
  color: #9aa0b0;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.careers-form__field input:focus,
.careers-form__field textarea:focus,
.careers-form__file input:focus {
  border-color: #b9aed4;
  background: #fff;
}

.contact-form__consent,
.careers-form__consent {
  margin: 18px 0 0;
  color: var(--text-soft);
}

.contact-form__consent input,
.careers-form__consent input {
  accent-color: var(--link-violet);
}

.office-list {
  gap: 16px;
}

.office-list__item {
  align-items: flex-start;
}

.office-list__text {
  line-height: 1.65;
  color: var(--text-mid);
}

.contact__map,
.contact__map iframe,
.contact__map img {
  border-radius: 18px;
}

.contact__map {
  margin-top: 22px;
  overflow: hidden;
  aspect-ratio: 1 / 0.78;
}

.about-intro--layout-2026,
.services-detail--layout-2026,
.projects-archive--layout-2026,
.careers--layout-2026 {
  background: var(--page-soft);
}

.about-founders__head {
  margin-bottom: 30px;
}

.about-founders__title {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.2rem);
}

.founder-card {
  border-radius: 22px;
  border: 1px solid var(--page-line);
  box-shadow: 0 30px 64px -46px rgba(14, 26, 54, 0.4);
}

.about-move--layout-2026 {
  background: var(--navy);
}

.about-move--layout-2026 .section-title,
.about-move--layout-2026 .about-pillar__title,
.about-move--layout-2026 .about-five__label,
.about-move--layout-2026 .value-card__title {
  color: #fff;
}

.about-move--layout-2026 .about-pillar__text,
.about-move--layout-2026 .value-card__text {
  color: rgba(255, 255, 255, 0.8);
}

.services-detail--layout-2026 .services-detail__list {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.service-block {
  padding: 34px;
  border: 1px solid var(--page-line);
  border-radius: 20px;
  background: #faf9fc;
}

.service-block__title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.2rem);
}

.service-block__audience,
.service-block__text,
.service-block__spec dd {
  color: var(--text-soft);
}

.service-block__lead {
  color: var(--navy);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  padding: 32px;
  border-top: 1px solid var(--page-line);
  background: var(--page-soft);
  border-radius: 20px;
}

.cta-strip__title {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.cta-strip__text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.projects-filters {
  margin-top: 40px;
  margin-bottom: 34px;
}

.projects-filter {
  border: 1px solid var(--page-line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 16px;
  color: var(--text-mid);
}

.projects-filter.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.project-row {
  border: 1px solid var(--page-line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 64px -46px rgba(14, 26, 54, 0.32);
}

.project-row__title {
  font-family: var(--font-display);
  color: var(--navy);
}

.project-row__desc,
.project-row__meta dd,
.project-row__meta dt {
  color: var(--text-soft);
}

.project-slider {
  background: var(--page-soft-2);
}

.projects-archive__footer {
  gap: 28px;
}

.careers__grid {
  align-items: start;
}

.careers__intro-head {
  gap: 18px;
}

.careers__intro-title,
.careers__card-title {
  font-family: var(--font-display);
  color: var(--navy);
}

.careers__intro-text p,
.careers__card-lead {
  color: var(--text-soft);
}

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

.careers__feedback {
  margin-bottom: 16px;
}

@media (max-width: 1180px) {
  .home-hero__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__media {
    order: -1;
  }

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

  .projects__footer,
  .cta-strip {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 1024px) {
  .section {
    padding-block: 72px;
  }

  .page-hero {
    padding: 56px 0 44px;
  }

  .project-row {
    grid-template-columns: 1fr;
  }

  .service-block__head,
  .service-block__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .services--layout-2026 .services__grid,
  .careers-form__row {
    grid-template-columns: 1fr;
  }

  .projects__head,
  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .section-head__rule {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 24px;
  }

  .section {
    padding-block: 56px;
  }

  .page-hero {
    padding: 38px 0 36px;
  }

  .home-hero {
    padding-top: 36px;
  }

  .home-hero__grid {
    gap: 28px;
  }

  .home-hero__image-wrap,
  .project-card {
    min-height: 320px;
  }

  .contact__plugin-form,
  .contact__office,
  .careers__card,
  .service-block,
  .cta-strip {
    padding: 24px 20px;
  }

  .projects__arrows {
    justify-content: flex-start;
  }

  .projects__footer {
    align-items: start;
  }

  .founder-card__body {
    padding: 22px 20px;
  }
}

/* --------------------------------------------------------------------------
 * Layout 2026 refinado — Projetos + Carreiras
 * ----------------------------------------------------------------------- */

.project-lightbox-open,
.project-lightbox-open body {
  overflow: hidden;
}

.projects-archive--layout-2026 {
  padding: 0;
  background: #fff;
}

.projects-archive--layout-2026 .page-hero {
  margin: 0;
  padding: 74px 0 58px;
  background: #f6f5fb;
  border-bottom: 1px solid #e7e3f1;
}

.projects-archive__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: end;
}

.projects-browser {
  padding: 40px 0 56px;
}

.projects-browser__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eae6f1;
}

.projects-browser__tab {
  border: 1px solid #e7e3f1;
  border-radius: 999px;
  background: #fff;
  color: #5b6478;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.projects-browser__tab span {
  opacity: 0.58;
  font-weight: 500;
}

.projects-browser__tab.is-active {
  background: #4b2e85;
  border-color: #4b2e85;
  color: #fff;
}

.projects-browser__tab.is-active span {
  opacity: 0.78;
}

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

.projects-browser__empty {
  margin: 0;
  padding: 60px 20px;
  text-align: center;
  color: #8c95ae;
  font-size: 15px;
}

.project-browser-card {
  position: relative;
  min-height: 410px;
  border: 1px solid #e7e3f1;
  border-radius: 14px;
  overflow: hidden;
  background: #0e1a36;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-browser-card:hover,
.project-browser-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 30px 56px -30px rgba(14, 26, 54, 0.55);
}

.project-browser-card:focus-visible {
  outline: 2px solid #4b2e85;
  outline-offset: 4px;
}

.project-browser-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-browser-card__gallery-badge,
.project-browser-card__status {
  position: absolute;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(2px);
}

.project-browser-card__gallery-badge {
  right: 14px;
  background: rgba(14, 26, 54, 0.78);
  color: #fff;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.project-browser-card:hover .project-browser-card__gallery-badge,
.project-browser-card:focus-visible .project-browser-card__gallery-badge {
  opacity: 1;
}

.project-browser-card__status {
  left: 14px;
  color: #0e1a36;
  background: rgba(255, 255, 255, 0.94);
}

.project-browser-card__status.is-progress {
  background: rgba(178, 107, 0, 0.94);
  color: #fff;
}

.project-browser-card__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1f8a5b;
}

.project-browser-card__status.is-progress .project-browser-card__status-dot {
  background: #ffd79a;
}

.project-browser-card__info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #fff;
  padding: 16px 20px;
  transition: padding 0.28s ease;
}

.project-browser-card__pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  background: #f2eefa;
  color: #4b2e85;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.project-browser-card__title {
  margin: 0 0 5px;
  color: #0e1a36;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.project-browser-card__meta-line {
  margin: 0;
  color: #8c95ae;
  font-size: 13px;
  font-weight: 500;
}

.project-browser-card__more {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.34s ease, opacity 0.26s ease, margin-top 0.3s ease;
}

.project-browser-card:hover .project-browser-card__info,
.project-browser-card:focus-visible .project-browser-card__info {
  padding-top: 20px;
  padding-bottom: 20px;
}

.project-browser-card:hover .project-browser-card__more,
.project-browser-card:focus-visible .project-browser-card__more {
  max-height: 280px;
  margin-top: 12px;
  opacity: 1;
}

.project-browser-card__desc {
  margin: 0 0 16px;
  color: #5b6478;
  font-size: 14px;
  line-height: 1.55;
}

.project-browser-card__facts {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding-top: 15px;
  border-top: 1px solid #eeebf4;
}

.project-browser-card__fact {
  min-width: 0;
}

.project-browser-card__fact span {
  display: block;
  margin-bottom: 4px;
  color: #a79ebe;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.project-browser-card__fact strong {
  color: #0e1a36;
  font-size: 13.5px;
  font-weight: 600;
}

.project-browser-card__open {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #e2deec;
  border-radius: 10px;
  background: #fff;
  color: #4b2e85;
  font-size: 19px;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.project-browser-card:hover .project-browser-card__open,
.project-browser-card:focus-visible .project-browser-card__open,
.project-browser-card__open:hover,
.project-browser-card__open:focus-visible {
  background: #4b2e85;
  border-color: #4b2e85;
  color: #fff;
}

.cta-strip--projects {
  margin: 0;
  padding: 48px 0;
  border-top: 1px solid #e7e3f1;
  border-radius: 0;
  background: #f6f5fb;
}

.cta-strip--projects > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.project-browser-card.is-no-image {
  cursor: default;
}

.project-browser-card.is-no-image:hover,
.project-browser-card.is-no-image:focus-visible {
  transform: none;
  box-shadow: none;
}

.project-browser-card.is-no-image .project-browser-card__info {
  padding-top: 20px;
  padding-bottom: 20px;
}

.project-browser-card.is-no-image .project-browser-card__more {
  max-height: none;
  margin-top: 12px;
  opacity: 1;
}

.projects-browser__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.projects-browser__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #e2deec;
  border-radius: 10px;
  background: #fff;
  color: #4b2e85;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.projects-browser__pagination a.page-numbers:hover {
  background: #4b2e85;
  border-color: #4b2e85;
  color: #fff;
}

.projects-browser__pagination .page-numbers.current {
  background: #4b2e85;
  border-color: #4b2e85;
  color: #fff;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 3vw;
  background: rgba(8, 14, 30, 0.9);
}

.project-lightbox.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-lightbox__close,
.project-lightbox__nav,
.project-lightbox__thumb {
  border: 0;
  cursor: pointer;
}

.project-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
}

.project-lightbox__dialog {
  width: 100%;
  max-width: 1080px;
}

.project-lightbox__viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-lightbox__viewer img {
  display: block;
  width: 100%;
  max-height: 74vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
}

.project-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(14, 26, 54, 0.6);
  color: #fff;
  font-size: 20px;
  transform: translateY(-50%);
}

.project-lightbox__nav--prev {
  left: 14px;
}

.project-lightbox__nav--next {
  right: 14px;
}

.project-lightbox__meta {
  margin-top: 16px;
}

.project-lightbox__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.project-lightbox__headline > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.project-lightbox__pill {
  color: #c9bee6;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.project-lightbox__headline strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1875rem;
}

.project-lightbox__headline span {
  color: #9aa3b8;
  font-size: 13.5px;
}

.project-lightbox__counter {
  white-space: nowrap;
}

.project-lightbox__note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(201, 190, 230, 0.28);
  border-radius: 9px;
  background: rgba(75, 46, 133, 0.22);
  color: #dad3ec;
  font-size: 13px;
  line-height: 1.45;
}

.project-lightbox__thumbs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.project-lightbox__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  opacity: 0.55;
  transition: opacity 0.18s ease, border-color 0.18s ease;
}

.project-lightbox__thumb.is-active {
  border-color: #fff;
  opacity: 1;
}

.project-lightbox__thumb img {
  display: block;
  width: 70px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

.section.careers--layout-2026 {
  padding-block: 64px 72px;
  background: #fff;
}

.careers--layout-2026 > .container {
  width: calc(100% - 12vw);
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.careers__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.05fr);
  gap: 64px;
  align-items: start;
}

.careers__intro {
  max-width: 520px;
}

.careers__intro-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.careers__intro-rule {
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 26px;
  background: #4b2e85;
}

.careers__intro-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.careers__intro-text p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.62;
}

.careers__stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid #eae6f1;
}

.careers__stat {
  min-width: 0;
}

.careers__stat-value {
  display: block;
  color: #4b2e85;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 2.8vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.careers__stat-label {
  display: block;
  margin-top: 4px;
  color: #8c95ae;
  font-size: 13px;
}

.careers__card {
  padding: 44px 42px 40px;
  border-radius: 18px;
  border: 1px solid #e7e3f1;
  background: #fff;
  box-shadow: 0 30px 64px -46px rgba(14, 26, 54, 0.4);
}

.careers__card-eyebrow {
  margin-bottom: 12px;
  letter-spacing: 0.16em;
}

.careers__card-title {
  margin-bottom: 8px;
  font-size: clamp(1.875rem, 2.4vw, 1.95rem);
  letter-spacing: -0.02em;
}

.careers__card-lead {
  margin-bottom: 28px;
  font-size: 14.5px;
  line-height: 1.55;
}

.careers-form__field input,
.careers-form__field textarea,
.careers-form__file input {
  border-radius: 9px;
  background: #f6f5fb;
  border-color: #e4e0ee;
  padding: 13px 15px;
  color: #0e1a36;
  font-size: 14.5px;
}

.careers-form__field input:focus,
.careers-form__field textarea:focus,
.careers-form__file input:focus {
  border-color: #b9aed4;
  background: #fff;
}

.careers-form__file input::file-selector-button {
  background: #edeaf5;
  border-color: #ddd6ec;
  color: #4b2e85;
  border-radius: 6px;
  font-size: 12.5px;
}

.careers-form__consent {
  margin-top: 6px;
}

@media (max-width: 1180px) {
  .projects-archive__hero-grid,
  .careers__grid {
    grid-template-columns: 1fr;
  }

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

  .careers__intro {
    max-width: none;
  }

  .careers__card {
    max-width: 820px;
  }
}

@media (max-width: 900px) {
  .projects-page .container,
  .careers--layout-2026 > .container {
    width: calc(100% - 44px);
  }

  .careers--layout-2026 {
    padding-block: 56px 60px;
  }

  .careers__intro-title {
    font-size: 36px;
  }

  .projects-browser__grid {
    grid-template-columns: 1fr;
  }

  .project-browser-card__gallery-badge {
    opacity: 1;
  }

  .project-browser-card__more {
    max-height: none;
    margin-top: 12px;
    opacity: 1;
  }

  .careers__card {
    padding: 34px 26px 30px;
  }
}

@media (max-width: 640px) {
  .careers__intro-title {
    font-size: 32px;
  }

  .projects-archive--layout-2026 .page-hero {
    padding-top: 52px;
    padding-bottom: 40px;
  }

  .projects-browser {
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .project-browser-card {
    min-height: 470px;
  }

  .project-browser-card__facts {
    flex-wrap: wrap;
    gap: 16px;
  }

  .project-browser-card__open {
    margin-left: 0;
  }

  .project-lightbox {
    padding: 18px;
  }

  .project-lightbox__close {
    top: 14px;
    right: 14px;
  }

  .project-lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .careers__stats {
    flex-direction: column;
    gap: 18px;
  }
}

/* --------------------------------------------------------------------------
 * Layout novo — override principal
 * Mantém header/preloader/favicon e substitui o restante pela linguagem nova.
 * ----------------------------------------------------------------------- */

:root {
  --layout-max: 1328px;
  --layout-gutter: clamp(44px, 12vw, 172px);
}

body {
  background: #fff;
  color: #0e1a36;
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container,
.about .container,
.services-page .container,
.careers-page .container,
.legal-page .container,
.site-footer__inner {
  width: min(var(--layout-max), calc(100% - var(--layout-gutter)));
  margin-inline: auto;
}

.projects-page .container,
.careers--layout-2026 > .container,
.projects-archive--layout-2026 > .page-hero > .container,
.projects-archive--layout-2026 > .projects-browser > .container,
.projects-archive--layout-2026 > .cta-strip--projects > .container {
  width: calc(100% - 12vw);
  max-width: none;
  margin-inline: auto;
}

.site-header__inner {
  width: calc(100% - 12vw);
  max-width: none;
}

.site-footer__inner {
  width: calc(100% - 12vw);
  max-width: none;
}

.section {
  padding-block: 72px;
}

.projects-archive.projects-archive--layout-2026 {
  padding-block: 0;
}

.section.careers--layout-2026 {
  padding-block: 64px 72px;
}

.section-kicker,
.contact__eyebrow,
.careers__card-eyebrow,
.careers__card-eyebrow,
.site-footer__heading {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker,
.contact__eyebrow,
.careers__card-eyebrow {
  color: #4b2e85;
}

.section-title,
.page-hero__title,
.home-hero__title,
.contact__title,
.contact__office-title,
.founder-card__name,
.value-card__title,
.site-footer__brand,
.careers__intro-title,
.careers__card-title {
  font-family: "Archivo", "Poppins", sans-serif;
}

.page-hero {
  padding: 74px 0 58px;
  margin-bottom: 0;
}

.page-hero__title {
  max-width: 680px;
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.page-hero__lead {
  max-width: 440px;
  color: #5b6478;
  font-size: 15.5px;
  line-height: 1.6;
}

.home-hero {
  padding: 64px 0 72px;
  background: #fff;
}

.home-hero__grid {
  gap: 56px;
  align-items: center;
}

.home-hero__title {
  max-width: 620px;
  color: #0e1a36;
  font-size: clamp(3rem, 5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-hero__lead {
  max-width: 520px;
  color: #5b6478;
}

.home-hero__cta,
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4b2e85;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.18s ease;
}

.home-hero__cta:hover,
.section-link:hover {
  color: #0e1a36;
}

.home-hero__image-wrap,
.contact__office,
.contact__plugin-form,
.careers__card,
.service-block,
.cta-strip,
.project-browser-card,
.founder-card,
.value-card {
  border-radius: 18px;
}

.services--layout-2026,
.about-intro--layout-2026,
.projects-archive--layout-2026 .page-hero,
.cta-strip--projects {
  background: #f6f5fb;
}

.service-card {
  min-height: 360px;
  padding: 32px 28px;
  border: 1px solid #e7e3f1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 64px -46px rgba(14, 26, 54, 0.24);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #f2eefa;
}

.service-card__title {
  color: #0e1a36;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.service-card__tagline,
.service-card__desc,
.projects__intro,
.projects__note,
.principle-card__text,
.founder-card__role,
.founder-card__list li,
.value-card__text,
.service-block__text,
.service-block__spec dd,
.contact__lead,
.site-footer__summary,
.site-footer__list a,
.site-footer__list span {
  color: #5b6478;
  line-height: 1.6;
}

.projects {
  background: #fff;
}

.projects__intro {
  max-width: 420px;
  font-size: 15.5px;
}

.project-card {
  min-height: 430px;
  border-radius: 14px;
  border: 1px solid #e7e3f1;
}

.project-card__meta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(14, 26, 54, 0.9) 100%);
}

.project-card__title {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.principles--layout-2026 {
  background: #fff;
}

.principle-card {
  border: 1px solid #e7e3f1;
  background: #fff;
  box-shadow: 0 24px 48px -36px rgba(14, 26, 54, 0.28);
}

.contact--layout-2026 {
  background: #fff;
}

.contact__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: start;
}

.contact__intro {
  margin-bottom: 28px;
}

.contact__title {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 2.8vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.contact-form,
.careers-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.contact-form__field label,
.careers-form__field label,
.careers-form__file label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #8892a8;
}

.contact-form__field input,
.contact-form__field textarea,
.careers-form__field input,
.careers-form__field textarea,
.careers-form__file input {
  width: 100%;
  border: 1px solid #e4e0ee;
  border-radius: 9px;
  background: #f6f5fb;
  color: #0e1a36;
  font-size: 14.5px;
  padding: 13px 15px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder,
.careers-form__field input::placeholder,
.careers-form__field textarea::placeholder {
  color: #9aa0b0;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.careers-form__field input:focus,
.careers-form__field textarea:focus,
.careers-form__file input:focus {
  border-color: #b9aed4;
  background: #fff;
}

.contact-form__field textarea,
.careers-form__field textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form__consent,
.careers-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 6px;
}

.contact-form__consent span,
.careers-form__consent span {
  color: #6b7385;
  font-size: 12.5px;
  line-height: 1.5;
}

.contact-form .btn,
.careers-form__submit {
  margin-top: 8px;
  align-self: flex-start;
  min-width: 210px;
  height: 52px;
  border-radius: 9px;
  background: #4b2e85;
  border-color: #4b2e85;
  color: #fff;
}

.contact__office {
  padding: 36px 32px;
  border: 1px solid #e7e3f1;
  background: #fff;
  box-shadow: 0 30px 64px -46px rgba(14, 26, 54, 0.4);
}

.office-list__text {
  color: #3f4759;
}

.site-footer {
  background: #0e1a36;
  padding: 40px 0 24px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__summary {
  max-width: 230px;
  margin: 0;
  color: #b6bece;
  font-size: 13.5px;
}

.site-footer__social {
  gap: 9px;
}

.site-footer__social a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: transparent;
}

.site-footer__social img {
  width: 16px;
  height: 16px;
  opacity: 0.82;
}

.site-footer__heading {
  margin: 0 0 14px;
  color: #aeb6c8;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list a,
.site-footer__list span {
  color: #d8dde8;
  font-size: 14px;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  color: #aeb6c8;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.site-footer__legal a {
  color: #aeb6c8;
}

.site-footer__divider,
.site-footer__wordmark {
  display: none;
}

@media (max-width: 1180px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .container,
  .about .container,
  .services-page .container,
  .careers-page .container,
  .legal-page .container,
  .site-footer__inner {
    width: min(var(--layout-max), calc(100% - 44px));
  }

  .projects-page .container,
  .careers--layout-2026 > .container,
  .projects-archive--layout-2026 > .page-hero > .container,
  .projects-archive--layout-2026 > .projects-browser > .container,
  .projects-archive--layout-2026 > .cta-strip--projects > .container {
    width: calc(100% - 44px);
  }

  .projects-archive.projects-archive--layout-2026 {
    padding-block: 0;
  }

  .section.careers--layout-2026 {
    padding-block: 56px 60px;
  }

  .section {
    padding-block: 60px;
  }

  .contact__grid,
  .contact-form__row,
  .careers-form__row,
  .site-footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-top: 40px;
  }

  .home-hero__grid {
    gap: 28px;
  }

  .page-hero {
    padding: 52px 0 40px;
  }

  .project-card {
    min-height: 360px;
  }

  .contact__office,
  .careers__card {
    padding: 28px 22px;
  }

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

/* --------------------------------------------------------------------------
 * Home fidelity pass — screenshot-aligned sections
 * ----------------------------------------------------------------------- */

.services__head-grid,
.projects-home__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 48px;
  align-items: start;
}

.services__intro,
.projects-home__intro,
.principles__intro {
  margin: 0;
  color: #7d85a0;
  font-size: 14px;
  line-height: 1.65;
}

.projects-home--layout-2026 {
  background: #fff;
  padding-block: 58px 64px;
}

.projects-home__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.projects-home__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid #e7e3f1;
  border-radius: 999px;
  background: #fff;
  color: #8c95ae;
  font-size: 12px;
  line-height: 1;
}

.projects-home__filter.is-active {
  border-color: #4b2e85;
  background: #4b2e85;
  color: #fff;
}

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

.projects-home-card {
  overflow: hidden;
  border: 1px solid #e7e3f1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 44px -38px rgba(14, 26, 54, 0.3);
}

.projects-home-card__media {
  position: relative;
  aspect-ratio: 1.66 / 1;
  overflow: hidden;
}

.projects-home-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-home-card__tag {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 7px;
  background: #4b2e85;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

.projects-home-card__body {
  padding: 14px 14px 12px;
}

.projects-home-card__title {
  margin: 0 0 4px;
  color: #0e1a36;
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.projects-home-card__location {
  margin: 0 0 14px;
  color: #8c95ae;
  font-size: 12px;
}

.projects-home-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid #eeebf4;
}

.projects-home-card__meta strong,
.projects-home-card__meta span {
  display: block;
}

.projects-home-card__meta strong {
  color: #0e1a36;
  font-size: 22px;
  line-height: 1;
}

.projects-home-card__meta span {
  margin-top: 2px;
  color: #8c95ae;
  font-size: 10px;
  line-height: 1.3;
}

.projects-home__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.principles--layout-2026 {
  background: #f6f5fb;
  padding-block: 52px 62px;
}

.principles__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.principle-card {
  padding: 0 18px 0 0;
  border: 0;
  border-right: 1px solid #ded9eb;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.principle-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.principle-card__number {
  color: #b7aed3;
  font-size: 42px;
}

.principle-card__title {
  font-size: 18px;
}

.principle-card__text {
  font-size: 13px;
}

.contact__actions {
  display: flex;
  gap: 12px;
  margin: 0 0 22px;
}

.btn--outline {
  background: #fff;
  border: 1px solid #d7d1e5;
  color: #4b2e85;
}

.btn--outline:hover {
  background: #f6f5fb;
}

.contact__action-primary,
.contact__action-secondary {
  min-width: 0;
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 13px;
}

.contact-form {
  padding-top: 8px;
  border-top: 1px solid #e9e3f0;
}

.contact__map {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .services__head-grid,
  .projects-home__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .projects-home__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .projects-home__grid,
  .principles__grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    padding-right: 0;
    padding-bottom: 16px;
    border-right: 0;
    border-bottom: 1px solid #ded9eb;
  }

  .principle-card:last-child {
    border-bottom: 0;
  }

  .contact__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .projects-home__grid {
    grid-template-columns: 1fr;
  }

  .projects-home-card__meta strong {
    font-size: 18px;
  }
}

/* --------------------------------------------------------------------------
 * Home final — classes exclusivas para espelhar o print enviado
 * ----------------------------------------------------------------------- */

.home-shot-kicker {
  margin: 0 0 14px;
  color: #4b2e85;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-shot-title {
  margin: 0;
  color: #0e1a36;
  font-family: "Archivo", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.home-shot-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4b2e85;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.home-shot-link:hover {
  color: #0e1a36;
}

.home-shot-hero > .container,
.home-shot-services > .container,
.home-shot-projects > .container,
.home-shot-principles > .container,
.home-shot-contact > .container {
  width: calc(100% - 12vw);
  max-width: none;
}

.home-shot-hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 72px 0;
  background-image:
    linear-gradient(90deg, rgba(246, 245, 251, 0.9) 0%, rgba(246, 245, 251, 0.86) 28%, rgba(246, 245, 251, 0.72) 52%, rgba(246, 245, 251, 0.46) 76%, rgba(246, 245, 251, 0.2) 100%),
    var(--home-hero-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-shot-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 456px;
}

.home-shot-hero__title {
  max-width: 600px;
  margin: 0;
  min-height: 108px;
  color: #0e1a36;
  font-family: "Archivo", sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

html.has-reveal .home-shot-hero__title.is-type-pending {
  color: transparent;
}

.home-shot-hero__title[data-home-hero-type] {
  white-space: pre-line;
}

.home-shot-hero__title.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.85em;
  margin-left: 4px;
  background: currentColor;
  vertical-align: -0.06em;
  animation: home-hero-caret 0.75s steps(1, end) infinite;
}

@keyframes home-hero-caret {
  50% {
    opacity: 0;
  }
}

.home-shot-hero__lead {
  max-width: 460px;
  margin: 46px 0 0;
  color: #5b6478;
  font-size: 16px;
  line-height: 1.55;
}

.home-shot-hero .home-shot-link {
  margin-top: 32px;
}

.home-shot-services,
.home-shot-principles,
.home-shot-contact {
  background: #f6f5fb;
}

.home-shot-services {
  padding: 84px 0;
}

.home-shot-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 320px);
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.home-shot-sidecopy {
  margin: 0;
  color: #5b6478;
  font-size: 15px;
  line-height: 1.6;
}

.home-shot-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-shot-service-card {
  padding: 30px 28px 28px;
  border: 1px solid #e7e3f1;
  border-top: 3px solid #4b2e85;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px -22px rgba(14, 26, 54, 0.3);
}

.home-shot-service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.home-shot-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #4b2e85;
}

.home-shot-service-card__icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.home-shot-service-card__number {
  color: rgba(14, 26, 54, 0.13);
  font-family: "Archivo", sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.home-shot-service-card__title {
  margin: 0 0 12px;
  color: #0e1a36;
  font-family: "Archivo", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.home-shot-service-card__text {
  margin: 0;
  color: #5b6478;
  font-size: 14px;
  line-height: 1.55;
}

.home-shot-services__footer,
.home-shot-projects__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.home-shot-projects {
  padding: 84px 0;
  background: #fff;
}

.home-shot-projects__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.home-shot-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid #ddd8ea;
  border-radius: 999px;
  background: #fff;
  color: #5b6478;
  font-size: 12.5px;
  font-weight: 400;
  font-family: "IBM Plex Sans", sans-serif;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    filter 0.15s ease;
}

.home-shot-chip:hover {
  filter: brightness(0.97);
}

.home-shot-chip.is-active {
  border-color: #4b2e85;
  background: #4b2e85;
  color: #fff;
  font-weight: 600;
}

.home-shot-projects__empty {
  margin: 18px 0 0;
  color: #7a8296;
  font-size: 14px;
}

.home-shot-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-shot-project-card {
  overflow: hidden;
  border: 1px solid #e7e3f1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px -22px rgba(14, 26, 54, 0.5);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.home-shot-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -22px rgba(14, 26, 54, 0.5);
}

.home-shot-project-card__image-wrap {
  position: relative;
  height: 150px;
}

.home-shot-project-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-shot-project-card__badge {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 600;
}

.home-shot-project-card__badge.is-white {
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #0e1a36;
  letter-spacing: 0.06em;
}

.home-shot-project-card__badge.is-purple {
  right: 12px;
  background: #4b2e85;
  color: #fff;
}

.home-shot-project-card__body {
  padding: 20px;
}

.home-shot-project-card__title {
  margin: 0;
  color: #0e1a36;
  font-family: "Archivo", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.home-shot-project-card__place {
  margin: 3px 0 14px;
  color: #7a8296;
  font-size: 13px;
}

.home-shot-project-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid #eeeaf6;
  border-bottom: 1px solid #eeeaf6;
}

.home-shot-project-card__meta strong,
.home-shot-project-card__meta span {
  display: block;
}

.home-shot-project-card__meta strong {
  color: #0e1a36;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.home-shot-project-card__meta span {
  color: #9098ac;
  font-size: 10.5px;
  line-height: 1.35;
}

.home-shot-principles {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: #f3f2f7;
}

.home-shot-principles::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 26px;
  width: 168px;
  height: 168px;
  background: url("../images/logo-section-home.webp") center / contain no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.home-shot-principles__head {
  margin-bottom: 44px;
}

.home-shot-principles__intro {
  max-width: 560px;
  margin: 16px 0 0;
  color: #5b6478;
  font-size: 16px;
  line-height: 1.55;
}

.home-shot-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.home-shot-principle-card {
  padding: 0 28px;
  border-right: 1px solid #ded7ef;
}

.home-shot-principle-card:first-child {
  padding-left: 0;
  padding-right: 28px;
}

.home-shot-principle-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-shot-principle-card__number {
  display: block;
  margin-bottom: 18px;
  color: #a79ebe;
  font-family: "Archivo", sans-serif;
  font-size: 42px;
  font-weight: 800;
}

.home-shot-principle-card__title {
  margin: 0 0 10px;
  color: #0e1a36;
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.home-shot-principle-card__text {
  margin: 0;
  color: #5b6478;
  font-size: 13.5px;
  line-height: 1.55;
}

.home-shot-contact {
  padding: 84px 0;
}

.home-shot-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 54px;
  align-items: stretch;
}

.home-shot-contact__lead {
  max-width: 400px;
  margin: 0 0 24px;
  color: #5b6478;
  font-size: 15px;
  line-height: 1.55;
}

.home-shot-contact__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}

.home-shot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  transition:
    filter 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.home-shot-button__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9be39f;
}

.home-shot-button.is-primary {
  background: #4b2e85;
  color: #fff;
}

.home-shot-button.is-primary:hover {
  filter: brightness(1.12);
}

.home-shot-button.is-secondary {
  border: 1px solid #c9c5d8;
  background: #fff;
  color: #0e1a36;
}

.home-shot-button.is-secondary:hover {
  background: #f0edf6;
  border-color: #4b2e85;
}

.home-shot-contact__plugin-form,
.home-shot-form {
  padding-top: 24px;
  border-top: 1px solid #e2deec;
}

.home-shot-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-shot-form__field {
  margin-bottom: 16px;
}

.home-shot-form__field label {
  display: block;
  margin-bottom: 7px;
  color: #5b6478;
  font-size: 12px;
}

.home-shot-form__field input,
.home-shot-form__field textarea {
  width: 100%;
  border: 1px solid #d8d3e6;
  border-radius: 8px;
  background: #fff;
  color: #0e1a36;
  font-size: 14px;
  outline: none;
}

.home-shot-form__field input {
  height: 44px;
  padding: 0 14px;
}

.home-shot-form__field textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.home-shot-form__submit {
  margin-top: 2px;
  padding: 6px 0;
  border: 0;
  background: transparent;
}

.home-shot-office {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px;
  border: 1px solid #e7e3f1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px -22px rgba(14, 26, 54, 0.25);
}

.home-shot-office__title {
  margin: 0 0 18px;
  color: #0e1a36;
  font-family: "Archivo", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.home-shot-office__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.home-shot-office__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.home-shot-office__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #4b2e85;
  color: #fff;
}

.home-shot-office__text {
  color: #5b6478;
  font-size: 14px;
  line-height: 1.55;
}

.home-shot-office__map {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  min-height: 292px;
  border-radius: 8px;
  background: #eaeef4;
  border: 0;
}

.home-shot-office__map iframe,
.home-shot-office__map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 292px;
  border: 0;
}

.home-shot-office__map-label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 2;
  color: #8a93a8;
  font-size: 10px;
}

@media (max-width: 1180px) {
  .home-shot-principles__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-shot-principle-card {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid #ded7ef;
  }

  .home-shot-principle-card:nth-child(2n) {
    padding-left: 28px;
  }

  .home-shot-principle-card:nth-last-child(-n + 2) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    width: calc(100% - 44px);
  }

  .home-shot-hero > .container,
  .home-shot-services > .container,
  .home-shot-projects > .container,
  .home-shot-principles > .container,
  .home-shot-contact > .container {
    width: calc(100% - 44px);
  }

  .home-shot-hero {
    min-height: auto;
    padding: 40px 0;
    background-image:
      linear-gradient(90deg, rgba(246, 245, 251, 0.94) 0%, rgba(246, 245, 251, 0.86) 34%, rgba(246, 245, 251, 0.56) 62%, rgba(246, 245, 251, 0.24) 100%),
      var(--home-hero-bg);
  }

  .home-shot-hero__inner {
    min-height: 420px;
  }

  .home-shot-hero__title {
    min-height: 0;
    font-size: 40px;
  }

  .home-shot-hero__lead {
    margin-top: 30px;
  }

  .home-shot-section-head,
  .home-shot-contact__grid,
  .home-shot-services__grid,
  .home-shot-projects__grid,
  .home-shot-principles__grid,
  .home-shot-form__row {
    grid-template-columns: 1fr;
  }

  .home-shot-services,
  .home-shot-projects,
  .home-shot-principles,
  .home-shot-contact {
    padding: 64px 0;
  }

  .home-shot-section-head {
    gap: 18px;
  }

  .home-shot-principle-card {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 20px;
    border-right: 0;
    border-bottom: 1px solid #ded7ef;
  }

  .home-shot-principle-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .home-shot-office {
    height: auto;
  }

  .home-shot-office__map,
  .home-shot-office__map iframe,
  .home-shot-office__map img {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .home-shot-hero__title {
    font-size: 32px;
  }

  .home-shot-title {
    font-size: 2rem;
  }

  .home-shot-project-card__meta {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .home-shot-contact__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-shot-button {
    width: 100%;
    justify-content: center;
  }

  .home-shot-office {
    padding: 22px;
  }

  .home-shot-office__map,
  .home-shot-office__map iframe,
  .home-shot-office__map img {
    min-height: 180px;
  }
}

/* ====================================================== QUEM SOMOS 2026 */
.about .container {
  width: calc(100% - 12vw);
  max-width: none;
}

.about-intro--layout-2026 {
  padding: 0;
  background: #f6f5fb;
}

.about-intro__hero {
  padding: 74px 0 62px;
  border-bottom: 1px solid #e7e3f1;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: end;
}

.about-intro--layout-2026 .section-kicker {
  margin-bottom: 18px;
}

.about-intro--layout-2026 .page-hero__title {
  max-width: 680px;
  font-size: 50px;
}

.about-intro__lead {
  max-width: none;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: #5b6478;
}

.about-founders--layout-2026 {
  padding: 70px 0 30px;
  background: #fff;
}

.about-section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.about-section-head__line {
  flex: 1 1 auto;
  height: 1px;
  background: #eae6f1;
}

.about-founders__head {
  margin-bottom: 56px;
}

.about-founders__title,
.about-move__title,
.about-five-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0e1a36;
}

.about-founders__lead,
.about-move__lead {
  max-width: 560px;
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: #8c95ae;
}

.about-founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.about-founder {
  min-width: 0;
}

.about-founder.is-left {
  padding-right: 48px;
  border-right: 1px solid #e7e3f1;
}

.about-founder.is-right {
  padding-left: 48px;
}

.about-founder__head {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
}

.about-founder__media {
  flex: none;
  width: 150px;
  height: 186px;
  overflow: hidden;
  border-radius: 12px;
  background: #eeeaf6;
}

.about-founder__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-founder__eyebrow,
.about-move__item-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4b2e85;
}

.about-founder__name {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0e1a36;
}

.about-founder__bio {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.62;
  color: #3f4759;
}

.about-founder__cv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 56px;
}

.about-founder__full {
  grid-column: 1 / -1;
}

.about-founder__label {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeebf4;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c95ae;
}

.about-founder__stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-founder__entry-title {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  color: #0e1a36;
}

.about-founder__entry-detail {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: #6b7488;
}

.about-founder__competencies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.about-founder__competency-card {
  padding: 18px 20px;
  border: 1px solid #e7e3f1;
  border-radius: 10px;
  background: #f6f5fb;
}

.about-founder__competency-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.25;
  color: #0e1a36;
}

.about-founder__competency-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #3f4759;
}

.about-move--layout-2026 {
  padding: 112px 0 92px;
  background: #f6f5fb;
}

.about-move__head {
  margin-bottom: 50px;
}

.about-move__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-move__item {
  display: flex;
  gap: 28px;
}

.about-move__number {
  flex: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 0.9;
  color: rgba(75, 46, 133, 0.2);
}

.about-move__item-text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #1f2a44;
}

.about-five-section--layout-2026 {
  padding: 72px 0;
  background: #fff;
}

.about-five-section__title {
  margin-bottom: 40px;
  text-align: center;
}

.about-five-section__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.about-value-card {
  padding: 26px 22px;
  border: 1px solid #e7e3f1;
  border-top: 3px solid #4b2e85;
  border-radius: 12px;
  background: #fff;
}

.about-value-card__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #0e1a36;
}

.about-value-card__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #5b6478;
}

@media (max-width: 1100px) {
  .about-founders__grid,
  .about-move__grid {
    grid-template-columns: 1fr;
  }

  .about-founder.is-left {
    padding-right: 0;
    padding-bottom: 44px;
    margin-bottom: 44px;
    border-right: 0;
    border-bottom: 1px solid #e7e3f1;
  }

  .about-founder.is-right {
    padding-left: 0;
  }

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

@media (max-width: 900px) {
  .about .container {
    width: calc(100% - 44px);
  }

  .about-intro__grid,
  .about-founder__cv {
    grid-template-columns: 1fr;
  }

  .about-intro__hero {
    padding: 58px 0 48px;
  }

  .about-intro--layout-2026 .page-hero__title {
    font-size: 38px;
  }

  .about-founders--layout-2026 {
    padding: 56px 0 30px;
  }

  .about-move--layout-2026 {
    padding: 72px 0;
  }
}

@media (max-width: 680px) {
  .about-founder__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-founder__media {
    width: 148px;
    height: 184px;
  }

  .about-founder__name {
    font-size: 30px;
  }

  .about-move__item {
    gap: 20px;
  }

  .about-move__number {
    font-size: 44px;
  }

  .about-move__item-text {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .about-intro--layout-2026 .page-hero__title,
  .about-founders__title,
  .about-move__title,
  .about-five-section__title {
    font-size: 32px;
  }

  .about-section-head {
    align-items: center;
  }

  .about-founders__head,
  .about-move__head {
    margin-bottom: 36px;
  }

  .about-five-section__grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================== SERVICOS 2026 */
.services-page .container {
  width: calc(100% - 12vw);
  max-width: none;
}

.services-detail--layout-2026 {
  padding: 0;
  background: #f6f5fb;
}

.services-detail__hero {
  padding: 74px 0 62px;
  border-bottom: 1px solid #e7e3f1;
}

.services-detail__head-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: end;
}

.services-detail__hero .section-kicker {
  margin-bottom: 18px;
}

.services-detail__hero .page-hero__title {
  max-width: 640px;
  font-size: 46px;
}

.services-detail__lead {
  max-width: none;
  margin-bottom: 6px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #5b6478;
}

.services-cards-section {
  padding: 40px 0 52px;
  background: #faf9fc;
}

.services-cards-section__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-panel {
  width: 100%;
  max-width: 900px;
  padding: 34px 40px 30px;
  border: 1px solid #e7e3f1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px -38px rgba(14, 26, 54, 0.4);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.service-panel__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-panel__marker {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: #4b2e85;
  color: #fff;
}

.service-panel__audience {
  margin: 0;
  padding: 7px 13px;
  border-radius: 20px;
  background: #f2eefa;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #4b2e85;
}

.service-panel__number {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: rgba(14, 26, 54, 0.09);
}

.service-panel__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0e1a36;
}

.service-panel__summary {
  max-width: 760px;
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: #3f4759;
}

.service-panel__summary strong {
  font-weight: 600;
  color: #0e1a36;
}

.service-panel__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eeebf4;
}

.service-panel__meta-col {
  min-width: 0;
}

.service-panel__meta-col + .service-panel__meta-col {
  padding-left: 28px;
  border-left: 1px solid #eeebf4;
}

.service-panel__meta-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.09em;
  color: #4b2e85;
}

.service-panel__meta-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4b2e85;
}

.service-panel__meta-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #454e62;
}

.services-cta-strip {
  padding: 48px 0;
  border-top: 1px solid #e7e3f1;
  background: #f6f5fb;
}

.services-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.services-cta-strip__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0e1a36;
}

.services-cta-strip__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #5b6478;
}

.services-cta-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  color: #4b2e85;
  transition: color 0.15s ease;
}

.services-cta-strip__link:hover {
  color: #0e1a36;
}

@media (max-width: 960px) {
  .service-panel__meta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-panel__meta-col + .service-panel__meta-col {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .services-page .container {
    width: calc(100% - 44px);
  }

  .services-detail__head-grid {
    grid-template-columns: 1fr;
  }

  .services-detail__hero {
    padding: 58px 0 48px;
  }

  .services-detail__hero .page-hero__title {
    font-size: 38px;
  }

  .service-panel {
    padding: 30px 24px 28px;
  }

  .service-panel__top {
    flex-wrap: wrap;
  }

  .service-panel__title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .services-cta-strip__inner {
    align-items: flex-start;
  }

  .services-cta-strip__link {
    white-space: normal;
  }
}
