/* ============================================================
   INDESIGNS � Landing Page
   Sistema de Design Premium � Bras�lia Modernista Contempor�neo
   ============================================================ */

/* Fontes oficiais da marca */
@font-face {
  font-family: 'KyivType Sans';
  src: url('assets/fonts/KyivTypeSans-Medium3.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sweet Sans Pro';
  src: url('assets/fonts/SweetSansProRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sweet Sans Pro';
  src: url('assets/fonts/SweetSansProMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* -- RESET --------------------------------------------------- */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--offwhite);
  color: var(--petroleo);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* -- VARI�VEIS ------------------------------------------------ */

:root {
  /* Paleta oficial da marca */
  --petroleo:  #173a4a;
  --teal:      #3c6e71;
  --sage:      #8ab0ab;
  --greige:    #d1d3c4;
  --offwhite:  #ececea;

  /* Tons operacionais sempre ancorados na paleta oficial */
  --petroleo-dark:  var(--petroleo);
  --petroleo-mid:   var(--teal);
  --teal-dim:       rgba(60, 110, 113, 0.18);
  --offwhite-dim:   rgba(236, 236, 234, 0.08);

  /* Tipografia oficial da marca */
  --font-headline: 'KyivType Sans', Arial, sans-serif;
  --font-label:    'Sweet Sans Pro', 'Montserrat', Arial, sans-serif;
  --font-body:     'Montserrat', Arial, sans-serif;

  /* Transi��es */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-premium: cubic-bezier(0.19, 1, 0.22, 1);
  --t-fast:     0.2s;
  --t-med:      0.35s;
  --t-slow:     0.75s;

  /* Layout */
  --container:     1200px;
  --section-gap:   130px;
  --nav-h:         82px;

  /* Respiração */
  --gap-sm: 88px;
  --gap-md: 144px;
  --gap-lg: 200px;
}

/* -- CONTAINER ------------------------------------------------ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* -- TIPOGRAFIA GLOBAL ---------------------------------------- */

.label {
  font-family: var(--font-label);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
}

.section-header {
  margin-bottom: 56px;
}

.section-header .label {
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--petroleo);
}

.section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--petroleo);
  opacity: 0.6;
  line-height: 1.75;
  margin-top: 22px;
}

/* -- BOT�ES --------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  transition: background 0.55s var(--ease-premium),
              color 0.55s var(--ease-premium),
              border-color 0.55s var(--ease-premium),
              transform 0.55s var(--ease-premium);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--teal);
  color: var(--offwhite);
}
.btn--primary:hover {
  background: var(--petroleo);
}

.btn--light {
  background: var(--offwhite);
  color: var(--petroleo);
}
.btn--light:hover {
  background: var(--greige);
}

.btn--outline {
  background: transparent;
  color: var(--sage);
  border: 1px solid rgba(138, 176, 171, 0.45);
}
.btn--outline:hover {
  background: var(--sage);
  color: var(--petroleo);
  border-color: var(--sage);
}

/* -- ANIMA��ES DE SCROLL -------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-spring),
              transform var(--t-slow) var(--ease-spring);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease-spring),
              transform 0.9s var(--ease-spring);
}

/* ============================================================
   NAVEGA��O
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.6s ease,
              box-shadow 0.6s ease;
}

.nav.is-scrolled {
  background: var(--petroleo);
  box-shadow: 0 1px 0 rgba(60, 110, 113, 0.18);
}

.nav__container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left logo right";
  align-items: center;
  padding: 0 clamp(24px, 4vw, 56px);
  height: var(--nav-h, 64px);
}

.nav__links--left {
  grid-area: left;
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  justify-content: flex-end;
  padding-right: clamp(24px, 3vw, 48px);
}

.nav__logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t-fast);
}
.nav__logo:hover { opacity: 0.72; }

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__links--right {
  grid-area: right;
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(24px, 3vw, 48px);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(236, 236, 234, 0.6);
  text-transform: uppercase;
  transition: color var(--t-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--t-med) var(--ease);
  transform-origin: left;
}
.nav__link:hover { color: var(--offwhite); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link--cta {
  color: var(--sage);
  border: 1px solid rgba(138, 176, 171, 0.35);
  padding: 9px 18px;
  transition: color 0.5s var(--ease-premium),
              background 0.5s var(--ease-premium),
              border-color 0.5s var(--ease-premium);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  color: var(--offwhite);
  background: var(--teal);
  border-color: var(--teal);
}

.nav__toggle {
  display: none;
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--offwhite);
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast);
}
.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(23, 58, 74, 0.5);
  z-index: 899;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.nav__backdrop.visible {
  opacity: 1;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  max-height: 900px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 60%;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(23, 58, 74, 0.55) 0%,
      rgba(23, 58, 74, 0) 18%
    ),
    linear-gradient(
      to right,
      rgba(23, 58, 74, 0.96) 0%,
      rgba(23, 58, 74, 0.75) 30%,
      rgba(23, 58, 74, 0.30) 55%,
      rgba(23, 58, 74, 0) 75%
    );
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 5vw, 72px) clamp(40px, 6vw, 96px);
}

.hero__top {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero__brand-logo {
  width: clamp(160px, 18vw, 260px);
  height: auto;
  display: block;
  opacity: 0.95;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero__headline {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--offwhite);
}

.hero__headline em {
  font-style: italic;
}

.hero__scroll-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(236, 236, 234, 0.65);
  letter-spacing: 0.03em;
  transition: color 0.5s var(--ease-premium), transform 0.5s var(--ease-premium);
}

.hero__scroll-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.34);
  transform-origin: left;
  opacity: 0.42;
  transition: transform 0.65s var(--ease-premium), opacity 0.65s var(--ease-premium);
}

.hero__scroll-link:hover {
  color: var(--offwhite);
  transform: translateX(5px);
}

.hero__scroll-link:hover::after {
  transform: scaleX(1);
  opacity: 0.75;
}

.hero__meta {
  color: rgba(236, 236, 234, 0.38);
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
}

.hero__meta .sep { color: rgba(236, 236, 234, 0.25); }

.hero__left,
.hero__right {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    max-height: none;
    height: 100svh;
  }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(23, 58, 74, 0.5) 0%,
      rgba(23, 58, 74, 0.85) 70%,
      rgba(23, 58, 74, 0.95) 100%
    );
  }
  .hero__brand-logo {
    width: clamp(120px, 40vw, 180px);
  }
}

/* ============================================================
   PORTF�LIO
   ============================================================ */

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

.portfolio__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 72px;
  align-items: start;
}

.portfolio__card {
  cursor: pointer;
}

.portfolio__img-wrap {
  overflow: hidden;
  position: relative;
}

.portfolio__img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  position: relative;
  transition: transform 0.75s var(--ease);
  background-size: cover;
  background-position: center;
}
.portfolio__card:not(.portfolio__card--main) .portfolio__img {
  aspect-ratio: 3 / 4;
}

/* Card Orbis � imagem real */
.portfolio__img--orbis {
  background-image: url('assets/projects/orbis/cover.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--petroleo);
}

/* Placeholders de cor � projetos sem foto ainda */
.portfolio__img--01 {
  background: linear-gradient(145deg, var(--petroleo) 0%, var(--teal) 100%);
}
.portfolio__img--02 {
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  background-color: var(--greige);
}
.portfolio__img--03 {
  background: linear-gradient(145deg, var(--teal) 0%, var(--sage) 100%);
}

.portfolio__card:hover .portfolio__img {
  transform: scale(1.04);
}

.portfolio__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 58, 74, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.portfolio__card:hover .portfolio__img-overlay {
  opacity: 1;
}

.portfolio__view-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--offwhite);
  text-transform: uppercase;
}

.portfolio__info {
  padding: 20px 0 4px;
}

.portfolio__category {
  display: inline-flex;
  margin-bottom: 12px;
  font-family: var(--font-label);
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio__name {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 400;
  color: var(--petroleo);
  letter-spacing: -0.01em;
  margin-bottom: 9px;
}

.portfolio__type {
  font-size: 10px;
}

/* Efeito de desfoque nos cards n�o focados */
.portfolio__grid:has(.portfolio__card:hover) .portfolio__card:not(:hover) {
  opacity: 0.5;
  transition: opacity var(--t-med) var(--ease);
}
.portfolio__card {
  transition: opacity var(--t-med) var(--ease);
}

.portfolio__note {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--petroleo);
  opacity: 0.62;
  line-height: 1.8;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

/* ============================================================
   PROCESSO
   ============================================================ */

.processo {
  position: relative;
  z-index: 4;
  background: var(--offwhite);
  border-radius: 16px 16px 0 0;
  margin-top: -24px;
  box-shadow: 0 -12px 40px rgba(23, 58, 74, 0.18);
  padding: clamp(48px, 5vw, 64px) 0 clamp(142px, 14vw, 196px);
  scroll-margin-top: var(--nav-h);
}

.processo .section-header {
  margin-bottom: 32px;
}

.processo__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px) clamp(24px, 3vw, 40px);
  position: relative;
}

/* Linha conectora entre etapas */
.processo__step {
  padding-right: 36px;
}
.processo__step:last-child {
  padding-right: 0;
}

.processo__num {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--teal);
  opacity: 0.5;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.processo__step {
  border-top: 1px solid rgba(23, 58, 74, 0.1);
  padding-top: 28px;
}

