/* =========================================================
   LAMIDIA — Design Tokens
   Extraídos do design system oficial (Apollo, Ionic, Zeus,
   Hades, Ares, Poseidon, Hermes, Athena, Artemis, Epic, Olympus)
   ========================================================= */
:root {
  /* Cores de marca */
  --c-apollo:        #2c1102;   /* Apollo Dark Brown */
  --c-ionic:         #f9f0e9;   /* Ionic Beige */
  --c-zeus:          #dd8b3a;   /* Zeus Yellow */
  --c-hades-copper:  #c05715;   /* Hades Copper */
  --c-ares:          #962d06;   /* Ares Terracota */
  --c-hades-ember:   #dc3712;   /* Hades Ember */
  --c-poseidon:      #162910;   /* Poseidon Green */
  --c-hermes:        #525e45;   /* Hermes Green */
  --c-athena:        #78714d;   /* Athena Green */
  --c-artemis:       #392008;   /* Artemis Brown */
  --c-epic-gray:     #e7e0da;   /* Epic Gray */
  --c-olympus:       #fefefe;   /* Olympus White */

  /* Papéis semânticos */
  --bg-night:        #201f14;  /* base escura (nav / rodapé da hero) derivada da Athena Green */
  --bg-night-deep:   #121108;  /* preto quente para faixas e overlays */
  --text-on-dark:      var(--c-ionic);
  --text-on-dark-muted: rgba(249, 240, 233, 0.72);
  --text-accent:     var(--c-zeus);
  --accent:          var(--c-hades-copper);
  --accent-hover:    var(--c-ares);

  /* Tipografia */
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-w: 1320px;
  --header-h: 92px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-night-deep);
  color: var(--text-on-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
}

/* Foco visível para acessibilidade de teclado */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--c-zeus);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--c-olympus);
  color: var(--c-apollo);
  padding: 12px 20px;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* =========================================================
   Botões
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--c-olympus);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(192, 87, 21, 0.6);
}
.btn--nav { padding: 13px 26px; font-size: 0.75rem; }
.btn--hero { padding: 18px 36px; font-size: 0.8125rem; }

/* =========================================================
   Header / Navegação
   ========================================================= */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: rgba(32, 31, 20, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(249, 240, 233, 0.08);
  transition: background-color .3s var(--ease), padding .3s var(--ease);
}
.site-header__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 22px clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  height: var(--header-h);
}

.logo__mark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  color: var(--c-olympus);
  white-space: nowrap;
}

.main-nav { flex: 1; }
.main-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.main-nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color .2s var(--ease);
}
.main-nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--c-zeus);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.main-nav__link:hover { color: var(--text-on-dark); }
.main-nav__link:hover::after { transform: scaleX(1); }
.main-nav__link.is-active {
  color: var(--c-zeus);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-olympus);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-night);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,17,8,0.94) 0%, rgba(18,17,8,0.72) 32%, rgba(18,17,8,0.22) 58%, rgba(18,17,8,0.15) 100%),
    linear-gradient(0deg, rgba(18,17,8,0.9) 0%, rgba(18,17,8,0) 16%, rgba(18,17,8,0) 78%, rgba(18,17,8,0.85) 100%);
}
.hero__glyph {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(46vw, 620px);
  height: auto;
  color: rgba(249, 240, 233, 0.16);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  padding-bottom: 120px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin: 0 0 22px;
}

.hero__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--c-olympus);
  margin: 0 0 28px;
  max-width: 18ch;
}

.hero__lead {
  font-size: clamp(1rem, 1.15vw, 1.1875rem);
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  max-width: 40ch;
  margin: 0 0 40px;
  font-weight: 400;
}

