/* ===== VARIÁVEIS ===== */
:root {
  --bg: #0b1220;
  --bg2: #0f1a2e;
  --bg3: #132040;
  --gold: #4a9edd;
  --gold2: #72b8f0;
  --white: #f5f8ff;
  --gray: #7a90b0;
  --gray2: #2a3d5a;
  --border: rgba(74,158,221,0.18);
  --font: 'Montserrat', sans-serif;
  --font2: 'Inter', sans-serif;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--white); font-family: var(--font2); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITÁRIOS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; font-family: var(--font); }

/* ===== BOTÕES ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: var(--transition);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 44px; border-radius: 4px; }
.footer-brand img { height: 44px; border-radius: 4px; margin-bottom: 16px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-menu a {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO / CAPA ===== */
.hero-capa {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0f1e35 0%, #0b1728 50%, #0d1c30 100%);
  padding: 120px 24px 100px;
}

/* Círculos decorativos — canto superior direito */
.capa-circles {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  z-index: 0;
}
.capa-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(74,158,221,0.45);
}
.capa-circle.c1 { width: 260px; height: 260px; top: 0; right: 0; }
.capa-circle.c2 { width: 200px; height: 200px; top: 30px; right: 30px; }
.capa-circle.c3 { width: 140px; height: 140px; top: 60px; right: 60px; }

/* Linhas decorativas — canto inferior esquerdo */
.capa-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 0 28px 0;
  pointer-events: none;
  z-index: 0;
}
.capa-lines span {
  display: block;
  width: 280px;
  height: 2px;
  background: rgba(74,158,221,0.55);
}

/* Conteúdo central */
.capa-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.capa-logo {
  margin-bottom: 36px;
}
.capa-logo img {
  height: clamp(180px, 20vw, 280px);
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  filter: drop-shadow(0 4px 24px rgba(74,158,221,0.25));
}

.capa-divider {
  width: 120px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 32px;
  opacity: 0.7;
}

.capa-sub {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: rgba(245,248,255,0.65);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.capa-title {
  font-family: var(--font);
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 18px;
}

.capa-divider-gold {
  width: 80px;
  height: 2.5px;
  background: var(--gold);
  margin-bottom: 20px;
}

.capa-year {
  font-family: var(--font2);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,248,255,0.7);
  letter-spacing: 0.05em;
  margin-bottom: 44px;
}

.capa-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat span:last-of-type {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.stat p { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; }

/* ===== SOBRE ===== */
.sobre { padding: 120px 24px; }
.sobre .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sobre-text h2 { font-family: var(--font); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 24px; line-height: 1.2; }
.sobre-text p { color: rgba(245,245,245,0.65); margin-bottom: 16px; line-height: 1.8; }
.sobre-text .btn-primary { margin-top: 16px; }
.sobre-visual { display: flex; flex-direction: column; gap: 20px; }
.sobre-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.sobre-card:hover { border-color: var(--gold); transform: translateX(6px); }
.sobre-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 12px; }
.sobre-card h4 { font-family: var(--font); font-weight: 700; margin-bottom: 8px; }
.sobre-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ===== CASES DE SUCESSO ===== */
.cases { padding: 100px 24px; background: var(--bg); }

.cases-intro {
  max-width: 700px;
  margin: 16px auto 0;
  font-size: 1rem;
  color: rgba(245,248,255,0.65);
  line-height: 1.7;
  text-align: center;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.case-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 28px 24px;
  min-height: 180px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.case-item:hover {
  border-color: var(--gold);
  background: var(--bg3);
  transform: translateY(-4px);
}

.case-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.case-logo img {
  max-height: 90px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition), opacity var(--transition);
  opacity: 0.85;
}
.case-item:hover .case-logo img {
  transform: scale(1.05);
  opacity: 1;
}

.case-label {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  transition: color var(--transition);
}
.case-item:hover .case-label {
  color: var(--gold);
}

@media (max-width: 900px) {
  .cases-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .case-item { padding: 32px 24px 20px; min-height: 160px; }
  .case-logo img { max-height: 75px; }
}
@media (max-width: 560px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .case-item { padding: 28px 20px 18px; min-height: 140px; }
  .case-logo img { max-height: 65px; }
  .case-label { font-size: 0.72rem; }
}