.processo__title {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 400;
  color: var(--petroleo);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.processo__text {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--petroleo);
  opacity: 0.72;
  line-height: 1.85;
}

.processo__entrega {
  display: block;
  margin-top: 20px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.8;
}

/* ============================================================
   SOBRE
   ============================================================ */

.sobre {
  position: relative;
  z-index: 5;
  border-radius: 16px 16px 0 0;
  margin-top: -16px;
  box-shadow: 0 -12px 40px rgba(23, 58, 74, 0.12);
  padding: clamp(40px, 4vw, 56px) 0 clamp(64px, 6vw, 96px);
  margin-bottom: 0;
  background-color: var(--greige);
  scroll-margin-top: var(--nav-h);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 96px;
  align-items: start;
}

.sobre__img-col {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.sobre__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 80px rgba(23, 58, 74, 0.20), 0 8px 28px rgba(23, 58, 74, 0.12);
  outline: 1px solid rgba(60, 110, 113, 0.36);
  outline-offset: 10px;
}

.sobre__img {
  transition: transform 1.4s var(--ease-premium);
}

.sobre__img-wrap:hover .sobre__img {
  transform: scale(1.025);
}

/* Detalhe de linha teal na borda esquerda */
.sobre__img-wrap::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 0;
  bottom: 10%;
  width: 3px;
  background: var(--teal);
  opacity: 0.75;
  z-index: 2;
}

/* Placeholder para foto */
.sobre__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    var(--petroleo-mid) 0%,
    var(--petroleo) 50%,
    var(--petroleo-dark) 100%
  );
  position: relative;
}


.sobre__tag {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sobre__tag span {
  font-family: var(--font-label);
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.09em;
}

.sobre__content {
  padding-top: 8px;
}

.sobre__name {
  font-family: var(--font-headline);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--petroleo);
  letter-spacing: -0.02em;
  line-height: 1.03;
  margin-bottom: 6px;
}

.sobre__divider {
  width: 72px;
  height: 1px;
  background: var(--teal);
  margin-bottom: 40px;
}

.sobre__text p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--petroleo);
  line-height: 1.85;
  opacity: 0.82;
  margin-bottom: 24px;
}
.sobre__text p:last-child { margin-bottom: 0; }

.sobre__dropcap {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.15em;
  color: var(--teal);
  margin-right: 1px;
}

.sobre__marginalia {
  display: block;
  margin-top: 40px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 58, 74, 0.38);
  padding-top: 20px;
  border-top: 1px solid rgba(23, 58, 74, 0.1);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */

.depoimentos {
  padding: var(--section-gap) 0;
  background-color: var(--greige);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.depoimento {
  padding: 44px 36px 40px;
  background: var(--offwhite);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Borda teal no topo */
.depoimento::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
}

.depoimento__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--petroleo);
  opacity: 0.72;
  line-height: 1.85;
  flex: 1;
}

.depoimento__author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.depoimento__name {
  font-family: var(--font-label);
  font-size: 12.5px;
  font-weight: 500;
  font-style: normal;
  color: var(--petroleo);
}

.depoimento__project {
  font-family: var(--font-label);
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.07em;
}

.depoimentos__note {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--petroleo);
  opacity: 0.52;
  line-height: 1.8;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   CTA FINAL + FORMUL�RIO
   ============================================================ */

.cta-section {
  position: relative;
  z-index: 6;
  border-radius: 16px 16px 0 0;
  margin-top: -48px;
  box-shadow: 0 -12px 40px rgba(23, 58, 74, 0.25);
  padding: 80px 0 128px;
  background-color: var(--petroleo);
  overflow: hidden;
}

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

.cta-section__header {
  margin-bottom: 56px;
}

.cta-section__label {
  color: var(--teal);
  margin-bottom: 20px;
}

.cta-section__headline {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  line-height: 1.06;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-wrap: balance;
}

.cta-section__sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.7;
}

/* FORMUL�RIO */
.cta-form {
  text-align: left;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-form__group--full {
  grid-column: span 2;
}

.cta-form__label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(138, 176, 171, 0.58);
  text-transform: uppercase;
}

.cta-form__input {
  width: 100%;
  padding: 14px 18px;
  background: var(--offwhite-dim);
  border: 1px solid rgba(138, 176, 171, 0.2);
  border-radius: 0;
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--t-med) var(--ease),
              background var(--t-med) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.cta-form__input::placeholder {
  color: rgba(138, 176, 171, 0.32);
}

.cta-form__input:focus {
  border-color: var(--teal);
  background: rgba(60, 110, 113, 0.1);
}

.cta-form__input:focus-visible {
  outline: none;
}

.cta-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238ab0ab' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cta-form__select option {
  background: var(--petroleo);
  color: var(--offwhite);
}

.cta-form__textarea {
  resize: none;
  min-height: 96px;
  line-height: 1.6;
}

.cta-form__footer {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.cta-form__pills--compact {
  min-height: 48px;
  flex-wrap: nowrap;
}

.cta-form__pills--compact .cta-form__pill span {
  padding: 13px 10px;
  text-align: center;
  white-space: nowrap;
}

/* Mensagem de sucesso */
.cta-form__success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--teal-dim);
}
.cta-form__success.visible {
  display: block;
}
.cta-form__success h3 {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 400;
  color: var(--offwhite);
  margin-bottom: 14px;
}
.cta-form__success p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.7;
}

/* CONTATOS DISCRETOS */
.cta-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 44px;
  border-top: 1px solid rgba(138, 176, 171, 0.12);
  flex-wrap: wrap;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 40px;
  opacity: 0.5;
  transition: opacity var(--t-med) var(--ease);
}

.cta-contact:hover {
  opacity: 1;
}

.cta-contact__label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}

.cta-contact__value {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--sage);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
}

.cta-contact:hover .cta-contact__value {
  color: var(--offwhite);
}

.cta-contacts__sep {
  width: 1px;
  height: 28px;
  background: rgba(138, 176, 171, 0.18);
  flex-shrink: 0;
}

/* ============================================================
   SERVI�OS HOME (resumo)
   ============================================================ */

.servicos-home {
  position: relative;
  z-index: 3;
  background: var(--petroleo);
  border-radius: 16px 16px 0 0;
  margin-top: -16px;
  box-shadow: 0 -12px 40px rgba(23, 58, 74, 0.35);
  padding: clamp(80px, 10vw, 140px) 0;
}

.servicos-home__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.servicos-home__label {
  color: rgba(138, 176, 171, 0.6);
  display: block;
  margin-bottom: 10px;
}

.servicos-home__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.servicos-home__accordion {
  border-top: 0.5px solid rgba(236, 236, 234, 0.1);
}

.servico-accordion__item {
  border-bottom: 0.5px solid rgba(236, 236, 234, 0.08);
}

.servico-accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.servico-accordion__trigger:hover {
  background: rgba(236, 236, 234, 0.03);
}

.servico-accordion__trigger[aria-expanded="true"] {
  background: rgba(236, 236, 234, 0.04);
}

.servico-accordion__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.servico-accordion__num {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--teal);
  opacity: 1;
  min-width: 24px;
}

.servico-accordion__trigger[aria-expanded="true"] .servico-accordion__num {
  opacity: 1;
}

.servico-accordion__title {
  font-family: var(--font-headline);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 400;
  color: var(--offwhite);
  letter-spacing: -0.01em;
}

.servico-accordion__icon {
  font-size: 22px;
  color: rgba(236, 236, 234, 0.3);
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}

.servico-accordion__trigger[aria-expanded="true"] .servico-accordion__icon {
  color: var(--teal);
  transform: rotate(45deg);
}

.servico-accordion__body {
  display: none;
  padding: 0 0 24px 44px;
}

.servico-accordion__body.is-open {
  display: block;
}

.servico-accordion__text {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(236, 236, 234, 0.55);
  line-height: 1.8;
  margin: 0 0 10px;
  max-width: 540px;
}

.servico-accordion__note {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(138, 176, 171, 0.55);
  display: block;
}

.servicos-home__footer {
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: clamp(20px, 2vw, 28px);
  border-top: 0.5px solid rgba(236, 236, 234, 0.08);
  display: flex;
  justify-content: flex-end;
}

.servicos-home__footer span {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(236, 236, 234, 0.25);
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petroleo);
  border: 1px solid rgba(23, 58, 74, 0.35);
  border-radius: 2px;
  transition: border-color 0.25s, background-color 0.25s, color 0.25s;
}

.btn--outline:hover {
  border-color: var(--teal);
  background-color: rgba(60, 110, 113, 0.06);
  color: var(--teal);
}

@media (max-width: 768px) {
  .servicos-home__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 56px 0;
  background-color: var(--petroleo-dark);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__logo-lockup::after {
  content: 'INDESIGNS';
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--offwhite);
  line-height: 1;
  display: none;
}

.footer__logo {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--offwhite);
  text-transform: uppercase;
}

.footer__tagline {
  font-family: var(--font-label);
  font-size: 10px;
  color: var(--sage);
  letter-spacing: 0.07em;
  opacity: 0.62;
  margin-top: 6px;
}

.footer__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.footer__links a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--offwhite);
  opacity: 0.42;
  text-transform: uppercase;
  transition: opacity var(--t-fast), color var(--t-fast), letter-spacing var(--t-med) var(--ease);
}
.footer__links a:hover {
  opacity: 1;
  color: var(--sage);
  letter-spacing: 0.12em;
}

