/* ============================================================
   NOVA ARTE VISUAL — FOLHA DE ESTILOS
   ============================================================ */

/* ---------- Tokens de marca / cores ---------- */
:root {
  --background: #fbfbfd;
  --foreground: #0d132d;
  --card: #ffffff;
  --border: #e6e6ec;

  --navy: #0d132d;
  --navy-soft: #141d40;
  --roxo: #290431;
  --cloud: #f5f5f7;
  --ink-muted: #6a6f7e;
  --gold: #c8a44d;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.container--xs { max-width: 896px; }
.container--sm { max-width: 896px; }
.container--md { max-width: 1152px; }
.container--lg { max-width: 1152px; }
.container--xl { max-width: 1280px; }

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-lead {
  margin-top: 24px;
  line-height: 1.65;
  text-wrap: pretty;
}

.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline; } }

.text-brand-gradient {
  background-image: linear-gradient(100deg, #4254c4 0%, #a23ec6 28%, #e0496f 52%, #ec8a45 74%, #36b877 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s var(--ease-out-expo), background-color 0.3s, opacity 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.03); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--white { background: #fff; color: var(--navy); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.1); transform: none; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Reveal (fade + leve subida ao entrar na tela) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  transition: background-color 0.5s, backdrop-filter 0.5s;
}
.navbar--scrolled {
  background: rgba(13, 19, 45, 0.62);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) {
  .navbar__inner { height: 72px; }
}
.navbar__logo img { height: 36px; width: auto; }
@media (min-width: 768px) {
  .navbar__logo img { height: 40px; }
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 36px;
}
@media (min-width: 1024px) {
  .navbar__links { display: flex; }
}
.navbar__links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
  padding-bottom: 4px;
}
.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.3s;
}
.navbar__links a:hover { color: #fff; }
.navbar__links a:hover::after { width: 100%; }

.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__cta { display: none; padding: 10px 20px; font-size: 13px; }
@media (min-width: 768px) {
  .navbar__cta { display: inline-flex; }
}

.navbar__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  border: none;
}
@media (min-width: 1024px) {
  .navbar__toggle { display: none; }
}
.navbar__toggle .icon-close { display: none; }

.navbar__mobile {
  overflow: hidden;
  max-height: 0;
  background: rgba(13, 19, 45, 0.62);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: max-height 0.4s var(--ease-out-expo);
}
@media (min-width: 1024px) {
  .navbar__mobile { display: none; }
}
.navbar__mobile.is-open { max-height: 480px; }
.navbar__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
}
.navbar__mobile a {
  display: block;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.2s, color 0.2s;
}
.navbar__mobile a:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.navbar__mobile li.navbar__mobile-cta { margin-top: 8px; }
.navbar__mobile li.navbar__mobile-cta a {
  background: #fff;
  color: var(--navy);
  text-align: center;
  font-weight: 600;
  border-radius: 999px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
}
.hero__media {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero__gradient-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 19, 45, 0.85), rgba(13, 19, 45, 0.45), var(--navy));
}
.hero__gradient-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy), transparent, rgba(13, 19, 45, 0.4));
}
.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 20px;
  text-align: center;
}
.hero__logo { margin-bottom: 24px; }
.hero__logo img { height: 112px; width: auto; max-height: 22vh; }
@media (min-width: 640px) { .hero__logo img { height: 160px; } }
@media (min-width: 768px) { .hero__logo img { height: 224px; } }
@media (min-width: 1024px) { .hero__logo img { height: 288px; } }

.hero__kicker {
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) { .hero__kicker { font-size: 12px; } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: #fff;
  font-size: clamp(2.6rem, 8vw, 6rem);
  text-wrap: balance;
}

.hero__text {
  margin: 28px auto 0;
  max-width: 672px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  text-wrap: pretty;
}
@media (min-width: 768px) { .hero__text { font-size: 18px; } }