/* Reveal on load */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .8s var(--ease) forwards;
}
.eyebrow[data-reveal] { animation-delay: .05s; }
.hero__heading[data-reveal] { animation-delay: .15s; }
.hero__lead[data-reveal] { animation-delay: .32s; }
.btn--hero[data-reveal] { animation-delay: .46s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Ticker */
.hero__ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(249, 240, 233, 0.12);
  background: rgba(12, 11, 6, 0.55);
  overflow: hidden;
  padding: 20px 0;
}
.hero__ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(249, 240, 233, 0.55);
}
.hero__ticker-track .dot {
  color: var(--c-hades-copper);
  padding-inline: 4px;
}
.hero__ticker:hover .hero__ticker-track {
  animation-play-state: paused;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { animation: none; opacity: 1; transform: none; }
  .hero__ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Feature Strip — 3 blocos alternados
   ========================================================= */
.fstrip {
  background: var(--c-ionic);
}

.fstrip__block {
  position: relative;
  min-height: clamp(230px, 24vw, 320px);
  display: flex;
  align-items: center;
  background-color: var(--c-ionic);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-bottom: 1px solid rgba(44, 17, 2, 0.08);
}

.fstrip__inner {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.fstrip__text {
  max-width: 430px;
}

.fstrip__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.375rem, 2.1vw, 1.75rem);
  line-height: 1.25;
  color: var(--c-apollo);
  margin: 0 0 12px;
}

.fstrip__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(44, 17, 2, 0.68);
  margin: 0;
}

.fstrip__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--c-olympus);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.fstrip__arrow svg { width: 20px; height: 20px; }
.fstrip__arrow:hover {
  background: var(--accent-hover);
  transform: scale(1.08);
}

/* Bloco A: espaço reservado (foto) à esquerda do container — texto desloca à direita */
.fstrip__block--a .fstrip__inner {
  justify-content: flex-end;
  padding-right: clamp(8%, 14vw, 220px);
}
.fstrip__block--a .fstrip__text { text-align: left; }

/* Bloco B (invertido): foto à direita do container — texto desloca à esquerda, seta primeiro */
.fstrip__block--b .fstrip__inner {
  justify-content: flex-start;
  padding-left: clamp(4%, 8vw, 120px);
}

/* =========================================================
   Services — 6 blocos de serviço
   ========================================================= */
.services {
  position: relative;
  background-color: var(--bg-night-deep);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding-block: clamp(56px, 8vw, 100px);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(249, 240, 233, 0.1);
  border: 1px solid rgba(249, 240, 233, 0.1);
}

.service-card {
  background: rgba(20, 18, 12, 0.82);
  padding: clamp(28px, 2.6vw, 44px) clamp(24px, 2.4vw, 38px);
  display: flex;
  flex-direction: column;
}

.service-card__icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: 22px;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.28;
  color: var(--c-olympus);
  margin: 0 0 14px;
}

.service-card__lead {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-accent);
  margin: 0 0 12px;
}

.service-card__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  margin: 0;
}

/* =========================================================
   Certified — faixa CENP
   ========================================================= */
.certified {
  background-color: var(--c-artemis);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: clamp(36px, 5vw, 56px);
}

.certified__inner {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.certified__badge {
  flex-shrink: 0;
  width: clamp(140px, 12vw, 176px);
  height: auto;
  border-radius: 10px;
}

.certified__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(249, 240, 233, 0.88);
  max-width: 62ch;
  margin: 0;
}
.certified__text a {
  color: var(--c-zeus);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color .2s var(--ease);
}
.certified__text a:hover { color: var(--c-olympus); }

/* =========================================================
   Clients Ticker — faixa clara com marquee
   ========================================================= */
.clients-ticker {
  position: relative;
  overflow: hidden;
  background: var(--c-epic-gray);
  border-top: 1px solid rgba(44, 17, 2, 0.85);
  padding: 18px 0;
}
.clients-ticker__track {
  display: flex;
  width: max-content;
  gap: 14px;
  white-space: nowrap;
  animation: ticker 42s linear infinite;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-apollo);
}
.clients-ticker__track .dot {
  color: var(--c-hades-copper);
  padding-inline: 6px;
}
.clients-ticker:hover .clients-ticker__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .clients-ticker__track { animation: none; }
}

/* =========================================================
   Clients — grid de logos
   ========================================================= */
.clients {
  background-color: var(--bg-night-deep);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: clamp(48px, 6vw, 80px);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1px;
  background: rgba(249, 240, 233, 0.08);
  border: 1px solid rgba(249, 240, 233, 0.08);
}