.footer__divider {
  height: 1px;
  background: rgba(236, 236, 234, 0.1);
  margin-bottom: 24px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--offwhite);
  opacity: 0.28;
}

/* ============================================================
   RESPONSIVO � TABLET (= 960px)
   ============================================================ */

@media (max-width: 960px) {
  :root {
    --section-gap: 88px;
  }

  .container {
    padding: 0 36px;
  }

  .nav__container {
    padding: 0 36px;
  }

  .portfolio__grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio__card--main {
    grid-column: span 2;
  }
  .portfolio__card--main .portfolio__img {
    aspect-ratio: 16 / 9;
  }

  .processo__steps {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
  }
  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .sobre__img-col {
    position: static;
  }
  .sobre__img-wrap {
    aspect-ratio: 4 / 3;
    max-width: 480px;
  }

  .depoimentos__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-form__row {
    grid-template-columns: 1fr;
  }
  .cta-form__group--full {
    grid-column: span 1;
  }
}

/* ============================================================
   RESPONSIVO � MOBILE (= 600px)
   ============================================================ */

@media (max-width: 600px) {
  :root {
    --section-gap: 72px;
    --nav-h: 74px;
  }

  .container {
    padding: 0 24px;
  }

  .nav__container {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo . toggle";
    padding: 0 22px;
  }

  .nav__links--left,
  .nav__links--right {
    display: none;
  }

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

  .nav__logo-img {
    height: 36px;
  }

  .nav__toggle {
    display: flex;
    position: static;
    grid-area: toggle;
  }

  /* Menu mobile � gaveta lateral */
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 82vw);
    background: rgba(23, 58, 74, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 80px 40px 60px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1000;
  }
  .nav__links.open {
    transform: translateX(0);
  }
  .nav__link {
    font-size: 14px;
    color: rgba(236, 236, 234, 0.75);
  }
  .nav__link--cta {
    padding: 12px 24px;
  }

  .nav__backdrop {
    display: block;
  }

  .hero__headline {
    font-size: clamp(32px, 7.5vw, 48px);
    max-width: none;
  }
  .hero__content {
    padding: 0 24px 88px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
  .portfolio__card--main {
    grid-column: span 1;
  }
  .portfolio__card--main .portfolio__img,
  .portfolio__card .portfolio__img {
    aspect-ratio: 4 / 3;
  }

  .processo__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__img-wrap {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .cta-section {
    padding: 96px 0 80px;
  }

  .cta-contacts {
    flex-direction: column;
    gap: 0;
  }
  .cta-contacts__sep {
    width: 28px;
    height: 1px;
    margin: 4px 0;
  }
  .cta-contact {
    padding: 10px 24px;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* -- Fallback para :has() em browsers antigos -- */
@supports not selector(:has(+ *)) {
  .portfolio__card {
    transition: opacity var(--t-med) var(--ease);
  }
}

/* ============================================================
   EXTENS�ES � Logo SVG, Ghost Hero, Refinamentos Editoriais
   ============================================================ */

/* -- NAV: Logo com s�mbolo SVG ------------------------------- */

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  width: clamp(168px, 15vw, 224px);
  min-height: 42px;
}

.nav__logo::after {
  display: none;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__symbol {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.nav__sep {
  display: block;
  width: 1px;
  height: 17px;
  background: rgba(138, 176, 171, 0.22);
  flex-shrink: 0;
}

.nav__wordmark {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--offwhite);
  text-transform: uppercase;
}

/* -- HERO: S�mbolo fantasma ----------------------------------- */

/* -- HERO: Label SCROLL ---------------------------------------- */

/* -- PORTFOLIO: Descri��o experiencial ------------------------ */

.portfolio__desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 300;
  font-style: italic;
  color: var(--petroleo);
  opacity: 0.46;
  line-height: 1.65;
  margin-top: 8px;
}

/* -- CTA: Nota de retorno ------------------------------------- */

.cta-section__sub-note {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.6;
}

/* -- CTA: Frase emocional acima do formul�rio --------------- */

.cta-section__impulse {
  font-family: var(--font-headline);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: rgba(138, 176, 171, 0.72);
  line-height: 1.55;
  margin-bottom: 52px;
  letter-spacing: 0.01em;
}

/* -- FOOTER: Assinatura completa ------------------------------ */

.footer__logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

/* -- RESPONSIVO: Ghost hero em mobile ------------------------- */

/* ============================================================
   SOBRE � Foto real
   ============================================================ */

.sobre__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sobre__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    var(--petroleo-mid) 0%,
    var(--petroleo) 50%,
    var(--petroleo-dark) 100%
  );
}

/* ============================================================
   PROJETO EM DESTAQUE � CL�NICA ORBIS
   ============================================================ */

.orbis {
  padding: var(--section-gap) 0;
  background-color: var(--petroleo-dark);
  overflow: hidden;
  position: relative;
}

.orbis__intro {
  margin-bottom: 56px;
}

.orbis__label {
  color: var(--teal);
  margin-bottom: 24px;
}

.orbis__title-row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
}

.orbis__name {
  font-family: var(--font-headline);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--offwhite);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.orbis__meta {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--sage);
  text-transform: uppercase;
  opacity: 0.65;
}

/* Imagem hero � full-width com container ligeiramente extendido */
.orbis__hero-wrap {
  margin: 0 0 64px;
  overflow: hidden;
  position: relative;
}

.orbis__hero-img {
  width: 100%;
  height: clamp(360px, 52vw, 680px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.orbis__hero-placeholder {
  width: 100%;
  height: clamp(360px, 52vw, 680px);
  background: linear-gradient(
    160deg,
    var(--teal) 0%,
    var(--petroleo) 45%,
    var(--petroleo) 100%
  );
  position: relative;
  display: none; /* oculto � s� aparece se a tag <img> n�o estiver presente */
}

/* Linha de detalhe teal na base da imagem hero */
.orbis__hero-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--teal) 20%,
    var(--teal) 80%,
    transparent
  );
  opacity: 0.45;
}

/* Grid corpo � texto + galeria */
.orbis__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 64px;
}

.orbis__text p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: rgba(236, 236, 234, 0.8);
  line-height: 1.85;
  margin-bottom: 28px;
}
.orbis__text p:first-child {
  font-size: 22px;
  color: var(--offwhite);
  line-height: 1.5;
  font-weight: 300;
}
.orbis__text p:last-child {
  margin-bottom: 0;
}

/* Galeria de detalhes � 2 imagens empilhadas */
.orbis__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.orbis__img-wrap {
  overflow: hidden;
}

.orbis__img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease);
}

.orbis__img-wrap:hover img {
  transform: scale(1.04);
}

.orbis__img-placeholder--a,
.orbis__img-placeholder--b {
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--teal) 0%, var(--petroleo) 100%);
  position: relative;
}

.orbis__img-placeholder--b {
  background: linear-gradient(145deg, var(--teal) 0%, var(--sage) 100%);
  opacity: 0.6;
}

/* Metadata do projeto */
.orbis__footer {
  display: flex;
  gap: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(138, 176, 171, 0.14);
  flex-wrap: wrap;
}

.orbis__tag {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.orbis__tag-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--offwhite);
  opacity: 0.72;
}

/* -- Orbis responsivo ---------------------------------------- */

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

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

  .orbis__text p:first-child {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .orbis__title-row {
    flex-direction: column;
    gap: 10px;
  }

  .orbis__body {
    gap: 40px;
  }

  .orbis__footer {
    gap: 32px;
  }

  .orbis__text p {
    font-size: 16px;
  }

  .orbis__text p:first-child {
    font-size: 18px;
  }
}

/* -- Orbis: assinatura do slogan ------------------------------ */

.orbis__sign {
  padding-top: 48px;
  text-align: right;
}

.orbis__sign em {
  font-family: var(--font-headline);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  font-weight: 300;
  color: var(--sage);
  opacity: 0.55;
  letter-spacing: 0.01em;
}

/* -- Portfolio: card Noroeste com imagem real ----------------- */

.portfolio__img--noroeste {
  background-image: url('assets/projects/noroeste/cover.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--teal);
}

/* ============================================================
   PROJETO EM DESTAQUE � RESID�NCIA NOROESTE
   ============================================================ */

.noroeste {
  padding: var(--section-gap) 0;
  background-color: var(--offwhite);
  overflow: hidden;
  position: relative;
}

.noroeste__intro {
  margin-bottom: 56px;
}

.noroeste__label {
  color: var(--teal);
  margin-bottom: 24px;
}

.noroeste__title-row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
}

.noroeste__name {
  font-family: var(--font-headline);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--petroleo);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.noroeste__meta {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--sage);
  text-transform: uppercase;
  opacity: 0.65;
}

.noroeste__hero-wrap {
  margin: 0 0 64px;
  overflow: hidden;
  position: relative;
}

.noroeste__hero-img {
  width: 100%;
  height: clamp(320px, 46vw, 600px);
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.noroeste__hero-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--teal) 20%,
    var(--teal) 80%,
    transparent
  );
  opacity: 0.45;
}

.noroeste__body {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.noroeste__text p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(23, 58, 74, 0.72);
  line-height: 1.9;
  margin-bottom: 26px;
}

.noroeste__text p:first-child {
  font-size: 21px;
  color: var(--petroleo);
  line-height: 1.55;
  font-weight: 300;
}

.noroeste__text p:last-child {
  margin-bottom: 0;
}

.noroeste__palette-img-wrap {
  overflow: hidden;
}

