/* =========================================================
   Lucas Müller — Planejamento Estratégico
   Paleta executiva: navy / grafite + dourado
   ========================================================= */

:root {
  --navy: #0f1f33;
  --navy-700: #16304f;
  --navy-600: #1d3c63;
  --graphite: #1c2229;
  --gold: #c8a35a;
  --gold-dark: #b08d44;
  --ink: #14202e;
  --slate: #4a5a6a;
  --muted: #6b7a89;
  --line: #e4e8ed;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --bg-dark: #0f1f33;
  --white: #ffffff;

  --maxw: 1120px;
  --radius: 14px;
  --shadow: 0 18px 50px -24px rgba(15, 31, 51, 0.45);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }

.accent { color: var(--gold-dark); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 28px -12px rgba(200, 163, 90, 0.8);
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-block { width: 100%; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 31, 51, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.brand-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); }

.nav-menu { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav-menu a { color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.nav-menu a:hover { color: var(--gold); }
.nav-cta {
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  padding: 9px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ===================== HERO ===================== */
.hero {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(200,163,90,0.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--graphite) 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 22px; }
.lead { font-size: 1.12rem; color: rgba(255, 255, 255, 0.85); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-trust li { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }
.hero-trust strong { display: block; font-family: var(--font-display); font-size: 1.55rem; color: var(--white); }

/* Hero figure / portrait */
.hero-figure { position: relative; }
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, var(--navy-600), var(--graphite));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait-fallback {
  position: absolute;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(200, 163, 90, 0.55);
  display: none;
}
.portrait--placeholder .portrait-fallback { display: block; }
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -18px;
  background: var(--white);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.hero-badge-top { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.hero-badge-main { display: block; font-family: var(--font-display); font-size: 0.98rem; margin-top: 2px; }

/* ===================== LOGOS (faixa animada) ===================== */
.logos { background: var(--bg-alt); padding: 36px 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.logos-label { text-align: center; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 22px; text-transform: uppercase; }

.logos-marquee {
  display: flex;
  width: 100%;
  /* máscara para esmaecer nas bordas */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logos-track {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 28px;
  flex-shrink: 0;
  min-width: 100%;
  justify-content: space-around;
  animation: logos-scroll 38s linear infinite;
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
.logos-track li {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--slate);
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.logos-track li:hover { opacity: 1; color: var(--navy); }
/* Quando trocar por logos reais (img): */
.logos-track li img { height: 34px; width: auto; filter: grayscale(1); opacity: 0.7; transition: filter 0.2s, opacity 0.2s; }
.logos-track li img:hover { filter: grayscale(0); opacity: 1; }

@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
  .logos-track[aria-hidden="true"] { display: none; }
}

/* ===================== SECTIONS ===================== */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-head--left { text-align: left; margin: 0; }
.section-head h2, .section h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 14px; color: var(--ink); }
.section-sub { color: var(--slate); font-size: 1.05rem; }

/* ===================== ABOUT ===================== */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.about-intro h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.about-body p { margin-bottom: 18px; color: var(--slate); font-size: 1.06rem; }
.about-body strong { color: var(--ink); }
.about-highlight {
  margin: 26px 0 6px;
  padding: 20px 24px;
  background: var(--navy);
  color: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
}
.about-highlight strong { color: var(--gold); }

.about-points { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.about-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 500;
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 163, 90, 0.18);
}

/* ===================== CARDS (SERVIÇOS) ===================== */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; align-items: stretch; }
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200, 163, 90, 0.4); }
.card--featured {
  border-color: var(--gold);
  box-shadow: 0 24px 60px -28px rgba(15, 31, 51, 0.5);
}
.card-flag {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.card-icon { font-size: 1.9rem; margin-bottom: 14px; }
.card h3 { font-size: 1.32rem; margin-bottom: 12px; color: var(--ink); }
.card > p { color: var(--slate); margin-bottom: 18px; }
.card-list { list-style: none; display: grid; gap: 9px; margin-bottom: 20px; }
.card-list li { position: relative; padding-left: 22px; font-size: 0.95rem; color: var(--ink); }
.card-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--gold-dark); font-weight: 700;
}
.card-aud { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; margin-top: auto; }
.card-aud span { color: var(--ink); font-weight: 600; }
.card-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 14px 0 16px;
  margin-bottom: 16px;
  border-top: 1px solid var(--line);
}
.card-price-label { font-size: 0.78rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.card-price-row { display: flex; align-items: baseline; gap: 10px; }
.card-price-old { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.card-price-value { font-family: var(--font-display); font-size: 1.7rem; color: var(--navy); line-height: 1.1; }
.card-price-value--consult { font-size: 1.35rem; color: var(--gold-dark); }
.card-price-unit { font-size: 0.82rem; color: var(--slate); }
.card-link { color: var(--gold-dark); font-weight: 600; font-size: 0.95rem; transition: gap 0.2s; }
.card-link:hover { color: var(--navy); }

/* ===================== MÉTODO BRIO ===================== */
.section--brio {
  background:
    radial-gradient(700px 420px at 15% -10%, rgba(200,163,90,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--graphite) 100%);
  color: var(--white);
}
.section--brio h2 { color: var(--white); }
.section--brio .section-eyebrow { color: var(--gold); }
.section--brio .section-sub { color: rgba(255,255,255,0.82); }
.section--brio .section-sub em { color: var(--gold); font-style: italic; }
.brio-word { color: var(--gold); letter-spacing: 0.06em; }

.brio-quote {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  position: relative;
  padding: 0 10px;
}
.brio-quote cite { display: block; margin-top: 14px; font-size: 0.95rem; font-style: normal; color: var(--gold); }

.brio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.brio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.brio-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(255,255,255,0.07); }
.brio-letter {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.brio-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 10px; }
.brio-card p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }

/* ===================== GRÁFICO DE CRESCIMENTO ===================== */
.growth-chart {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 22px;
  margin: 0 0 32px;
}
.growth-title { text-align: center; color: var(--slate); font-size: 1.05rem; margin-bottom: 26px; }
.growth-title strong { color: var(--navy); font-family: var(--font-display); }
.growth-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 16px;
  height: 240px;
  padding-top: 24px;
}
.growth-bar {
  flex: 1;
  max-width: 110px;
  height: 0;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--navy-600), var(--navy));
  position: relative;
  transition: height 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.growth-bar--peak { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }
.growth-chart.in-view .growth-bar { height: var(--h); }
.growth-val {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
}
.growth-bar--peak .growth-val { color: var(--gold-dark); font-weight: 700; }
.growth-labels {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.growth-labels span { flex: 1; max-width: 110px; text-align: center; font-size: 0.85rem; color: var(--muted); }

/* ===================== STATS ===================== */
.result-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
  padding: 22px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%);
  color: var(--white);
  text-align: center;
}
.result-banner-from { font-size: 1.1rem; color: rgba(255,255,255,0.82); }
.result-banner-arrow { font-size: 1.6rem; color: var(--gold); }
.result-banner-to { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
}
.stat-num { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.stat-label { color: var(--slate); font-size: 0.95rem; }

/* ===================== FORMAÇÃO ===================== */
.formacao-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.formacao-langs { margin-top: 22px; color: var(--slate); font-size: 0.98rem; }
.formacao-extra { margin-top: 28px; }
.formacao-extra-title {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.formacao-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.formacao-tags li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}
.formacao-list { list-style: none; display: grid; gap: 4px; }
.formacao-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
.formacao-list .flag {
  width: 30px; height: 22px;
  flex-shrink: 0;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.formacao-text { min-width: 0; }
.formacao-list strong { display: block; color: var(--ink); font-size: 1.02rem; }
.formacao-list span { color: var(--muted); font-size: 0.92rem; }
.formacao-honor { background: var(--navy) !important; border-color: var(--navy) !important; }
.formacao-honor strong { color: var(--gold) !important; }
.formacao-honor span { color: rgba(255,255,255,0.78) !important; }

/* ===================== GALERIA / EM AÇÃO ===================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy-600);
  cursor: zoom-in;
}
/* Ícone de "ampliar" no hover */
.gallery-item::after {
  content: "⤢";
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: rgba(15, 31, 51, 0.7);
  color: var(--gold);
  border-radius: 8px;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover::after { opacity: 1; transform: scale(1); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--media { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(transparent, rgba(15,31,51,0.92));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.media-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===================== PODCAST CTA ===================== */
.podcast-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.podcast-cta:hover { transform: translateY(-4px); border-color: var(--gold); }
.podcast-thumb {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy);
}
.podcast-thumb img { width: 100%; height: 100%; object-fit: cover; }
.podcast-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(200, 163, 90, 0.95);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.2rem;
  padding-left: 4px;
  transition: transform 0.2s ease;
}
.podcast-cta:hover .podcast-play { transform: translate(-50%, -50%) scale(1.1); }
.podcast-info { display: flex; flex-direction: column; gap: 6px; }
.podcast-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dark);
}
.podcast-info strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); font-weight: 500; line-height: 1.3; }
.podcast-link-text { color: var(--gold-dark); font-weight: 600; font-size: 0.95rem; }