.client-logo {
  background: rgba(249, 240, 233, 0.02);
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.client-logo img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  filter: grayscale(1) brightness(1.6) opacity(0.62);
  transition: filter .3s var(--ease), transform .3s var(--ease);
}
.client-logo:hover img {
  filter: grayscale(0) brightness(1) opacity(1);
  transform: scale(1.04);
}

/* Modificadores de tamanho — base .client-logo img max-height: 56px */
.client-logo img.client-logo__img--large140 { max-height: 78px; }
.client-logo img.client-logo__img--large120 { max-height: 67px; }
.client-logo img.client-logo__img--small70 { max-height: 39px; }
/* +20% e +30% em cima do large140 (78px) — A+ Real Estate, PK7, Casarotto, Maestro Adriano */
.client-logo img.client-logo__img--large168 { max-height: 94px; }
.client-logo img.client-logo__img--large180 { max-height: 101px; }

/* Placeholder visual — remova ao inserir os logos reais */
.client-logo--placeholder {
  border: 1px dashed rgba(249, 240, 233, 0.18);
  margin: -1px;
}
.client-logo--placeholder span {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 240, 233, 0.3);
}

/* =========================================================
   Portfolio — Conheça Nosso Portfólio
   ========================================================= */
.portfolio {
  background-color: var(--c-ionic);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: clamp(56px, 8vw, 96px);
}

.portfolio__heading {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.portfolio__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--c-apollo);
  margin: 0 0 14px;
}
.portfolio__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent);
}
.portfolio__divider span {
  width: 56px;
  height: 1px;
  background: rgba(44, 17, 2, 0.3);
}
.portfolio__divider svg { width: 12px; height: 12px; }

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

.portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px -18px rgba(44, 17, 2, 0.35);
  background-color: var(--bg-night-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 460px;
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,8,0.55) 0%, rgba(15,12,8,0.35) 30%, rgba(15,12,8,0.55) 62%, rgba(15,12,8,0.92) 100%);
}

.portfolio-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 26px;
}

.portfolio-card__tag {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(120, 113, 77, 0.9);
  color: var(--c-olympus);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 3px;
  line-height: 1.3;
}
.portfolio-card__tag svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.portfolio-card__logo {
  max-width: 74%;
  max-height: 84px;
  width: auto;
  height: auto;
  margin: 32px auto 8px;
}
.portfolio-card__logo--small {
  max-height: 64px;
}

.portfolio-card__body {
  margin-top: auto;
  text-align: center;
}
.portfolio-card__q {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-olympus);
  margin: 0 0 10px;
}
.portfolio-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(249, 240, 233, 0.82);
  margin: 0 0 22px;
}
.portfolio-card__cta {
  width: 100%;
}
.portfolio-card__cta--soon {
  cursor: default;
  background: rgba(120, 113, 77, 0.92);
  box-shadow: none;
}
.portfolio-card__cta--soon:hover {
  background: rgba(120, 113, 77, 0.92);
  transform: none;
  box-shadow: none;
}

.portfolio__more {
  text-align: center;
  margin-top: clamp(28px, 3.5vw, 44px);
}
.btn--outline {
  background: transparent;
  color: var(--c-apollo);
  border: 1.5px solid var(--c-apollo);
  padding: 15px 32px;
}
.btn--outline:hover {
  background: var(--c-apollo);
  color: var(--c-olympus);
}

.certified__badge--round {
  border-radius: 50%;
  width: clamp(120px, 10vw, 152px);
}
.certified--abap { background-color: var(--bg-night); }

/* =========================================================
   Contato
   ========================================================= */
.contact {
  background: var(--c-ionic);
  padding-block: clamp(56px, 8vw, 96px);
  scroll-margin-top: var(--header-h);
}
.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}
.contact__intro h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  color: var(--c-apollo);
  margin: 0 0 20px;
}
.contact__intro > p:not(.eyebrow) {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(44, 17, 2, 0.72);
  margin: 0 0 28px;
}
.contact__whatsapp { display: inline-flex; }
.contact-form {
  background: rgba(254, 254, 254, 0.72);
  border: 1px solid rgba(44, 17, 2, 0.12);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 40px);
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 8px; }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--c-apollo);
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(44, 17, 2, 0.22);
  border-radius: 3px;
  background: var(--c-olympus);
  color: var(--c-apollo);
  font: inherit;
  padding: 13px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form__field textarea { resize: vertical; min-height: 130px; }
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 87, 21, 0.14);
}
.contact-form__field input:focus:invalid,
.contact-form__field textarea:focus:invalid { border-color: var(--c-ares); }
.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}
.contact-form__actions button:disabled { cursor: wait; opacity: 0.7; }
.contact-form__status {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(44, 17, 2, 0.72);
}
.contact-form__status.is-error { color: var(--c-ares); }
.contact-form__status.is-success { color: var(--c-poseidon); }

