/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0a1a;
  --bg2: #110e22;
  --gold: #f5c518;
  --gold-dark: #d4a800;
  --text: #f2eeff;
  --muted: #8b7faa;
  --border: rgba(245,197,24,0.1);
  --card: rgba(255,255,255,0.04);
  --radius: 16px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
}

.text-gold { color: var(--gold); }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #0d0a1a;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,197,24,.3); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(245,197,24,.35);
  width: 100%;
  justify-content: center;
}
.btn-outline-gold:hover { background: rgba(245,197,24,.08); border-color: var(--gold); }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(13,10,26,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  border-bottom-color: rgba(255,255,255,.07);
}

.nav-logo {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.logo-al { color: var(--gold); }
.logo-ho { color: var(--text); }
.nav-logo .logo-img { display: block; width: 46px; height: 46px; border-radius: 10px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--gold) !important;
  color: #0d0a1a !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-weight: 700 !important;
  letter-spacing: .03em;
  transition: border-color .2s, background .2s, transform .2s;
}
.nav-lang .flag { display: block; width: 20px; height: 14px; border-radius: 2px; }
.mobile-lang { display: inline-flex; align-items: center; gap: 10px; }
.mobile-lang .flag { width: 26px; height: 18px; border-radius: 3px; }
.nav-lang:hover {
  color: #fff;
  border-color: var(--gold);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 199;
  background: rgba(13,10,26,.97);
  backdrop-filter: blur(20px);
  padding: 24px 32px 32px;
  border-bottom: 1px solid var(--border);
  transform: translateY(calc(-100% - var(--nav-h) - 12px));
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── HERO (v2 · estilo "discussions") ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 110px 24px 60px;
  background: radial-gradient(130% 95% at 50% 8%, #1b1535 0%, #0d0a1a 62%);
}

/* anéis concêntricos */
.hero-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
}
.ring-1 { width: 460px;  height: 460px; }
.ring-2 { width: 760px;  height: 760px; }
.ring-3 { width: 1080px; height: 1080px; }
.ring-4 { width: 1440px; height: 1440px; }
.ring-5 { width: 1840px; height: 1840px; }
.ring-6 { width: 2280px; height: 2280px; }

/* fotos reais a flutuar (fundo transparente, sem caixa) */
.hero-photos { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-photos img {
  position: absolute;
  height: auto;
  object-fit: contain;
  translate: -50% -50%;                 /* centra no ponto left/top */
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.55));
  animation: floaty 7s ease-in-out infinite;   /* flutua via transform */
  pointer-events: auto;                 /* só as fotos reagem ao rato */
  cursor: pointer;
  transition: scale .35s cubic-bezier(.34,1.56,.64,1), rotate .35s ease, filter .35s ease;
}
.hero-photos img:hover {
  scale: 1.2;
  rotate: -4deg;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,.6));
  animation-play-state: paused;         /* pára de flutuar enquanto passas o rato */
}
.hero-photos img:nth-child(2n) { animation-duration: 8.5s; animation-delay: -2s; }
.hero-photos img:nth-child(3n) { animation-duration: 9.5s; animation-delay: -4s; }
.hero-photos img:nth-child(4n) { animation-duration: 7.6s; animation-delay: -1.2s; }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

/* conteúdo central */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(242,238,255,.72);
  max-width: 520px;
  margin: 0 auto 34px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* mobile: esconder órbitas/fotos para não poluir */
@media (max-width: 820px) {
  .hero { padding-top: 120px; }
  .hero-rings, .hero-photos { display: none; }
}

/* ─── PROBLEMA ─── */
.problema {
  padding: 120px 0;
  background: var(--bg2);
}

.problema-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.big-quote {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
}

.problema-img {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;           /* horizontal (landscape) */
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}

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

.problem-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.problem-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
  transition: height .4s ease;
}
.problem-card:hover { border-color: rgba(245,197,24,.25); transform: translateY(-4px); }
.problem-card:hover::after { height: 100%; }

.problem-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(245,197,24,.1);
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.problem-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.problem-card p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }

.problem-cta-card {
  background: linear-gradient(135deg, rgba(245,197,24,.1), rgba(124,58,237,.06));
  border: 1px solid rgba(245,197,24,.2);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.problem-cta-card p { font-size: 1.05rem; font-weight: 600; }

/* ─── PORTFOLIO ─── */
.portfolio {
  padding: 120px 0;
  background: var(--bg);
}

.portfolio-header { margin-bottom: 72px; }

/* ── nixtio.com style grid ── */
.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* base card */
.pj-card { border-radius: 20px; overflow: hidden; cursor: pointer; }

/* todos os cards ocupam uma coluna na grid de 3 */
.pj-card--wide { grid-column: auto; }

.pj-card-img {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 20px;
  background: #1a1530;
}
/* altura uniforme para todos os cards */
.pj-card--tall .pj-card-img,
.pj-card--wide .pj-card-img  { height: 460px; }

/* both images fill the card */
.pj-img-default,
.pj-img-hover {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.pj-img-default { opacity: 1; transform: scale(1); z-index: 1; }
.pj-img-hover   { opacity: 0; transform: scale(1.06); z-index: 2; }

.pj-card:hover .pj-img-default { opacity: 0; transform: scale(1.06); }
.pj-card:hover .pj-img-hover   { opacity: 1; transform: scale(1); }

/* gradient overlay always present */
.pj-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(13,10,26,.92) 0%, rgba(13,10,26,.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background .4s;
}
.pj-card:hover .pj-card-overlay {
  background: linear-gradient(to top, rgba(13,10,26,.97) 0%, rgba(13,10,26,.2) 55%, transparent 100%);
}

.pj-card-info { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; }

.pj-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s;
}
.pj-card:hover .pj-tag { opacity: 1; transform: translateY(0); }

.pj-title {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  transition: color .3s;
}
.pj-card:hover .pj-title { color: var(--gold); }

.pj-services {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  margin-top: 4px;
  transform: translateY(6px);
  opacity: .8;
  transition: opacity .35s, transform .35s, color .3s;
}
.pj-card:hover .pj-services { opacity: 1; transform: translateY(0); color: rgba(255,255,255,.8); }

.pj-arrow {
  align-self: flex-end;
  margin-top: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
  transition: border-color .3s, color .3s, transform .35s, background .3s;
  transform: translateY(10px);
  opacity: 0;
}
.pj-card:hover .pj-arrow {
  opacity: 1;
  transform: translateY(0) rotate(-45deg);
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,197,24,.1);
}

/* ─── SERVIÇOS ─── */
.servicos {
  padding: 120px 0;
  background: var(--bg2);
}

/* header row: title left + CTA right */
.servicos-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.servicos-top-left { flex: 1; }
.servicos-cta { flex-shrink: 0; }

/* 3×2 card grid */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* individual card */
.sc-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: default;
  transition: border-color .3s, transform .35s cubic-bezier(.4,0,.2,1), background .3s;
  /* staggered entrance */
  opacity: 0;
  transform: translateY(40px);
}
.sc-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.sc-card:hover {
  border-color: rgba(245,197,24,.35);
  transform: translateY(-6px);
  background: rgba(245,197,24,.04);
}

/* icon circle */
.sc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 6px;
  transition: border-color .3s, color .3s, background .3s;
}
.sc-card:hover .sc-icon {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,197,24,.08);
}

.sc-category {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.sc-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  transition: color .3s;
}
.sc-card:hover .sc-title { color: var(--gold); }

.sc-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.sc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 8px;
  transition: color .2s, gap .2s;
}
.sc-more svg { transition: transform .25s; }
.sc-card:hover .sc-more { color: var(--gold); gap: 10px; }
.sc-card:hover .sc-more svg { transform: translateX(3px); }


/* ─── CONSULTORIA GRATUITA ─── */
.consultoria {
  padding: 120px 0;
  background: var(--bg2);
}

.consultoria-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.consultoria-header .section-sub {
  margin: 0 auto;
}

/* 3 steps row */
.consult-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 56px;
}

.consult-step {
  flex: 1;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.consult-step:hover { border-color: rgba(245,197,24,.3); transform: translateY(-5px); }

.consult-step-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
}
.consult-step h3 { font-size: 1rem; font-weight: 700; }
.consult-step p  { font-size: .84rem; color: var(--muted); line-height: 1.75; }

.consult-step-arrow {
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--gold);
  opacity: .35;
  flex-shrink: 0;
  align-self: center;
}

/* what you get box */
.consult-includes {
  border: 1px dashed rgba(245,197,24,.22);
  border-radius: var(--radius);
  padding: 44px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  margin-bottom: 64px;
}