.hero__actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; }
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  right: 20px;
  z-index: 20;
}
@media (min-width: 768px) { .hero__badge { bottom: 40px; right: 40px; } }
.hero__badge img {
  animation: float 5s ease-in-out infinite;
  border-radius: 999px;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.4));
  width: 96px;
  height: 96px;
}
@media (min-width: 640px) { .hero__badge img { width: 128px; height: 128px; } }
@media (min-width: 768px) { .hero__badge img { width: 160px; height: 160px; } }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  animation: bob 2s ease-in-out infinite;
}
.hero__scroll-hint span {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.hero__scroll-hint svg { width: 16px; height: 16px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { background: var(--background); padding: 112px 0; }
.manifesto > .container { max-width: 1024px; }
@media (min-width: 768px) { .manifesto { padding: 160px 0; } }
.manifesto__kicker {
  margin-bottom: 40px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
}
.manifesto__phrase {
  text-align: center;
  text-wrap: balance;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
}
.manifesto__word {
  margin-right: 0.28em;
  display: inline-block;
  color: var(--navy);
  opacity: 0.15;
  transition: opacity 0.2s linear;
}
.manifesto__word--highlight { color: var(--roxo); }
.manifesto__credit {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: var(--ink-muted);
  opacity: 0;
  transition: opacity 0.2s linear;
}
@media (min-width: 768px) { .manifesto__credit { font-size: 20px; } }

/* ============================================================
   PROVA SOCIAL (sede)
   ============================================================ */
.prova-social { background: var(--navy); padding: 96px 0; }
@media (min-width: 768px) { .prova-social { padding: 128px 0; } }
.prova-social__head { max-width: 768px; margin: 0 auto; text-align: center; }
.prova-social__head .eyebrow { color: rgba(255, 255, 255, 0.45); }
.prova-social__head .section-title { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.08; }
.prova-social__head .section-lead { color: rgba(255, 255, 255, 0.6); max-width: 672px; margin-left: auto; margin-right: auto; font-size: 16px; }
@media (min-width: 768px) { .prova-social__head .section-lead { font-size: 18px; } }

.prova-social__frame {
  position: relative;
  margin-top: 56px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy-soft);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) { .prova-social__frame { aspect-ratio: 21 / 9; } }
.prova-social__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prova-social__frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 19, 45, 0.75), transparent 60%);
  pointer-events: none;
}
.prova-social__badge {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (min-width: 768px) { .prova-social__badge { top: 32px; right: 32px; } }
.prova-social__badge img {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}
@media (min-width: 768px) { .prova-social__badge img { width: 128px; height: 128px; } }
.prova-social__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
}
@media (min-width: 768px) { .prova-social__caption { padding: 40px; } }
.prova-social__caption p:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}
@media (min-width: 768px) { .prova-social__caption p:first-child { font-size: 24px; } }
.prova-social__caption p:last-child { margin-top: 4px; font-size: 14px; color: rgba(255, 255, 255, 0.7); }
@media (min-width: 768px) { .prova-social__caption p:last-child { font-size: 16px; } }

/* ============================================================
   SOLUÇÕES
   ============================================================ */
.solutions { background: var(--cloud); padding: 96px 0; }
@media (min-width: 768px) { .solutions { padding: 128px 0; } }
.solutions__head { max-width: 768px; }
.solutions__head .eyebrow { color: var(--ink-muted); }
.solutions__head .section-title { color: var(--navy); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; }
.solutions__head .section-lead { max-width: 672px; color: var(--ink-muted); font-size: 18px; }

.solutions__list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
@media (min-width: 768px) { .solutions__list { gap: 128px; } }