/* =========================================================
   Partners — Parceiros e Certificações
   ========================================================= */
.partners {
  background-color: var(--c-ionic);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: clamp(56px, 7vw, 88px);
}

.partners__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partners__laurel {
  width: 84px;
  height: auto;
  margin-bottom: 12px;
}

.partners__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  color: var(--c-apollo);
  margin: 0 0 20px;
}

.partners__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.partners__divider span {
  width: 90px;
  height: 1px;
  background: rgba(192, 87, 21, 0.5);
}
.partners__divider i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.4px solid var(--accent);
  display: block;
}

.partners__subtitle {
  max-width: 56ch;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(44, 17, 2, 0.65);
  margin: 0 0 clamp(36px, 5vw, 56px);
}

.partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 48px);
}

.partners__logo-divider {
  position: relative;
  width: 1px;
  height: 68px;
  background: rgba(44, 17, 2, 0.22);
}
.partners__logo-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.4px solid var(--accent);
  background: var(--c-ionic);
}

.partners__logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.partners__logo-card img {
  height: 40px;
  width: auto;
}
.partners__logo-card span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(44, 17, 2, 0.55);
}

/* =========================================================
   Site Footer
   ========================================================= */
.site-footer {
  background-color: var(--bg-night);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  padding-top: clamp(48px, 6vw, 76px);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: clamp(40px, 5vw, 60px);
}

.site-footer__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--c-olympus);
  margin: 0 0 22px;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.site-footer__list svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--c-zeus);
}
.site-footer__list a,
.site-footer__list span {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-on-dark-muted);
  transition: color .2s var(--ease);
}
.site-footer__list a:hover { color: var(--c-olympus); }

.site-footer__social {
  display: flex;
  gap: 12px;
}
.site-footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-ionic);
  color: var(--c-apollo);
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.site-footer__social-icon svg { width: 19px; height: 19px; }
.site-footer__social-icon:hover {
  background: var(--c-zeus);
  transform: translateY(-2px);
}

.site-footer__bottom {
  border-top: 1px solid rgba(249, 240, 233, 0.14);
  padding-block: 24px;
  text-align: center;
}
.site-footer__bottom p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(249, 240, 233, 0.55);
}

/* =========================================================
   About — Quem Somos
   ========================================================= */
.eyebrow--dark { color: var(--accent); }

.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: rgba(249, 240, 233, 0.6);
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(249, 240, 233, 0.85); }
.breadcrumb a:hover { color: var(--c-zeus); }
.breadcrumb span[aria-current] { color: var(--c-zeus); }

.about-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background-color: var(--bg-night);
  background-size: cover;
  background-position: center;
  padding-top: var(--header-h);
}
.about-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,17,8,0.75) 0%, rgba(18,17,8,0.55) 40%, rgba(18,17,8,0.92) 100%);
}
.about-banner__content {
  position: relative;
  z-index: 1;
  padding-bottom: 44px;
}
.about-banner__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--c-olympus);
  margin: 0;
}

/* Story */
.story {
  background: var(--c-ionic);
  padding-block: clamp(56px, 8vw, 96px);
}
.story__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.story__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  color: var(--c-apollo);
  margin: 0 0 24px;
  max-width: 16ch;
}
.story__text p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(44, 17, 2, 0.72);
  margin: 0 0 20px;
}
.story__text p:last-child { margin-bottom: 0; }

.story__media {
  position: relative;
  min-height: 460px;
}
.story__photo {
  position: absolute;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 24px 48px -20px rgba(44, 17, 2, 0.4);
}
.story__photo--a {
  width: 68%;
  height: 78%;
  top: 0;
  left: 0;
  z-index: 1;
}
.story__photo--b {
  width: 68%;
  height: 78%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 6px solid var(--c-ionic);
}