.consult-includes-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.consult-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  list-style: none;
}
.consult-checklist li {
  font-size: .88rem;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  text-align: left;
}
.consult-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* main CTA */
.consult-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.consult-main-btn {
  font-size: 1.05rem;
  padding: 18px 44px;
}

.consult-note {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ─── PORQUE NÓS ─── */
.porque {
  padding: 120px 0;
  background: var(--bg);
}

.porque-header {
  margin-bottom: 56px;
}
.porque-header .section-title { max-width: 640px; }

/* asymmetric grid like expert.io reference:
   cols: 1fr 1fr 1fr
   rows: auto auto
   featured card spans col3, rows 1-2          */
.porque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

/* cards 1 & 2: row1 col1+col2 */
/* card featured: col3, rows 1-2             */
/* cards 3 & 4 (actually 4&5): row2 col1+col2 */

/* Base card */
.pc-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .3s, transform .3s;
}
.pc-card:hover { border-color: rgba(245,197,24,.25); transform: translateY(-4px); }

/* featured card — col 3, spans 2 rows */
.pc-card--featured {
  grid-column: 3;
  grid-row: 1 / 3;
  background: #1a1040;
  border-color: rgba(255,255,255,.12);
  justify-content: space-between;
}
.pc-card--featured:hover { border-color: rgba(245,197,24,.3); transform: translateY(-4px); }

.pc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 4px;
  transition: border-color .3s, color .3s, background .3s;
}
.pc-card:hover .pc-icon { border-color: var(--gold); color: var(--gold); background: rgba(245,197,24,.06); }

.pc-icon--light {
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
}
.pc-card--featured:hover .pc-icon--light { border-color: var(--gold); color: var(--gold); }

.pc-card h4 { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.pc-card p  { font-size: .86rem; color: var(--muted); line-height: 1.7; flex: 1; }
.pc-card--featured p { color: rgba(255,255,255,.6); }

.pc-btn { margin-top: 12px; align-self: flex-start; }

/* ─── CONTACTO ─── */
.contacto {
  padding: 120px 0;
  background: var(--bg2);
}

.contacto-top {
  margin-bottom: 64px;
}
.contacto-top .section-title { max-width: 640px; }
.contacto-top .section-sub   { max-width: 540px; margin-top: 12px; }

/* main layout: info col + form col, side by side, form slightly overlaps top */
.contacto-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
}

/* INFO COLUMN */
.contacto-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 100px;
}

.contacto-photo {
  position: relative;
  height: 400px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.contacto-photo img { width: 100%; height: 100%; object-fit: cover; }

.contacto-photo-badge {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(13,10,26,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contacto-details {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: var(--muted);
  transition: color .2s;
  text-decoration: none;
}
.info-row:hover { color: var(--text); }

.info-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(245,197,24,.08);
  border: 1px solid rgba(245,197,24,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

/* FORM COLUMN */
.contacto-form-col {}

.contacto-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  transition: border-color .2s, background .2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(139,127,170,.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245,197,24,.03);
}
.form-group select option { background: #1a1530; }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ─── FOOTER ─── */
.footer {
  padding: 56px 0 36px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo { font-size: 1.9rem; }
.footer-logo .logo-img { width: 76px; height: 76px; border-radius: 16px; }
.footer-tag { font-size: .88rem; color: var(--muted); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: .82rem; color: var(--muted); transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: .75rem; color: rgba(139,127,170,.4); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .consult-steps { gap: 0; }
}

@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .porque-grid   { grid-template-columns: repeat(2, 1fr); }
  .pc-card--featured { grid-column: 1 / -1; grid-row: auto; }
  .contacto-layout { grid-template-columns: 1fr 1.2fr; }
}

@media (max-width: 900px) {
  .problema-intro { grid-template-columns: 1fr; }
  .problema-img { height: 280px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .porque-grid   { grid-template-columns: 1fr; }
  .contacto-layout { grid-template-columns: 1fr; }
  .contacto-info-col { position: static; }
  .contacto-photo { height: 260px; border-radius: 16px 16px 0 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .pj-card--wide { grid-column: 1; }
  .pj-card-img { height: 300px !important; }
}

@media (max-width: 680px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .problems-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }
  .consult-steps { flex-direction: column; gap: 16px; }
  .consult-step-arrow { transform: rotate(90deg); padding: 0; align-self: center; }
  .consult-includes { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contacto-photo { width: 100%; height: 240px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .projects-list { padding: 0 20px; }
  .servicos-top { flex-direction: column; align-items: flex-start; }
}