/* ===== SERVIÇOS ===== */
.servicos { padding: 120px 24px; background: var(--bg2); }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.servico-card {
  background: var(--bg2);
  padding: 48px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.servico-card:hover { background: var(--bg3); }
.servico-card:hover::before { width: 100%; }
.servico-num {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.servico-card:hover .servico-num { color: rgba(201,168,76,0.25); }
.servico-card { cursor: pointer; }
.servico-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.servico-card h3 { font-family: var(--font); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.servico-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.servico-ver-fotos {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.servico-card:hover .servico-ver-fotos,
.servico-card:focus-visible .servico-ver-fotos {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PORTFÓLIO ===== */
.portfolio { padding: 120px 24px; }
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--gray2);
  border-radius: 2px;
  color: var(--gray);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-item { border-radius: var(--radius); overflow: hidden; }
.portfolio-item.hidden { display: none; }
.portfolio-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg2);
  cursor: pointer;
}
.portfolio-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-img-wrap:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-img-wrap:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-family: var(--font); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 16px; }
.cta-banner p { color: rgba(245,245,245,0.6); margin-bottom: 40px; font-size: 1.05rem; }

/* ===== CONTATO NOVO ===== */
.contato-novo {
  padding: 120px 24px;
  background: var(--bg);
}
.contato-novo-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Coluna esquerda */
.contato-esquerda {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}
.contato-esquerda-body { flex: 1; }
.contato-chamada {
  font-family: var(--font);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contato-linha {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}
.contato-desc {
  font-size: 0.92rem;
  color: rgba(245,248,255,0.6);
  line-height: 1.7;
  margin-bottom: 10px;
}
.contato-traga {
  font-style: italic;
  margin-top: 4px;
}
.contato-esquerda-logo {
  margin-top: 48px;
}
.contato-esquerda-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  filter: drop-shadow(0 2px 12px rgba(74,158,221,0.2));
}

/* Coluna direita */
.contato-direita {
  display: flex;
  flex-direction: column;
}
.contato-titulo-dir {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.contato-linha-dir {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}
.contato-card {
  background: var(--bg2);
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  margin-bottom: 10px;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contato-label {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contato-valor {
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  transition: color var(--transition);
}
a.contato-valor:hover { color: var(--gold); }
.contato-rodape-dir {
  margin-top: 20px;
}
.contato-rodape-dir .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  padding: 16px 24px;
  letter-spacing: 0.04em;
}

/* Responsivo */
@media (max-width: 768px) {
  .contato-novo-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 80px 24px 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; max-width: 240px; }
.footer-links h5 {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--gray); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: var(--gray); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  text-align: center;
  max-width: 90vw;
  max-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img-wrap img {
  max-height: calc(100vh - 150px);
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-img-wrap p { margin-top: 12px; color: var(--gray); font-size: 0.85rem; }
.lightbox-description:not(.empty) {
  margin-top: 16px !important;
  color: var(--white) !important;
  font-size: 1.15rem !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(10, 10, 10, 0.85);
  padding: 12px 28px;
  border-radius: var(--radius);
  display: inline-block;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 2rem;
  padding: 12px;
  transition: color var(--transition);
  line-height: 1;
}
.lightbox-close { top: 20px; right: 24px; font-size: 1.4rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .sobre .container { grid-template-columns: 1fr; gap: 48px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  #navbar { padding: 16px 24px; }
  #navbar.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .servicos-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .capa-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .portfolio-filters { gap: 8px; }
  .filter-btn { font-size: 0.65rem; padding: 7px 14px; }
}

/* ===== PORTFOLIO ITEM DESTAQUE ===== */
.portfolio-item[data-featured="true"] {
  grid-column: span 2;
}
.portfolio-item[data-featured="true"] .portfolio-img-wrap {
  aspect-ratio: 16/9;
  box-shadow: 0 0 0 2px var(--gold), 0 8px 40px rgba(201,168,76,0.22);
  border-radius: var(--radius);
}
.portfolio-item[data-featured="true"] .portfolio-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
}
@media (max-width: 768px) {
  .portfolio-item[data-featured="true"] { grid-column: span 1; }
  .portfolio-item[data-featured="true"] .portfolio-img-wrap { aspect-ratio: 4/3; }
}