/* Pillars: Propósito / Missão / Visão */
.pillars {
  background: var(--c-olympus);
  padding-block: clamp(48px, 6vw, 80px);
}
.pillar {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding-block: clamp(28px, 3.5vw, 40px);
  border-bottom: 1px solid rgba(44, 17, 2, 0.1);
}
.pillar:first-child { padding-top: 0; }
.pillar:last-child { border-bottom: none; padding-bottom: 0; }
.pillar__index {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: rgba(192, 87, 21, 0.3);
  line-height: 1;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.625rem;
  color: var(--c-apollo);
  margin: 0 0 12px;
}
.pillar__body p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(44, 17, 2, 0.68);
  margin: 0;
  max-width: 68ch;
}

/* Values */
.values {
  background-color: var(--bg-night);
  background-size: cover;
  background-position: center;
  padding-block: clamp(56px, 7vw, 88px);
}
.values__inner {
  max-width: 780px;
}
.values__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 16px;
}
.values__tags span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-zeus);
  border: 1px solid rgba(221, 139, 58, 0.4);
  padding: 7px 12px;
  border-radius: 100px;
}
.values__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(249, 240, 233, 0.75);
  margin: 0 0 18px;
}
.values__text:last-child { margin-bottom: 0; }

/* CTA */
.about-cta {
  background: var(--c-ionic);
  padding-block: clamp(56px, 7vw, 88px);
}
.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.about-cta__inner h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  color: var(--c-apollo);
  margin: 0;
  max-width: 20ch;
}

/* =========================================================
   Portfolio Page
   ========================================================= */
.pf-banner {
  background-color: var(--c-ionic);
  background-size: cover;
  background-position: center;
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 56px;
  text-align: center;
}
.pf-banner__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
  margin-bottom: 18px;
}
.pf-banner__divider span { width: 70px; height: 1px; background: rgba(192,87,21,0.45); }
.pf-banner__divider svg { width: 20px; height: 20px; }
.pf-banner__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--c-apollo);
  margin: 0 0 14px;
}
.pf-banner__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(44,17,2,0.62);
  margin: 0 0 22px;
}
.pf-banner__subtitle strong { color: var(--accent); font-weight: 600; }
.pf-banner__laurel { width: 68px; height: auto; margin: 0 auto; }

.pf-strip {
  background: var(--bg-night-deep);
  color: rgba(249,240,233,0.65);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.pf-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--c-zeus); display: inline-block; }

.pf-grid-section {
  background-color: var(--bg-night);
  background-size: cover;
  background-position: top center;
  padding-block: clamp(48px, 6vw, 72px);
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pf-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  background-color: var(--bg-night-deep);
  box-shadow: 0 16px 36px -18px rgba(0,0,0,0.5);
}
.pf-card__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.pf-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,12,8,0.5) 0%, rgba(15,12,8,0.3) 32%, rgba(15,12,8,0.55) 60%, rgba(15,12,8,0.92) 100%);
}
.pf-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 18px 20px 24px;
}
.pf-card__tag {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(120, 113, 77, 0.9);
  color: var(--c-olympus);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 3px;
}
.pf-card__tag svg { width: 15px; height: 15px; flex-shrink: 0; }

.pf-card__logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 100%;
  margin: 28px 0 8px;
}
.pf-card__logo {
  max-width: 80%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pf-card__logo--80 { max-height: 80%; }
.pf-card__logo--130 { max-height: 130%; }
.pf-card__logo--70 { max-height: 70%; }
.pf-card__logo--63 { max-height: 63%; }
.pf-card__logo--57 { max-height: 57%; }
.pf-card__logo--140 { max-height: 140%; }
.pf-card__logo--161 { max-height: 161%; }
.pf-card__logo--110 { max-height: 110%; }

.pf-card__body { margin-top: auto; }
.pf-card__q {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-olympus);
  margin: 0 0 8px;
}
.pf-card__body p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(249,240,233,0.8);
  margin: 0 0 18px;
  max-width: 26ch;
  margin-inline: auto;
}
.pf-card__cta {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--c-olympus);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.pf-card__cta svg { width: 17px; height: 17px; }
.pf-card__cta:hover { background: var(--accent-hover); transform: scale(1.08); }
.pf-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding-inline: 18px;
  border: 1px solid rgba(249, 240, 233, 0.34);
  border-radius: 100px;
  color: rgba(249, 240, 233, 0.78);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CTA card variant */