.noroeste__palette-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease);
}

.noroeste__palette-img-wrap:hover img {
  transform: scale(1.03);
}

.noroeste__palette-label {
  margin-top: 14px;
  color: var(--teal);
}

.noroeste__rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.noroeste__room {
  overflow: hidden;
}

.noroeste__room img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease);
}

.noroeste__room:hover img {
  transform: scale(1.04);
}

.noroeste__room-label {
  margin-top: 12px;
  color: var(--teal);
}

.noroeste__footer {
  display: flex;
  gap: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(23, 58, 74, 0.10);
  flex-wrap: wrap;
}

.noroeste__tag {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.noroeste__tag-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--petroleo);
  opacity: 0.65;
}

.noroeste__sign {
  padding-top: 48px;
  text-align: right;
}

.noroeste__sign em {
  font-family: var(--font-headline);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
  opacity: 0.48;
  letter-spacing: 0.01em;
}

/* -- Slogan accent � divisor entre copy e galeria ----------- */

.noroeste__slogan-accent {
  text-align: center;
  padding: 56px 0 60px;
  border-top: 1px solid rgba(23, 58, 74, 0.08);
  border-bottom: 1px solid rgba(23, 58, 74, 0.08);
  margin-bottom: 72px;
}

.noroeste__slogan-accent em {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.2vw, 48px);
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
  opacity: 0.62;
  letter-spacing: 0.01em;
}

/* ============================================================
   PROJETO � COBERTURA 116 SUL
   ============================================================ */

.cobertura {
  padding: var(--section-gap) 0;
  background-color: var(--petroleo);
  overflow: hidden;
}

.cobertura__intro {
  margin-bottom: 56px;
}

.cobertura__label {
  margin-bottom: 24px;
}

.cobertura__title-row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
}

.cobertura__name {
  font-family: var(--font-headline);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--offwhite);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.cobertura__meta {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--sage);
  text-transform: uppercase;
  opacity: 0.7;
}

.cobertura__hero-wrap {
  margin: 0 0 64px;
  overflow: hidden;
}

.cobertura__hero-img {
  width: 100%;
  height: clamp(320px, 46vw, 600px);
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.cobertura__body {
  max-width: 760px;
}

.cobertura__body p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(236, 236, 234, 0.68);
  line-height: 1.9;
  margin-bottom: 26px;
}

.cobertura__body p:first-child {
  font-size: 21px;
  color: var(--offwhite);
  line-height: 1.55;
}

.cobertura__body p:last-child {
  margin-bottom: 0;
}

.cobertura__label {
  color: var(--sage);
}

/* -- Noroeste responsivo ------------------------------------ */

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

  .noroeste__text p:first-child {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .noroeste__title-row {
    flex-direction: column;
    gap: 10px;
  }

  .noroeste__rooms {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .noroeste__room img {
    aspect-ratio: 16 / 9;
  }

  .noroeste__footer {
    gap: 32px;
  }

  .noroeste__text p {
    font-size: 16px;
  }

  .noroeste__text p:first-child {
    font-size: 18px;
  }
}

/* ============================================================
   SHOWCASE DE PROJETOS � Editorial cinematic
   ============================================================ */

.showcase {
  --sc-bg:         var(--offwhite);
  --sc-title:      var(--petroleo);
  --sc-text:       rgba(23, 58, 74, 0.60);
  --sc-accent:     var(--teal);
  --sc-link:       var(--petroleo);
  --sc-border:     rgba(23, 58, 74, 0.10);
  --sc-dot-bg:     rgba(23, 58, 74, 0.18);
  --sc-dot-active: var(--teal);

  position: relative;
  z-index: 2;
  background-color: var(--sc-bg);
  border-radius: 16px 16px 0 0;
  margin-top: -24px;
  box-shadow: 0 -12px 40px rgba(23, 58, 74, 0.18);
  transition: background-color 0.8s var(--ease);
  overflow: hidden;
}

.showcase[data-theme="dark"] {
  --sc-bg:         var(--petroleo-dark);
  --sc-title:      var(--offwhite);
  --sc-text:       rgba(236, 236, 234, 0.65);
  --sc-accent:     var(--sage);
  --sc-link:       var(--sage);
  --sc-border:     rgba(138, 176, 171, 0.18);
  --sc-dot-bg:     rgba(138, 176, 171, 0.22);
  --sc-dot-active: var(--sage);
}

.showcase[data-theme="warm"] {
  --sc-bg:         var(--greige);
  --sc-title:      var(--petroleo);
  --sc-text:       rgba(23, 58, 74, 0.60);
  --sc-accent:     var(--teal);
  --sc-link:       var(--petroleo);
  --sc-border:     rgba(23, 58, 74, 0.10);
  --sc-dot-bg:     rgba(23, 58, 74, 0.18);
  --sc-dot-active: var(--teal);
}

.showcase__wrap {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: clamp(580px, 82vh, 920px);
}

.showcase__panel {
  padding: clamp(64px, 8vw, 128px) clamp(40px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.showcase__panel-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.showcase__counter {
  color: var(--sc-accent);
  opacity: 0.45;
}

.showcase__category {
  color: var(--sc-accent);
  transition: color 0.5s var(--ease);
}

.showcase__title {
  font-family: var(--font-headline);
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 400;
  color: var(--sc-title);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: 18px;
  transition: color 0.5s var(--ease), opacity 0.35s var(--ease);
}

.showcase__place {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sc-accent);
  opacity: 0.62;
  margin-bottom: 28px;
  transition: color 0.5s var(--ease);
}

.showcase__narrative {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--sc-text);
  max-width: 360px;
  margin-bottom: 44px;
  transition: color 0.5s var(--ease), opacity 0.35s var(--ease);
}

.showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sc-link);
  opacity: 0.65;
  transition: opacity var(--t-med) var(--ease),
              gap var(--t-med) var(--ease),
              color 0.5s var(--ease);
  margin-bottom: 64px;
}
.showcase__link:hover {
  opacity: 1;
  gap: 18px;
}

.showcase__nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.showcase__footer {
  padding: 24px clamp(40px, 6vw, 88px) 40px;
  display: flex;
  justify-content: flex-end;
  background-color: var(--sc-bg);
  transition: background-color 0.8s var(--ease);
}

.showcase__dot {
  width: 28px;
  height: 2px;
  background: var(--sc-dot-bg);
  border: none;
  padding: 6px 0;
  background-clip: content-box;
  cursor: pointer;
  transition: background var(--t-med) var(--ease),
              width var(--t-med) var(--ease-spring);
}
.showcase__dot.is-active {
  width: 44px;
  background: var(--sc-dot-active);
}
.showcase__dot:hover:not(.is-active) {
  background: var(--sc-dot-active);
  opacity: 0.55;
}

.showcase__visual {
  position: relative;
  overflow: hidden;
}

.showcase__img-wrap {
  position: absolute;
  inset: 0;
}

.showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.showcase__img.is-transitioning {
  opacity: 0;
  transform: scale(1.03);
}

/* -- Showcase responsivo ----------------------------------- */

@media (max-width: 960px) {
  .showcase__wrap {
    grid-template-columns: 1fr;
  }

  .showcase__visual {
    order: -1;
    height: clamp(300px, 56vw, 520px);
    position: relative;
  }

  .showcase__img-wrap {
    position: absolute;
    inset: 0;
  }

  .showcase__panel {
    padding: 56px 36px 64px;
    justify-content: flex-start;
  }

  .showcase__narrative {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .showcase__visual {
    height: 260px;
  }

  .showcase__panel {
    padding: 48px 24px 56px;
  }

  .showcase__title {
    font-size: clamp(38px, 10.5vw, 52px);
  }
}

/* ============================================================
   QUEBRAS DE MARCA � Patterns IDV
   ============================================================ */

.brand-break {
  position: relative;
  height: clamp(38px, 3.8vw, 56px);
  overflow: hidden;
  background-color: transparent;
  margin: 14px 0;
}

.brand-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  opacity: 1;
}

.brand-break::after {
  content: '';
  position: absolute;
  inset: 0;
  display: none;
}

.brand-break--first::before {
  background-image: url('assets/patterns/indesigns-25.png');
}

.brand-break--second {
  background-color: transparent;
}

.brand-break--second::before {
  background-image: url('assets/patterns/indesigns-27.png');
  background-size: auto 100%;
  opacity: 1;
}

.brand-break--second::after {
  display: none;
}

/* ============================================================
   SHOWCASE DE PROJETOS � Vitrine clara
   ============================================================ */

.showcase {
  padding: 0 0 clamp(82px, 10vw, 132px);
  background-color: var(--offwhite);
  scroll-margin-top: var(--nav-h);
}

.showcase__header {
  max-width: 720px;
  margin-bottom: 56px;
}

.showcase__heading {
  font-family: var(--font-headline);
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 400;
  color: var(--petroleo);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-top: 18px;
}

.showcase__intro {
  max-width: 560px;
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(23, 58, 74, 0.62);
  line-height: 1.8;
}

.showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) repeat(2, minmax(0, 0.86fr));
  gap: 18px;
  align-items: stretch;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.showcase-card__category {
  order: 2;
  margin-top: 22px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.showcase-card__media {
  order: 1;
  overflow: hidden;
  background-color: var(--greige);
}

.showcase-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease);
}

.showcase-card--large .showcase-card__media img {
  aspect-ratio: 4 / 3;
}

.showcase-card:hover .showcase-card__media img {
  transform: scale(1.025);
}