.solution-row {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .solution-row { grid-template-columns: 1fr 1fr; gap: 64px; }
  .solution-row--reversed .solution-row__media { order: 2; }
  .solution-row--reversed .solution-row__text { order: 1; }
}
.solution-row__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  box-shadow: 0 25px 50px -12px rgba(13, 19, 45, 0.2);
}
.solution-row__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-row__index {
  position: absolute;
  left: 24px;
  top: 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
}
.solution-row__text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  text-wrap: balance;
}
.solution-row__text p {
  margin-top: 20px;
  max-width: 480px;
  color: var(--ink-muted);
  line-height: 1.65;
  font-size: 16px;
  text-wrap: pretty;
}
@media (min-width: 768px) { .solution-row__text p { font-size: 18px; } }
.solution-row__bullets {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.solution-row__bullets li {
  border: 1px solid rgba(13, 19, 45, 0.12);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.solutions__cta {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.solutions__cta p { font-size: 18px; font-weight: 500; color: var(--navy); text-wrap: pretty; }

/* ============================================================
   CLIENTES
   ============================================================ */
.clientes { overflow: hidden; background: var(--background); padding: 96px 0; }
@media (min-width: 768px) { .clientes { padding: 128px 0; } }
.clientes__head { margin: 0 auto; text-align: center; }
.clientes__head .eyebrow { color: rgba(13, 19, 45, 0.4); }
.clientes__head .section-title { font-weight: 600; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; }
.clientes__head .section-lead { max-width: 576px; margin-left: auto; margin-right: auto; color: rgba(13, 19, 45, 0.55); font-size: 16px; }

.clientes__grid {
  margin: 64px auto 0;
  max-width: 1152px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 20px;
}
@media (min-width: 640px) { .clientes__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 768px) { .clientes__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 0 32px; gap: 20px; } }

.cliente-card {
  display: flex;
  height: 112px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cliente-card:hover { transform: translateY(-4px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); }
@media (min-width: 768px) { .cliente-card { height: 128px; } }
.cliente-card__logo {
  width: auto;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out-expo);
}
.cliente-card:hover .cliente-card__logo { transform: scale(1.1); }
.cliente-card__logo.logo-sm { height: 64px; max-width: 170px; }
@media (min-width: 768px) { .cliente-card__logo.logo-sm { height: 80px; } }
.cliente-card__logo.logo-lg { height: 96px; max-width: 210px; }
@media (min-width: 768px) { .cliente-card__logo.logo-lg { height: 112px; } }
.cliente-card__logo.logo-md { height: 80px; max-width: 180px; }

/* ============================================================
   MERCADOS
   ============================================================ */
.mercados { position: relative; overflow: hidden; background: var(--navy); padding: 112px 0; }
@media (min-width: 768px) { .mercados { padding: 160px 0; } }
.mercados__bg { position: absolute; inset: 0; opacity: 0.3; }
.mercados__bg img { width: 100%; height: 100%; object-fit: cover; }
.mercados__gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--navy), rgba(13, 19, 45, 0.8), var(--navy)); }
.mercados__inner { position: relative; z-index: 10; }
.mercados__head { max-width: 768px; }
.mercados__head .eyebrow { color: rgba(255, 255, 255, 0.5); }
.mercados__head .section-title { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; }
.mercados__head .section-lead { max-width: 672px; color: rgba(255, 255, 255, 0.65); font-size: 18px; }

.mercados__grid {
  margin-top: 64px;
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) { .mercados__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } }
.mercado-card {
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  padding: 32px;
  transition: border-color 0.5s, background-color 0.5s;
}
.mercado-card:hover { border-color: rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.07); }
.mercado-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.5s, color 0.5s;
}
.mercado-card:hover .mercado-card__icon { background: #fff; color: var(--navy); }
.mercado-card__icon svg { width: 24px; height: 24px; }
.mercado-card h3 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
.mercado-card p { margin-top: 12px; font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, 0.6); text-wrap: pretty; }

/* ============================================================
   ESTATÍSTICAS (Stats)
   ============================================================ */