.pf-card--cta {
  background: var(--bg-night-deep);
  align-items: center;
  justify-content: center;
}
.pf-card__frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(221, 139, 58, 0.55);
  border-radius: 3px;
}
.pf-card__frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(221, 139, 58, 0.3);
}
.pf-card__content--cta {
  justify-content: center;
  padding: 32px 24px;
}
.pf-card__cta-laurel { width: 50px; height: auto; margin-bottom: 14px; }
.pf-card__content--cta h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--c-zeus);
  margin: 0 0 14px;
  line-height: 1.25;
}
.pf-card__content--cta p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(249,240,233,0.72);
  margin: 0 0 24px;
  max-width: 26ch;
}

/* Diferenciais */
.pf-diff {
  background: var(--c-ionic);
  padding-block: clamp(48px, 6vw, 76px);
  text-align: center;
}
.pf-diff__lead {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(44,17,2,0.7);
  max-width: 62ch;
  margin: 0 auto 20px;
}
.pf-diff__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.pf-diff__divider span { width: 60px; height: 1px; background: rgba(44,17,2,0.25); }
.pf-diff__divider i { width: 6px; height: 6px; border-radius: 2px; transform: rotate(45deg); border: 1.3px solid var(--accent); }

.pf-diff__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.pf-diff__item svg {
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: 14px;
}
.pf-diff__icon-box {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pf-diff__laurel { max-width: 40px; max-height: 100%; width: auto; height: auto; margin: 0; }
.pf-diff__item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-apollo);
  margin: 0 0 8px;
}
.pf-diff__item p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(44,17,2,0.6);
  margin: 0;
}

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 960px) {
  .portfolio__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 26px clamp(20px, 6vw, 32px); }
  .certified__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .certified__badge { width: 140px; }
  .clients-ticker__track { font-size: 0.6875rem; gap: 10px; }
  .partners__logos { flex-direction: column; gap: 28px; }
  .partners__logo-divider { width: 60px; height: 1px; }
  .partners__logo-divider::after { }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 1100px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
  .story__inner { grid-template-columns: 1fr; }
  .story__media { min-height: 340px; margin-top: 8px; order: -1; }
  .pillar { grid-template-columns: 60px 1fr; }
  .pillar__index { font-size: 1.75rem; }
  .about-cta__inner { flex-direction: column; align-items: flex-start; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-diff__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 640px) {
  .contact-form__grid { grid-template-columns: 1fr; }
  .contact-form__field--full { grid-column: auto; }
  .contact-form__actions { align-items: stretch; flex-direction: column; }
  .pf-diff__grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--bg-night);
    padding: 40px clamp(24px, 6vw, 64px);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .main-nav__link { font-size: 1rem; }
  .btn--nav { display: none; }
  .nav-toggle { display: flex; }

  .hero__glyph { opacity: .6; }
}

@media (max-width: 640px) {
  .site-header__inner { padding-block: 18px; }
  .hero__content { padding-bottom: 90px; }
  .hero__heading { max-width: 100%; }
  .hero__lead .lead-break { display: none; }
  .hero__ticker-track { font-size: 0.6875rem; gap: 10px; }
}

@media (max-width: 860px) {
  .fstrip__block {
    min-height: 0;
    background-image: none !important;
    border-bottom: none;
  }
  .fstrip__block::before {
    content: '';
    display: block;
    width: 100%;
    height: 180px;
    background-image: inherit;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .fstrip__block--a::before { background-position: left center; }
  .fstrip__block--b::before { background-position: right center; }

  .fstrip__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start !important;
    padding: 28px clamp(24px, 6vw, 48px) 36px !important;
    gap: 20px;
  }
  .fstrip__block--b .fstrip__inner { flex-direction: column-reverse; }
  .fstrip__text { max-width: 100%; }
  .fstrip__arrow { margin: 0; }
}