.showcase-card__body {
  order: 3;
  padding-top: 10px;
}

.showcase-card__body h3 {
  font-family: var(--font-headline);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--petroleo);
  margin-bottom: 12px;
}

.showcase-card__body p {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(23, 58, 74, 0.58);
  line-height: 1.75;
  max-width: 390px;
}

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

  .showcase-card__media img,
  .showcase-card--large .showcase-card__media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .showcase {
    padding: 72px 0;
  }

  .brand-break {
    height: 34px;
    margin: 10px 0;
  }

  .brand-break::before {
    background-size: 280px auto;
  }
}

/* ============================================================
   MATERIALIDADE � Micro se��o editorial (Noroeste)
   ============================================================ */

.noroeste__palette {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.noroeste__mat-editorial {
  padding-top: 20px;
}

.noroeste__mat-heading {
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

.noroeste__mat-list {
  list-style: none;
}

.noroeste__mat-list li {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--petroleo);
  opacity: 0.65;
  padding: 9px 0;
  border-bottom: 1px solid rgba(23, 58, 74, 0.08);
}

.noroeste__mat-list li:last-child {
  border-bottom: none;
}

/* ============================================================
   AJUSTE V1 � Patterns e carrossel de projetos
   ============================================================ */

.brand-break {
  height: clamp(38px, 3.8vw, 56px);
  background-color: transparent;
  margin: 14px 0;
}

.brand-break::before {
  inset: 0;
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  opacity: 1;
}

.brand-break::after {
  display: none;
}

.brand-break--first::before {
  background-image: url('assets/patterns/indesigns-25.png');
}

.brand-break--second {
  background-color: transparent;
}

.brand-break--second::before {
  background-image: url('assets/patterns/indesigns-27.png');
  background-size: auto 100%;
  opacity: 1;
}

.brand-break--third {
  background-color: transparent;
  margin-bottom: 40px;
}

.brand-break--third::before {
  background-image: url('assets/patterns/indesigns-28.png');
  background-size: auto 100%;
  opacity: 1;
}

.showcase {
  padding: 0;
  background-color: var(--sc-bg);
}

.showcase__carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(360px, 42%);
  min-height: clamp(620px, 82vh, 860px);
  overflow: hidden;
  outline: none;
}

.showcase__visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.05s var(--ease-premium),
              transform 1.05s var(--ease-premium);
  transition-delay: 0.18s;
}

.showcase__img {
  width: 100%;
  height: 100%;
  min-height: clamp(580px, 78vh, 840px);
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.001);
  transition: opacity 0.50s var(--ease-premium), transform 2.4s var(--ease-premium);
  will-change: opacity, transform;
}

.showcase__img.is-transitioning {
  opacity: 0;
  transform: scale(1.018);
}

.showcase__visual:hover .showcase__img {
  transform: scale(1.12);
}

.showcase__panel {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 7vw, 108px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: var(--sc-bg);
  opacity: 0;
  transform: translateY(24px);
  transition: background-color 0.9s var(--ease-premium),
              opacity 0.95s var(--ease-premium),
              transform 0.95s var(--ease-premium);
}

.showcase.is-visible .showcase__panel,
.showcase.is-visible .showcase__visual {
  opacity: 1;
  transform: translateY(0);
}

.showcase__counter,
.showcase__category,
.showcase__title,
.showcase__place,
.showcase__narrative,
.showcase__link {
  transition: opacity 0.36s var(--ease-premium), transform 0.36s var(--ease-premium);
}

.showcase__counter {
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.72;
}

.showcase__counter.is-transitioning,
.showcase__category.is-transitioning,
.showcase__title.is-transitioning,
.showcase__place.is-transitioning,
.showcase__narrative.is-transitioning,
.showcase__link.is-transitioning {
  opacity: 0;
  transform: translateY(10px);
}

.showcase__panel-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
}

.showcase__title {
  max-width: 520px;
}

.showcase__narrative {
  max-width: 420px;
}

.showcase__nav {
  margin-top: 4px;
}

.showcase__arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(236, 236, 234, 0.28);
  background: rgba(23, 58, 74, 0.18);
  color: var(--offwhite);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0.2;
  transition: background 0.45s var(--ease-premium),
              border-color 0.45s var(--ease-premium),
              transform 0.45s var(--ease-premium),
              opacity 0.45s var(--ease-premium);
}

.showcase__carousel:hover .showcase__arrow {
  opacity: 0.75;
}

.showcase__arrow:hover {
  background: rgba(23, 58, 74, 0.42);
  border-color: rgba(236, 236, 234, 0.72);
  transform: translateY(-50%) scale(1.05);
  opacity: 1;
}

.showcase__arrow--prev {
  left: 28px;
}

.showcase__arrow--next {
  right: 28px;
}

@media (max-width: 960px) {
  .showcase__carousel {
    grid-template-columns: 1fr;
  }

  .showcase__visual {
    min-height: auto;
  }

  .showcase__img {
    min-height: 420px;
    height: 58vw;
  }

  .showcase__panel {
    padding: 56px 36px 64px;
  }

  .showcase__arrow {
    top: 29vw;
  }

  .showcase__arrow--next {
    right: 28px;
  }
}

@media (max-width: 600px) {
  .brand-break {
    height: 40px;
    margin: 10px 0;
  }

  .showcase__img {
    min-height: 320px;
    height: 72vw;
  }

  .showcase__panel {
    padding: 44px 24px 56px;
  }

  .showcase__arrow {
    width: 46px;
    height: 46px;
    top: 36vw;
  }

  .showcase__arrow--prev {
    left: 16px;
  }

.showcase__arrow--next {
  right: 16px;
  }
}

/* ============================================================
   SHOWCASE BENTO GRID
   ============================================================ */

.showcase {
  position: relative;
  z-index: 2;
  background: var(--offwhite);
  border-radius: 16px 16px 0 0;
  margin-top: -24px;
  box-shadow: 0 -12px 40px rgba(23, 58, 74, 0.18);
  padding-bottom: clamp(16px, 3vw, 28px);
}

.sc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(40px, 4vw, 56px);
  padding-bottom: clamp(28px, 3vw, 40px);
}

.sc-header__text .label {
  color: var(--teal);
  display: block;
  margin-bottom: 16px;
}

.sc-heading {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--petroleo);
}

.sc-all-link {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(60,110,113,0.3);
  transition: opacity 0.25s ease;
}

.sc-all-link:hover { opacity: 0.6; }

.showcase-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
  padding: 0 clamp(40px, 7vw, 96px);
}

.sc-cell {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  outline: 1px solid rgba(23, 58, 74, 0.14);
  outline-offset: -1px;
  box-shadow: 0 2px 8px rgba(23, 58, 74, 0.10);
  height: 100%;
}

.sc-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s var(--ease-premium);
  will-change: transform;
}

.sc-cell:hover img { transform: scale(1.04); }

.sc-cell__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,58,74,0.45) 0%, rgba(23,58,74,0.12) 40%, rgba(23,58,74,0) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2vw, 28px) clamp(18px, 2vw, 28px);
  gap: 8px;
  transition: background 0.4s ease;
}

.sc-cell:hover .sc-cell__overlay {
  background: linear-gradient(to top, rgba(23,58,74,0.70) 0%, rgba(23,58,74,0.25) 50%, rgba(23,58,74,0.05) 100%);
}

.sc-cell__tag {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-block;
  width: fit-content;
  background: rgba(23,58,74,0.48);
  padding: 4px 10px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sc-cell__name {
  font-family: var(--font-headline);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--offwhite);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.sc-cell__catname {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  color: var(--offwhite);
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  max-width: none;
  text-shadow: 0 1px 14px rgba(23, 58, 74, 0.55);
}

@media (max-width: 900px) {
  .showcase-bento {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .sc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .showcase-bento {
    height: 280px;
    gap: 8px;
    padding: 0 16px;
  }
  .sc-cell__catname { font-size: 10px; letter-spacing: 0.18em; }
}

/* ============================================================
   P�GINAS DE PROJETO
   ============================================================ */

.project-page {
  background-color: var(--offwhite);
}

.project-nav {
  background: rgba(23, 58, 74, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.project-hero {
  position: relative;
  min-height: clamp(620px, 88vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--petroleo-dark);
}

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

.project-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(23, 58, 74, 0.06), rgba(23, 58, 74, 0.58)),
    linear-gradient(to right, rgba(23, 58, 74, 0.60), rgba(23, 58, 74, 0.16), rgba(23, 58, 74, 0.05));
}

.project-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px 96px;
}

.project-back {
  display: inline-flex;
  margin-bottom: 34px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 236, 234, 0.66);
}

/* "Voltar aos projetos" when placed inside project-body (light background) */
.project-body .project-back {
  color: rgba(23, 58, 74, 0.45);
  margin-bottom: 0;
  padding-bottom: 40px;
  transition: color 0.2s;
}
.project-body .project-back:hover {
  color: var(--teal);
}

.project-kicker {
  color: var(--sage);
  margin-bottom: 22px;
}

.project-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 400;
  line-height: 1;
  color: var(--offwhite);
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}

.project-hero p {
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: rgba(236, 236, 234, 0.76);
  line-height: 1.7;
}

.project-body {
  padding: 112px 0;
}

.project-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: clamp(40px, 5vw, 68px);
  margin-bottom: 88px;
}

.project-meta {
  display: grid;
  gap: 18px;
  align-content: start;
}