.stats { background: var(--background); padding: 96px 0; }
@media (min-width: 768px) { .stats { padding: 128px 0; } }
.stats__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) { .stats__grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.stats__badge-wrap { display: flex; justify-content: center; position: relative; }
@media (min-width: 1024px) { .stats__badge-wrap { justify-content: flex-start; } }
.stats__badge { position: relative; }
.stats__badge img {
  width: 256px;
  height: 256px;
  border-radius: 999px;
  animation: float 5s ease-in-out infinite;
}
@media (min-width: 768px) { .stats__badge img { width: 320px; height: 320px; } }
.stats__badge-glow {
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(200, 164, 77, 0.1);
  filter: blur(48px);
}

.stats__head .eyebrow { color: var(--ink-muted); margin-bottom: 16px; }
.stats__head .section-title { color: var(--navy); font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.08; }
.stats__head .section-lead { max-width: 512px; color: var(--ink-muted); font-size: 16px; }
@media (min-width: 768px) { .stats__head .section-lead { font-size: 18px; } }

.stats__numbers {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 40px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}
.stat-item p:first-of-type { margin-top: 12px; font-size: 14px; font-weight: 500; line-height: 1.3; color: var(--navy); }
.stat-item p:last-of-type { font-size: 12px; color: var(--ink-muted); }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais { background: var(--cloud); padding: 96px 0; }
@media (min-width: 768px) { .diferenciais { padding: 128px 0; } }
.diferenciais__head { max-width: 768px; }
.diferenciais__head .eyebrow { color: var(--ink-muted); }
.diferenciais__head .section-title { color: var(--navy); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; }
.diferenciais__head .section-lead { max-width: 672px; color: var(--ink-muted); font-size: 18px; }

.diferenciais__grid {
  margin-top: 64px;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(13, 19, 45, 0.1);
  background: rgba(13, 19, 45, 0.1);
}
@media (min-width: 640px) { .diferenciais__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .diferenciais__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.diferencial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--cloud);
  padding: 32px;
  transition: background-color 0.5s;
}
.diferencial-card:hover { background: #fff; }
.diferencial-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  transition: transform 0.5s;
}
.diferencial-card:hover .diferencial-card__icon { transform: scale(1.1); }
.diferencial-card__icon svg { width: 24px; height: 24px; }
.diferencial-card h3 { margin-top: 24px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--navy); }
.diferencial-card p { margin-top: 12px; font-size: 14px; line-height: 1.65; color: var(--ink-muted); text-wrap: pretty; }

/* ============================================================
   CERTIFICAÇÃO (ISO)
   ============================================================ */
.certificacao { background: var(--navy); padding: 96px 0; }
@media (min-width: 768px) { .certificacao { padding: 128px 0; } }
.certificacao__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .certificacao__grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.certificacao__head .eyebrow { color: var(--gold); }
.certificacao__head .section-title { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.06; }
.certificacao__head .section-lead { max-width: 576px; color: rgba(255, 255, 255, 0.65); font-size: 16px; }
@media (min-width: 768px) { .certificacao__head .section-lead { font-size: 18px; } }

.certificacao__etapas { margin-top: 40px; display: grid; gap: 16px; }
.etapa-card { display: flex; align-items: flex-start; gap: 16px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.05); padding: 20px; }
.etapa-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(200, 164, 77, 0.15);
  color: var(--gold);
}
.etapa-card__icon svg { width: 20px; height: 20px; }
.etapa-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; }
.etapa-card p { margin-top: 4px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.55); text-wrap: pretty; }

.certificacao__seal {
  margin: 0 auto;
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 380px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.07), transparent);
}
.certificacao__seal-inner { display: flex; flex-direction: column; align-items: center; padding: 0 32px; text-align: center; }
.certificacao__seal img { width: 192px; height: 192px; object-fit: contain; filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.3)); }
@media (min-width: 768px) { .certificacao__seal img { width: 240px; height: 240px; } }
.certificacao__seal p:nth-child(2) { margin-top: 24px; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold); }
.certificacao__seal p:nth-child(3) { margin-top: 16px; max-width: 260px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.55); text-wrap: pretty; }

/* ============================================================
   VALORES
   ============================================================ */
.valores { background: var(--background); padding: 96px 0; }
@media (min-width: 768px) { .valores { padding: 128px 0; } }
.valores__grid { display: grid; gap: 40px; align-items: stretch; }
@media (min-width: 1024px) { .valores__grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.valores__media { position: relative; min-height: 360px; overflow: hidden; border-radius: 24px; background: var(--navy); }
@media (min-width: 1024px) { .valores__media { min-height: 100%; } }
.valores__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.valores__media-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 19, 45, 0.9), rgba(13, 19, 45, 0.2), transparent); }
.valores__media-caption { position: absolute; bottom: 0; left: 0; padding: 32px; }
@media (min-width: 768px) { .valores__media-caption { padding: 40px; } }
.valores__media-caption p { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: #fff; text-wrap: balance; }

.valores__content { display: flex; flex-direction: column; justify-content: center; }
.valores__content .eyebrow { color: var(--ink-muted); margin-bottom: 16px; }
.valores__content .section-title { color: var(--navy); font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.08; }

.valores__list {
  margin-top: 40px;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(13, 19, 45, 0.1);
  background: rgba(13, 19, 45, 0.1);
}
@media (min-width: 640px) { .valores__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.valor-card { height: 100%; background: var(--background); padding: 28px; }
.valor-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--roxo); }
.valor-card p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--ink-muted); text-wrap: pretty; }