@media (max-width: 560px) {
  .podcast-cta { flex-direction: column; align-items: stretch; text-align: center; gap: 16px; }
  .podcast-thumb { width: 100%; }
  .podcast-info { align-items: center; }
}

/* ===================== CONTATO ===================== */
.section--contact {
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(200,163,90,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--graphite) 100%);
  color: var(--white);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.section--contact h2 { color: var(--white); }
.section--contact .section-eyebrow { color: var(--gold); }
.section--contact .section-sub { color: rgba(255, 255, 255, 0.8); }
.contact-links { list-style: none; margin-top: 30px; display: grid; gap: 16px; }
.contact-links li { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.88); }
.contact-links a:hover { color: var(--gold); }
.contact-icon { width: 22px; text-align: center; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.contact-form label { font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: var(--bg-alt);
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.contact-form .btn-block { grid-column: 1 / -1; }
.form-status { grid-column: 1 / -1; font-size: 0.9rem; text-align: center; min-height: 1em; }
.form-status.ok { color: #1c7c4a; }
.form-status.err { color: #c0392b; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--graphite); color: rgba(255, 255, 255, 0.7); padding: 28px 0; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.88rem; }
.footer-brand { font-family: var(--font-display); color: var(--white); font-size: 1.05rem; }
.footer-realizacao { display: flex; flex-direction: column; gap: 4px; }
.footer-realizacao-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-logo { height: 34px; width: auto; }
.footer-top:hover { color: var(--gold); }

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 16, 28, 0.94);
  backdrop-filter: blur(4px);
  padding: 40px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lightbox-content { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img {
  max-width: 92vw;
  max-height: 80vh;
  width: auto; height: auto;
  border-radius: 10px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
}
.lightbox-content figcaption { color: rgba(255,255,255,0.85); margin-top: 16px; font-size: 0.95rem; text-align: center; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 26px;
  background: none; border: none;
  color: var(--white);
  font-size: 2.4rem; line-height: 1;
  cursor: pointer;
  opacity: 0.8; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 2rem; line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--gold); color: var(--navy); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 560px) {
  .lightbox { padding: 16px; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .formacao-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { max-width: 360px; }
  .cards { grid-template-columns: 1fr; }
  .brio-grid { grid-template-columns: repeat(2, 1fr); }
  .brio-quote { font-size: 1.12rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item--wide,
  .gallery-item--media { grid-column: span 2; }

  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-menu a { display: block; padding: 14px 0; }
  .nav-cta { text-align: center; margin-top: 12px; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .hero { padding: 64px 0 70px; }
  .stats { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item--wide,
  .gallery-item--media { grid-column: span 1; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .hero-trust { gap: 20px; }
}