.project-meta span {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(23, 58, 74, 0.68);
}

.project-meta strong {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.project-copy p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(23, 58, 74, 0.76);
  margin-bottom: 26px;
}

.project-copy p:first-child {
  font-size: 22px;
  line-height: 1.65;
  color: var(--petroleo);
}

.project-before {
  margin: clamp(44px, 6vw, 76px) 0;
  padding: clamp(26px, 4vw, 42px) 0;
  max-width: 620px;
  border-top: 1px solid rgba(23, 58, 74, 0.12);
  border-bottom: 1px solid rgba(23, 58, 74, 0.12);
}

.project-before .label {
  margin-bottom: 16px;
}

.project-before p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.78;
  color: rgba(23, 58, 74, 0.68);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 88px;
}

.project-gallery--three {
  grid-template-columns: 1.4fr 1fr 1fr;
}

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

.project-gallery--single figure {
  min-height: 480px;
}

.project-gallery figure {
  overflow: hidden;
  min-height: 360px;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 2.2s var(--ease-premium);
}

.project-gallery figure:hover img {
  transform: scale(1.10);
}

.project-materiality {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.68fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  max-width: 980px;
  margin: -18px auto 92px;
  padding: clamp(18px, 3vw, 36px) 0 clamp(8px, 2vw, 18px);
}

.project-materiality__copy {
  max-width: 440px;
}

.project-materiality__copy h2 {
  margin-top: 18px;
  font-family: var(--font-headline);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--petroleo);
}

.project-materiality__copy p {
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.84;
  color: rgba(23, 58, 74, 0.68);
}

.project-materiality__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 58, 74, 0.12);
}

.project-materiality__list li {
  padding: 10px 0;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid rgba(23, 58, 74, 0.08);
}

.project-materiality__figure {
  justify-self: end;
  width: min(100%, 430px);
}

.project-materiality__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 2.2s var(--ease-premium);
}

.project-materiality__figure {
  overflow: hidden;
}

.project-materiality__figure:hover img {
  transform: scale(1.10);
}

.project-materiality__figure figcaption {
  margin-top: 14px;
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 58, 74, 0.46);
}

.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 42px;
  border-top: 1px solid rgba(23, 58, 74, 0.12);
}

.project-detail-grid p {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(23, 58, 74, 0.66);
}

.project-cta {
  padding: 96px 0 112px;
  background-color: var(--greige);
}

.project-continue {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 76px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(23, 58, 74, 0.12);
}

.project-continue h2 {
  max-width: 620px;
  margin: 18px 0 18px;
  font-family: var(--font-headline);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--petroleo);
}

.project-continue p {
  max-width: 520px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(23, 58, 74, 0.66);
}

.project-continue .btn {
  color: var(--petroleo);
  border: 1px solid rgba(23, 58, 74, 0.22);
  background: transparent;
}

.project-continue .btn:hover {
  color: var(--offwhite);
  border-color: var(--petroleo);
  background: var(--petroleo);
}

.project-cta h2 {
  max-width: 720px;
  margin: 18px 0 32px;
  font-family: var(--font-headline);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--petroleo);
}

@media (max-width: 960px) {
  .project-hero__content {
    padding: 0 36px 72px;
  }

  .project-intro,
  .project-continue,
  .project-materiality,
  .project-detail-grid,
  .project-gallery,
  .project-gallery--three {
    grid-template-columns: 1fr;
  }

  .project-gallery img {
    min-height: 300px;
  }

  .project-materiality {
    max-width: 640px;
    margin: -8px 0 72px;
  }

  .project-materiality__figure {
    justify-self: start;
    width: min(100%, 460px);
  }

  .project-intro:has(.project-reel[data-video]) .project-reel,
  .project-intro:has(.project-reel[data-video]) .project-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .project-intro:has(.project-reel[data-video]) .project-reel {
    justify-self: start;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .project-hero__content {
    padding: 0 24px 58px;
  }

  .project-body {
    padding: 76px 0;
  }

  .project-materiality__list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-continue {
    gap: 32px;
    align-items: start;
    margin-bottom: 58px;
    padding-bottom: 48px;
  }
}

/* ============================================================
   QUEBRA ATMOSF�RICA � Transi��o suave entre se��es
   ============================================================ */

.atm-break {
  height: 3px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(23, 58, 74, 0.14) 18%,
    rgba(23, 58, 74, 0.14) 82%,
    transparent 100%
  );
  margin: 0;
  display: none;
}

.atm-break--axo {
  height: auto;
  background: none;
}

.axo-marginalia-wrap {
  display: none;
}

.axo-marginalia {
  width: clamp(80px, 10vw, 140px);
  opacity: 0.12;
  filter: invert(14%) sepia(28%) saturate(800%)
          hue-rotate(162deg) brightness(60%);
  display: block;
}

@media (max-width: 768px) {
  .axo-marginalia {
    display: none;
  }
}

/* ============================================================
   SHOWCASE � Introdu��o editorial
   ============================================================ */

.showcase__intro {
  padding: clamp(82px, 9vw, 120px) 0 clamp(36px, 4vw, 56px);
}

.showcase__intro .label {
  color: var(--sc-accent);
}

.showcase__intro-heading {
  font-family: var(--font-headline);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--sc-title);
  margin-top: 18px;
  max-width: 660px;
}

.showcase__intro-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--sc-text);
  margin-top: 20px;
  max-width: 460px;
}

@media (max-width: 600px) {
  .showcase__intro {
    padding: clamp(56px, 8vw, 80px) 0 28px;
  }
  .showcase__intro-heading {
    font-size: clamp(38px, 10vw, 52px);
  }
}

/* ============================================================
   PROCESSO � Hierarquia refinada
   ============================================================ */

.processo .section-title {
  font-size: clamp(52px, 6vw, 78px);
}

/* ============================================================
   PATTERN � Textura editorial sutil (footer + sobre)
   ============================================================ */

.sobre {
  position: relative;
}

.sobre::after {
  content: none;
}

.sobre .container {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
}

.footer::after {
  content: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   VIDEO REEL � Preview flutuante nas p�ginas de projeto
   ============================================================ */

.project-reel {
  /* Inline mode � inside project content */
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  margin-top: 32px;
}

/* When floated to bottom-right corner */
.project-reel.is-floating {
  position: fixed;
  right: 40px;
  bottom: 48px;
  z-index: 80;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s var(--ease-premium),
              transform 0.65s var(--ease-premium);
  pointer-events: none;
}

.project-reel.is-floating.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Floating mode: smaller ring */
.project-reel.is-floating .project-reel__ring {
  width: 72px;
  height: 72px;
}

.project-reel[data-video=""] {
  display: none;
}

/* Grid: copy spans both rows when reel is present */
.project-intro:has(.project-reel[data-video]) .project-reel {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  margin-top: 10px;
  margin-right: clamp(18px, 3vw, 46px);
}

.project-intro:has(.project-reel[data-video]) .project-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
}

.project-reel__ring {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 1.5px solid rgba(138, 176, 171, 0.50);
  box-shadow: 0 6px 22px rgba(23, 58, 74, 0.18);
  transition: border-color 0.45s var(--ease-premium),
              transform 0.45s var(--ease-premium),
              box-shadow 0.45s var(--ease-premium);
}

.project-reel:hover .project-reel__ring {
  border-color: var(--sage);
  transform: scale(1.06);
  box-shadow: 0 8px 30px rgba(23, 58, 74, 0.26);
}

.project-reel__ring img,
.project-reel__ring video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-reel__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 58, 74, 0.36);
  transition: background 0.35s var(--ease);
}

.project-reel:hover .project-reel__play {
  background: rgba(23, 58, 74, 0.18);
}

.project-reel__label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(23, 58, 74, 0.42);
}

.project-reel,
.project-reel__ring,
video,
iframe {
  touch-action: pan-y;
  pointer-events: none;
}