/* ============================================================
   FUNDADOR
   ============================================================ */
.fundador { background: var(--background); padding: 96px 0; }
@media (min-width: 768px) { .fundador { padding: 128px 0; } }
.fundador__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .fundador__grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.fundador__photo-wrap { position: relative; }
.fundador__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 10px 30px rgba(13, 19, 45, 0.12);
}
.fundador__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fundador__card {
  position: absolute;
  bottom: -20px;
  left: 24px;
  right: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 24px;
  box-shadow: 0 8px 20px rgba(13, 19, 45, 0.1);
  backdrop-filter: blur(6px);
}
@media (min-width: 768px) { .fundador__card { left: 32px; right: auto; } }
.fundador__card p:first-child { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.2; color: var(--foreground); }
.fundador__card p:last-child { margin-top: 4px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--navy); }

.fundador__text .eyebrow { color: rgba(13, 19, 45, 0.4); }
.fundador__text .section-title { font-weight: 600; color: var(--foreground); font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.1; }
.fundador__text .section-body { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; font-size: 16px; line-height: 1.65; color: rgba(13, 19, 45, 0.6); text-wrap: pretty; }

/* ============================================================
   PROJETOS
   ============================================================ */
.projetos { background: var(--navy); padding: 96px 0; }
@media (min-width: 768px) { .projetos { padding: 128px 0; } }
.projetos__head { margin: 0 auto; text-align: center; }
.projetos__head .eyebrow { color: rgba(255, 255, 255, 0.4); }
.projetos__head .section-title { font-weight: 600; color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; }
.projetos__head .section-lead { max-width: 576px; margin-left: auto; margin-right: auto; color: rgba(255, 255, 255, 0.55); font-size: 16px; }

/* Mobile: feed vertical 4:5 com leve parallax */
.projetos__mobile { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; padding: 0 16px; }
@media (min-width: 640px) { .projetos__mobile { display: none; } }
.projeto-card-mobile { position: relative; overflow: hidden; border-radius: 24px; background: var(--navy-soft); }
.projeto-card-mobile__frame { position: relative; aspect-ratio: 4 / 5; width: 100%; overflow: hidden; }
.projeto-card-mobile__img-wrap { position: absolute; inset: -10% 0; height: 120%; }
.projeto-card-mobile__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.projeto-card-mobile__overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--navy), rgba(13, 19, 45, 0.2), transparent); }
.projeto-card-mobile__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; }
.projeto-card-mobile__caption p:first-child { font-size: 10.4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.75); }
.projeto-card-mobile__caption p:last-child { margin-top: 4px; font-family: var(--font-display); font-weight: 600; font-size: 20px; color: #fff; text-wrap: balance; }

/* Desktop: acordeão em linhas */
.projetos__desktop { display: none; margin: 64px auto 0; max-width: 1280px; flex-direction: column; gap: 16px; padding: 0 32px; }
@media (min-width: 640px) { .projetos__desktop { display: flex; } }
.projetos__row { display: flex; gap: 16px; }
.projeto-card-desktop {
  position: relative;
  height: 288px;
  flex: 1 1 0%;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy-soft);
  cursor: pointer;
  transition: flex-grow 0.5s var(--ease-out-expo);
}
.projeto-card-desktop:hover { flex-grow: 2.4; }
.projeto-card-desktop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.projeto-card-desktop:hover img { transform: scale(1.05); }
.projeto-card-desktop__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 19, 45, 0.85), rgba(13, 19, 45, 0.1), transparent);
  opacity: 0.7;
  transition: opacity 0.5s;
}
.projeto-card-desktop:hover .projeto-card-desktop__overlay { opacity: 1; }
.projeto-card-desktop__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.projeto-card-desktop:hover .projeto-card-desktop__caption { opacity: 1; transform: translateY(0); }
.projeto-card-desktop__caption p:first-child { font-size: 10.4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.7); }
.projeto-card-desktop__caption p:last-child { margin-top: 4px; white-space: nowrap; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff; }