.project-reel__play,
.project-reel__label {
  pointer-events: auto;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 995;
  touch-action: pan-y;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 58, 74, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.5s var(--ease),
              backdrop-filter 0.5s var(--ease);
  pointer-events: none;
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal.is-open {
  background: rgba(23, 58, 74, 0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
}

.video-modal__close {
  position: absolute;
  top: 28px;
  right: 36px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(236, 236, 234, 0.20);
  color: rgba(236, 236, 234, 0.72);
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.4s var(--ease-premium),
              transform 0.4s var(--ease-premium),
              border-color 0.3s var(--ease);
}

.video-modal.is-open .video-modal__close {
  opacity: 1;
  transform: rotate(0deg);
}

.video-modal__close:hover {
  border-color: rgba(236, 236, 234, 0.50);
  color: var(--offwhite);
}

.video-modal__stage {
  width: min(92vw, 1180px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  transform: scale(0.92) translateY(16px);
  opacity: 0;
  transition: transform 0.60s var(--ease-premium),
              opacity 0.60s var(--ease-premium);
}

.video-modal.is-open .video-modal__stage {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.video-modal__player {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  background: var(--petroleo-dark);
  pointer-events: auto;
  touch-action: auto;
}

.video-modal__media {
  position: relative;
}

.video-modal__mute {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(236, 236, 234, 0.28);
  background: rgba(23, 58, 74, 0.46);
  color: var(--offwhite);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.video-modal__mute:hover {
  background: rgba(23, 58, 74, 0.72);
  border-color: rgba(236, 236, 234, 0.5);
}

.video-modal__panel {
  color: var(--offwhite);
}

.video-modal__panel .label {
  color: var(--sage);
}

.video-modal__title {
  margin-top: 16px;
  font-family: var(--font-headline);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
}

.video-modal__panel p {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(236, 236, 234, 0.68);
}

.video-modal__actions {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.video-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 12px 14px;
  border: 1px solid rgba(236, 236, 234, 0.16);
  background: transparent;
  color: rgba(236, 236, 234, 0.76);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.video-modal__action:hover,
.video-modal__action--primary {
  border-color: rgba(138, 176, 171, 0.55);
  color: var(--offwhite);
  background: rgba(138, 176, 171, 0.08);
}

.video-modal__related {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(236, 236, 234, 0.12);
}

.video-modal__related-item {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(236, 236, 234, 0.1);
  background: transparent;
  color: rgba(236, 236, 234, 0.68);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .project-reel.is-floating {
    right: 20px;
    bottom: 28px;
  }
  .project-reel.is-floating .project-reel__ring {
    width: 60px;
    height: 60px;
  }
  .video-modal__close {
    top: 16px;
    right: 16px;
  }

  .video-modal__stage {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .video-modal__panel {
    max-width: 420px;
  }
}

/* ============================================================
   DEPOIMENTOS � Editorial nas p�ginas de projeto
   ============================================================ */

.project-testimonial {
  padding: clamp(80px, 9vw, 112px) 0;
  background-color: var(--offwhite);
  position: relative;
}

.project-testimonial__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 48px;
}

.project-testimonial__inner::before {
  content: '\201C';
  font-family: var(--font-headline);
  font-size: 160px;
  font-weight: 300;
  font-style: italic;
  color: var(--teal);
  opacity: 0.10;
  position: absolute;
  top: -68px;
  left: 28px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.project-testimonial__text {
  font-family: var(--font-headline);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--petroleo);
  line-height: 1.55;
  letter-spacing: -0.01em;
  opacity: 0.80;
}

.project-testimonial__author {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.project-testimonial__divider {
  width: 32px;
  height: 1px;
  background: var(--teal);
  opacity: 0.25;
  margin-bottom: 14px;
}

.project-testimonial__cite {
  font-family: var(--font-label);
  font-size: 10.5px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.62;
}

@media (max-width: 600px) {
  .project-testimonial__inner {
    padding: 0 24px;
  }
  .project-testimonial__inner::before {
    font-size: 110px;
    top: -46px;
    left: 12px;
  }
}

/* ============================================================
   SHOWCASE � Intro integrada ao painel (Phase 6)
   ============================================================ */

.showcase__section-intro {
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid rgba(23, 58, 74, 0.08);
  margin-bottom: clamp(20px, 2.5vw, 32px);
  position: relative;
}

.showcase__section-heading {
  font-family: var(--font-headline);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--sc-title);
  margin-top: 10px;
}

.showcase__all-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding-bottom: 8px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sc-link);
  border-bottom: 1px solid rgba(23, 58, 74, 0.24);
  transition: color 0.45s var(--ease-premium),
              border-color 0.45s var(--ease-premium),
              transform 0.45s var(--ease-premium);
}

.showcase__all-link:hover {
  color: var(--teal);
  border-color: var(--teal);
  transform: translateX(4px);
}

.showcase__project-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ============================================================
   SOBRE � Identifica��o profissional
   ============================================================ */

.sobre__title {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.58;
  margin-bottom: 22px;
}

/* ============================================================
   FORMUL�RIO � Pills de prazo/urg�ncia
   ============================================================ */

.cta-form__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cta-form__pill {
  position: relative;
  cursor: pointer;
}

.cta-form__pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cta-form__pill span {
  display: inline-flex;
  padding: 9px 20px;
  border: 1px solid rgba(236, 236, 234, 0.2);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(236, 236, 234, 0.58);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
  user-select: none;
}

.cta-form__pill:hover span {
  border-color: rgba(138, 176, 171, 0.45);
  color: rgba(236, 236, 234, 0.8);
}

.cta-form__pill:has(input:checked) span {
  border-color: var(--sage);
  color: var(--offwhite);
  background-color: rgba(138, 176, 171, 0.1);
}

@media (max-width: 480px) {
  .cta-form__pills { gap: 8px; }
  .cta-form__pill span { padding: 8px 16px; font-size: 12px; }
}

/* ============================================================
   INTRO OVERLAY � Abertura da marca
   ============================================================ */

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.site-intro.is-exiting {
  opacity: 0;
  pointer-events: none;
}

.site-intro__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .site-intro { display: none; }
}

/* ============================================================
   P�GINA DE PROJETOS � /projetos/
   ============================================================ */

.projetos-page {
  background-color: var(--offwhite);
  padding-top: 0;
}

.projetos-page .nav {
  background: var(--petroleo);
  box-shadow: 0 1px 0 rgba(60, 110, 113, 0.18);
}

.servicos-page {
  background-color: var(--offwhite);
}

.servicos-page .nav {
  background: var(--petroleo);
  box-shadow: 0 1px 0 rgba(60, 110, 113, 0.18);
}

.servicos-page-header {
  background-color: var(--offwhite);
}

.projetos-header {
  padding: clamp(118px, 13vw, 170px) 0 clamp(52px, 6vw, 80px);
  border-bottom: 1px solid rgba(23, 58, 74, 0.1);
}

.projetos-header .container {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 0.9fr);
  column-gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.projetos-header__kicker {
  display: block;
  margin-top: 12px;
}

.projetos-header__content {
  max-width: 640px;
}

.projetos-header__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--petroleo);
  max-width: 600px;
}

.projetos-header__text {
  margin-top: 24px;
  max-width: 440px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 1.78;
  color: rgba(23, 58, 74, 0.62);
}

.projetos-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.projetos-curadoria {
  background-color: var(--offwhite);
}

.projetos-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding-top: clamp(16px, 2vw, 24px);
  padding-bottom: clamp(8px, 1.5vw, 16px);
}

.projetos-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.projetos-view {
  display: none !important;
}

.projetos-filter__btn,
.projetos-view__btn {
  border: 1px solid rgba(23, 58, 74, 0.16);
  background: transparent;
  color: rgba(23, 58, 74, 0.58);
  padding: 9px 13px 8px;
  font-family: var(--font-label);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.35s var(--ease-premium),
              border-color 0.35s var(--ease-premium),
              background 0.35s var(--ease-premium);
}

.projetos-filter__btn:hover,
.projetos-view__btn:hover,
.projetos-filter__btn.is-active,
.projetos-view__btn.is-active {
  color: var(--offwhite);
  border-color: var(--petroleo);
  background: var(--petroleo);
}

/* Filtros inline editoriais */
.projetos-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.projetos-filter__inline {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 58, 74, 0.42);
  cursor: pointer;
  transition: color 0.25s ease;
}

.projetos-filter__inline:hover {
  color: var(--petroleo);
}

.projetos-filter__inline.is-active {
  color: var(--petroleo);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.projetos-filter__sep {
  font-family: var(--font-label);
  font-size: 10px;
  color: rgba(23, 58, 74, 0.22);
  padding: 0 10px;
  user-select: none;
}

/* Toggle como ícones discretos */
.projetos-view {
  display: none !important;
}

.projetos-view__icon {
  background: none;
  border: none;
  padding: 4px;
  color: rgba(23, 58, 74, 0.28);
  cursor: pointer;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
}

.projetos-view__icon:hover {
  color: var(--petroleo);
}

.projetos-view__icon.is-active {
  color: var(--petroleo);
}

/* Frase-ponte */
.projetos-header__ponte {
  margin-top: 12px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 58, 74, 0.38);
}

.projetos-item {
  overflow: hidden;
  transition: opacity 0.45s var(--ease-premium);
}

.projetos-item.is-hidden {
  display: none;
}

.projetos-item__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.projetos-item__img-col {
  overflow: hidden;
  aspect-ratio: 4/5;
}

.projetos-item__img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.projetos-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease, transform 1.9s var(--ease-premium);
}

.projetos-item__link:hover .projetos-item__img-wrap img {
  filter: brightness(1.08);
  transform: scale(1.05);
}

.projetos-item__info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 48px);
  background: linear-gradient(to top, rgba(23,58,74,0.82) 0%, rgba(23,58,74,0.18) 55%, rgba(23,58,74,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.projetos-item__link:hover .projetos-item__info {
  opacity: 1;
}

.projetos-item__num {
  color: rgba(236, 236, 234, 0.5);
  margin-bottom: 20px;
  display: block;
}

.projetos-item__cat {
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
}

.projetos-item__title {
  font-family: var(--font-headline);
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--offwhite);
  margin-bottom: 10px;
}

.projetos-item__place {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 236, 234, 0.65);
  margin-bottom: 18px;
}

.projetos-item__desc {
  display: none;
}

.projetos-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 236, 234, 0.75);
  transition: gap 0.3s var(--ease), color 0.25s var(--ease);
}

.projetos-item__link:hover .projetos-item__cta {
  gap: 18px;
  color: var(--offwhite);
}

.projetos-list.is-list-view {
  display: block;
}

.projetos-list.is-list-view .projetos-item {
  border-bottom: 1px solid rgba(23, 58, 74, 0.1);
  overflow: visible;
}

.projetos-list.is-list-view .projetos-item__link {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  position: static;
}

.projetos-list.is-list-view .projetos-item__img-col {
  aspect-ratio: unset;
  min-height: 230px;
}

.projetos-list.is-list-view .projetos-item__img-wrap {
  min-height: 230px;
}

.projetos-list.is-list-view .projetos-item__info {
  position: static;
  opacity: 1;
  background: none;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
  justify-content: center;
}

.projetos-list.is-list-view .projetos-item__num { color: rgba(138, 176, 171, 0.6); }
.projetos-list.is-list-view .projetos-item__cat { color: var(--teal); }
.projetos-list.is-list-view .projetos-item__title { color: var(--petroleo); font-size: clamp(28px, 3vw, 48px); }
.projetos-list.is-list-view .projetos-item__place { color: var(--teal); }
.projetos-list.is-list-view .projetos-item__desc { display: block; }
.projetos-list.is-list-view .projetos-item__cta { color: var(--petroleo); }
.projetos-list.is-list-view .projetos-item__link:hover .projetos-item__info { opacity: 1; }

.projetos-footer {
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid rgba(23, 58, 74, 0.08);
}

.projetos-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 58, 74, 0.38);
  transition: color 0.2s var(--ease);
}

.projetos-back:hover {
  color: var(--teal);
}

@media (max-width: 768px) {
  .projetos-header .container {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .projetos-header__kicker {
    margin-top: 0;
  }

  .projetos-toolbar {
    flex-direction: column;
  }

  .projetos-list {
    grid-template-columns: 1fr;
  }

  .projetos-item__img-col {
    aspect-ratio: 3/4;
  }
}

/* ============================================================
   CARROSSEL — /projetos/
   ============================================================ */

.projetos-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--petroleo);
  height: 85vh;
  max-height: 700px;
  margin-top: 0;
  padding-top: 0;
}

.projetos-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.projetos-carousel__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.projetos-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.projetos-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(23, 58, 74, 0.92) 0%,
    rgba(23, 58, 74, 0.6) 40%,
    rgba(23, 58, 74, 0.1) 75%
  );
}

.projetos-carousel__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 5vw, 72px);
  max-width: 560px;
  z-index: 2;
}

.projetos-carousel__meta {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 236, 234, 0.5);
  display: block;
  margin-bottom: 12px;
}

.projetos-carousel__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--offwhite);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.projetos-carousel__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(236, 236, 234, 0.65);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 420px;
}

.projetos-carousel__cta {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 236, 234, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.projetos-carousel__cta:hover {
  color: var(--offwhite);
}

.projetos-carousel__nav {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 10;
}

.projetos-carousel__arrow {
  background: rgba(23, 58, 74, 0.6);
  border: 1px solid rgba(236, 236, 234, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--offwhite);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.projetos-carousel__arrow:hover {
  background: rgba(23, 58, 74, 0.9);
  border-color: rgba(236, 236, 234, 0.6);
}

.projetos-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.projetos-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(236, 236, 234, 0.35);
  border: 1px solid rgba(236, 236, 234, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.projetos-carousel__dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--offwhite);
  border-color: var(--offwhite);
}

@media (max-width: 768px) {
  .projetos-carousel {
    height: 70vh;
  }
}

/* ============================================================
   PROJETOS GRID
   ============================================================ */

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: clamp(24px, 3vw, 40px) clamp(40px, 7vw, 96px);
}

.projetos-grid__item {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  outline: 1px solid rgba(23, 58, 74, 0.14);
  outline-offset: -1px;
  box-shadow: 0 2px 8px rgba(23, 58, 74, 0.10);
}

.projetos-grid__item.is-hidden {
  display: none;
}

.projetos-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.projetos-grid__item:hover .projetos-grid__img {
  transform: scale(1.03);
}

.projetos-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 58, 74, 0.82) 0%,
    rgba(23, 58, 74, 0.1) 50%,
    rgba(23, 58, 74, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: clamp(16px, 2vw, 24px);
}

.projetos-grid__item:hover .projetos-grid__overlay {
  opacity: 1;
}

.projetos-grid__name {
  font-family: var(--font-headline);
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--offwhite);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.projetos-grid__empty {
  text-align: center;
  padding: 64px 0;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 58, 74, 0.35);
  grid-column: span 3;
}

@media (max-width: 900px) {
  .projetos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projetos-grid__empty {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .projetos-grid {
    grid-template-columns: 1fr;
  }
  .projetos-grid__empty {
    grid-column: span 1;
  }
}

/* ============================================================
   PÁGINA DE PROJETO
   ============================================================ */

.projeto-hero {
  position: relative;
  height: 70vh;
  max-height: 600px;
  overflow: hidden;
}

.projeto-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.projeto-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(23, 58, 74, 0.85) 0%,
    rgba(23, 58, 74, 0.2) 60%,
    rgba(23, 58, 74, 0) 100%
  );
}

.projeto-hero__content {
  position: absolute;
  bottom: clamp(32px, 5vw, 64px);
  left: clamp(32px, 6vw, 96px);
  z-index: 2;
}

.projeto-hero__cat {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 236, 234, 0.5);
  display: block;
  margin-bottom: 8px;
}

.projeto-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 8px;
}

.projeto-hero__place {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 236, 234, 0.4);
  margin: 0;
}

.projeto-hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  color: rgba(236, 236, 234, 0.72);
  line-height: 1.65;
  margin: 14px 0 0;
  max-width: 480px;
}

/* GALERIA */
.projeto-galeria {
  background: var(--offwhite);
  padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 48px);
}

.projeto-galeria__grid {
  columns: 2;
  column-gap: 16px;
}

.projeto-galeria__item {
  display: block;
  overflow: hidden;
  margin-bottom: 16px;
  break-inside: avoid;
  cursor: zoom-in;
}

.projeto-galeria__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.projeto-galeria__item:hover .projeto-galeria__img {
  transform: scale(1.02);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 26, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: rgba(236, 236, 234, 0.6);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox__close:hover { color: var(--offwhite); }

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(236, 236, 234, 0.5);
  font-size: 28px;
  cursor: pointer;
  padding: 16px;
  transition: color 0.2s ease;
}

.lightbox__arrow:hover { color: var(--offwhite); }
.lightbox__arrow--prev { left: 24px; }
.lightbox__arrow--next { right: 24px; }

/* CTA DO PROJETO */
.projeto-cta {
  background: var(--petroleo);
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}

.projeto-cta__text {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: var(--offwhite);
  margin: 0 0 28px;
}

@media (max-width: 640px) {
  .projeto-galeria__grid {
    columns: 1;
  }
}

.projetos-carousel__img-link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.projeto-galeria__empty {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--petroleo);
  opacity: 0.45;
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ANTES E DEPOIS */
.projeto-antes {
  background: var(--offwhite);
  padding: clamp(20px, 3vw, 40px) 0;
  border-top: 0.5px solid rgba(23, 58, 74, 0.08);
}

.projeto-antes__label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 58, 74, 0.35);
  display: block;
  padding: 0 clamp(16px, 4vw, 48px);
  margin-bottom: 14px;
}

.projeto-antes__stage {
  position: relative;
}

.projeto-antes__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(23, 58, 74, 0.18);
  background: rgba(236, 236, 234, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #173a4a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s, transform 0.3s;
}

.projeto-antes__stage:hover .projeto-antes__btn { opacity: 0.75; }
.projeto-antes__btn:hover { opacity: 1 !important; background: rgba(236, 236, 234, 0.98); transform: translateY(-50%) scale(1.05); }
.projeto-antes__btn:disabled { opacity: 0 !important; pointer-events: none; }

.projeto-antes__btn--prev { left: 14px; }
.projeto-antes__btn--next { right: 14px; }

.projeto-antes__track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.projeto-antes__track-wrap::-webkit-scrollbar { display: none; }
.projeto-antes__track-wrap:active { cursor: grabbing; }

.projeto-antes__track {
  display: flex;
  gap: 10px;
  padding: 0 clamp(16px, 4vw, 48px);
}

.projeto-antes__item {
  flex: 0 0 clamp(200px, 22vw, 290px);
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 2px;
  line-height: 0;
}

.projeto-antes__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.projeto-antes__item:hover .projeto-antes__img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* Lightbox "antes" */
.antes-lb {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.antes-lb.is-open {
  opacity: 1;
  pointer-events: auto;
}

.antes-lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 58, 74, 0.93);
  cursor: zoom-out;
}

.antes-lb__img {
  position: relative;
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 2px;
  z-index: 1;
  user-select: none;
}

.antes-lb__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--offwhite, #ececea);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  opacity: 0.6;
  transition: opacity 0.18s;
  padding: 4px 8px;
}

.antes-lb__close:hover { opacity: 1; }

.antes-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--offwhite, #ececea);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  opacity: 0.5;
  transition: opacity 0.18s;
  padding: 8px 20px;
}

.antes-lb__nav:hover { opacity: 1; }
.antes-lb__nav--prev { left: 8px; }
.antes-lb__nav--next { right: 8px; }

@media (max-width: 768px) {
  .projeto-antes__img {
    height: 112px;
  }
}

/* ── Botão voltar nas subpages ── */
.projeto-back {
  position: fixed;
  top: calc(var(--nav-h) + 16px);
  left: clamp(24px, 4vw, 48px);
  z-index: 50;
}

.projeto-back__link {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 236, 234, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
  background: rgba(23, 58, 74, 0.4);
  padding: 8px 14px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

.projeto-back__link:hover {
  color: var(--offwhite);
}
.