.projetos__cta {
  margin: 64px auto 0;
  display: flex;
  max-width: 672px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  text-align: center;
}
.projetos__cta p { font-size: 18px; font-weight: 500; color: rgba(255, 255, 255, 0.8); text-wrap: pretty; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato { background: var(--navy); padding: 96px 0; }
@media (min-width: 768px) { .contato { padding: 128px 0; } }
.contato__grid { display: grid; gap: 56px; }
@media (min-width: 1024px) { .contato__grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.contato__head .eyebrow { color: rgba(255, 255, 255, 0.45); }
.contato__head .section-title { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; }
.contato__head .section-lead { max-width: 448px; color: rgba(255, 255, 255, 0.65); font-size: 18px; }

.contato__info { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contato-item { display: flex; align-items: flex-start; gap: 16px; }
.contato-item__icon {
  margin-top: 2px;
  flex-shrink: 0;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.contato-item__icon svg { width: 20px; height: 20px; }
.contato-item p { font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, 0.7); }
.contato-item a { transition: color 0.3s; }
.contato-item a:hover { color: #fff; }

.contato__socials { margin-top: 32px; display: flex; gap: 12px; }
.contato__social-btn {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.3s, color 0.3s;
}
.contato__social-btn:hover { border-color: #fff; color: #fff; }
.contato__social-btn svg { width: 20px; height: 20px; }

.contato__form-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  backdrop-filter: blur(6px);
}
@media (min-width: 768px) { .contato__form-card { padding: 32px; } }

.form-field { display: block; margin-bottom: 16px; }
.form-field:last-of-type { margin-bottom: 0; }
.form-field span {
  margin-bottom: 8px;
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}
.form-field span em { color: rgba(255, 255, 255, 0.3); font-style: normal; }
.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-field input:focus,
.form-field textarea:focus { border-color: rgba(255, 255, 255, 0.4); }
.form-field textarea { resize: none; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.contato__submit { margin-top: 8px; width: 100%; }
.contato__erro { margin-top: 12px; text-align: center; font-size: 14px; color: #fca5a5; }
.contato__erro a { text-decoration: underline; }

/* Corrige o atributo HTML [hidden]: sem esta regra, o display:flex
   definido abaixo teria mais especificidade e o bloco de "sucesso"
   apareceria sempre visível, mesmo antes do formulário ser enviado. */
[hidden] {
  display: none !important;
}

.contato__sucesso { display: flex; min-height: 420px; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.contato__sucesso-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
}
.contato__sucesso-icon svg { width: 28px; height: 28px; }
.contato__sucesso h3 { margin-top: 24px; font-family: var(--font-display); font-weight: 600; font-size: 24px; color: #fff; }
.contato__sucesso p { margin-top: 12px; max-width: 280px; font-size: 14px; color: rgba(255, 255, 255, 0.6); text-wrap: pretty; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid rgba(255, 255, 255, 0.1); background: var(--navy); }
.footer__inner { padding-top: 64px; padding-bottom: 64px; }
.footer__top { display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 768px) { .footer__top { flex-direction: row; align-items: flex-start; justify-content: space-between; } }

.footer__brand { max-width: 400px; }
.footer__brand img { height: 96px; width: auto; }
@media (min-width: 768px) { .footer__brand img { height: 112px; } }
.footer__brand p { margin-top: 24px; font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, 0.55); text-wrap: pretty; }
.footer__socials { margin-top: 24px; display: flex; gap: 12px; }
.footer__social-btn {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s, color 0.2s;
}
.footer__social-btn:hover { border-color: #fff; color: #fff; }
.footer__social-btn svg { width: 18px; height: 18px; }

.footer__columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
@media (min-width: 640px) { .footer__columns { gap: 64px; } }
.footer__col h3 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.4); }
.footer__col ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 14px; color: rgba(255, 255, 255, 0.65); transition: color 0.2s; overflow-wrap: break-word; }
.footer__col a:hover { color: #fff; }
.footer__col li { font-size: 14px; color: rgba(255, 255, 255, 0.65); overflow-wrap: break-word; }
.footer__col li.footer__address { padding-top: 4px; line-height: 1.65; color: rgba(255, 255, 255, 0.45); }

.footer__bottom {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
