/* ============================================================
   WAA Consultoria — Folha de Estilos Global
   Versão: 2.0 | Arquivo: style.css
   ============================================================ */

/* ----- VARIÁVEIS ----- */
:root {
  --gold: #bd8a32;
  --gold-light: #8a7338;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --text: #E8E0D0;
  --text-muted: #9A8F7A;
  --border-gold: rgba(201,168,76,0.3);
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text strong { font-family: 'Cinzel', serif; font-size: 16px; color: var(--text); letter-spacing: 1px; }
.nav-logo-text span { font-size: 9px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.nav-verificar {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  padding: 7px 16px;
  margin-left: 8px;
}
.nav-links a.nav-verificar:hover { background: var(--gold-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold); transition: 0.3s; }

/* ============================================================
   HERO — INDEX
   ============================================================ */
#inicio {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.25) 40%, rgba(10,10,10,0.85) 100%),
    url('src/assets/bg.jpg') center/cover no-repeat;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%);
}
.hero-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-lines::before, .hero-lines::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), transparent);
}
.hero-lines::before { left: 4%; }
.hero-lines::after { right: 4%; }

.hero-content {
  position: relative; text-align: center; padding: 0 2rem;
  animation: fadeUp 1s ease both;
}

.hero-tag {
  display: inline-block;
  border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  padding: 6px 20px; margin-bottom: 2rem;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1; color: var(--text);
  margin-bottom: 0.5rem;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-desc {
  max-width: 600px; margin: 0 auto 2.5rem;
  font-size: 15px; color: rgba(232,224,208,0.75); line-height: 1.8;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s 0.5s ease both; }

.hero-btn {
  display: inline-block; background: var(--gold); color: var(--black);
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
  padding: 16px 40px; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.2s;
}
.hero-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.hero-btn.outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--border-gold);
}
.hero-btn.outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }

/* ============================================================
   SEÇÕES — BASE
   ============================================================ */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; color: var(--gold); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  border-bottom: 1px solid var(--border-gold); padding-bottom: 4px; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--text); line-height: 1.2;
}
.section-title span { color: var(--gold); }
.gold-line { width: 60px; height: 1px; background: var(--gold); margin: 1.2rem auto 0; }

/* ============================================================
   SERVIÇOS — GRID (INDEX)
   ============================================================ */
#servicos { background: var(--dark); }

#servicos .servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
}
@media (max-width: 900px) { #servicos .servicos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { #servicos .servicos-grid { grid-template-columns: 1fr; } }


a.servico-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.servico-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: #111;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.servico-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
  z-index: 2;
}
.servico-card:hover { background: #161616; }
.servico-card:hover::before { transform: scaleX(1); }

.servico-content {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  flex: 1;
}

.servico-icon { width: 64px; height: 64px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.servico-icon svg { width: 40px; height: 40px; fill: var(--gold); }
.servico-num { font-family: 'Cinzel', serif; font-size: 11px; color: var(--gold-dark); letter-spacing: 3px; margin-bottom: 0.5rem; }
.servico-title { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: 1px; margin-bottom: 1rem; text-transform: uppercase; }
.servico-desc { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

.servico-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.servico-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
  filter: grayscale(30%) brightness(0.75);
}
.servico-card:hover .servico-img-wrap img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(0.85);
}
.servico-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(201,168,76,0.15) 0%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}

/* ============================================================
   QUEM SOMOS
   ============================================================ */
/* Sequência: Hero=black → Serviços=dark → Quem=black → Clientes=dark → Contato=black */
#quem { background: var(--black); }

.quem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.quem-img-wrap { position: relative; }
.quem-img-frame {
  position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--border-gold); pointer-events: none;
}
.quem-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; filter: grayscale(30%) contrast(1.05); }
.quem-cargo {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); color: var(--black);
  padding: 12px 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.quem-content p { font-size: 15px; color: rgba(232,224,208,0.8); line-height: 1.9; margin-bottom: 1.2rem; }
.quem-quote {
  border-left: 2px solid var(--gold); padding: 1rem 1.5rem; margin: 2rem 0;
  background: rgba(201,168,76,0.04);
}
.quem-quote p { font-style: italic; color: var(--gold-light); font-size: 15px; margin-bottom: 4px; }
.quem-quote cite { font-size: 12px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

/* ============================================================
   CLIENTES
   ============================================================ */
#clientes {
  background: var(--dark);
  border-top: 1px solid var(--border-gold);
}
.clientes-inner { padding-top: 60px !important; padding-bottom: 60px !important; }

.clientes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cliente-logo-item {
  width: 180px; height: 100px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  background: var(--dark2);
  transition: all 0.3s;
  overflow: hidden; padding: 16px;
}
.cliente-logo-item:hover { border-color: var(--gold); background: var(--dark3); }
.cliente-logo-item.logo-claro { background: #fff; padding: 20px; }
.cliente-logo-item.logo-claro:hover { background: #f5f5f5; }
.cliente-logo-item img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: grayscale(100%) brightness(1.8);
  transition: filter 0.3s;
}
.cliente-logo-item:hover img { filter: grayscale(0%) brightness(1); }
.cliente-logo-item.logo-claro img { filter: none; }

#clientes { overflow: hidden; }
.clientes-grid { display: none; } /* oculta o grid original */

#clientes .section-header { margin-bottom: 0; }
.clientes-ticker-wrapper::before,
.clientes-ticker-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.clientes-ticker-wrapper::before { left: 0; background: linear-gradient(to right, #111111, transparent); }
.clientes-ticker-wrapper::after  { right: 0; background: linear-gradient(to left,  #111111, transparent); }

.clientes-ticker {
  display: flex; width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.clientes-ticker:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 1.4rem 2.8rem; min-width: 180px; flex-shrink: 0;
  border-right: 1px solid rgba(201,168,76,0.12);
  transition: background 0.2s;
}
.ticker-logo:hover { background: rgba(201,168,76,0.06); }
.ticker-logo img {
  height: 48px; width: auto; max-width: 140px; object-fit: contain;
  filter: grayscale(1) brightness(0.7); opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
.ticker-logo:hover img { filter: grayscale(0) brightness(1); opacity: 1; }
.ticker-logo.logo-claro img { filter: grayscale(1) brightness(1.9); }
.ticker-logo.logo-claro:hover img { filter: grayscale(0) brightness(1); }

/* Estatísticas */
.clientes-stats {
  display: flex; justify-content: center; gap: 3rem;
  margin-top: 4.5rem; padding-bottom: 4.5rem; flex-wrap: wrap;
}
.clientes-stat { text-align: center; }
.clientes-stat-num { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.clientes-stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(232,224,208,0.45); margin-top: 6px; }

/* ============================================================
   CONTATO
   ============================================================ */
#contato { background: var(--black); }

#contato .contato-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  max-width: 740px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2rem 2.5rem;
}
.contato-info h3 { font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 1.5rem; }
.contato-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 1.5rem; }
.contato-item-icon { width: 40px; height: 40px; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contato-item-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.contato-item-text label { font-size: 10px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; display: block; margin-bottom: 3px; }
.contato-item-text span { font-size: 14px; color: var(--text); }
.contato-item-text a { font-size: 14px; color: var(--gold); text-decoration: none; }
.contato-item-text a:hover { color: var(--gold-light); }
.contato-social { display: flex; gap: 12px; margin-top: 2rem; }
.social-btn { width: 40px; height: 40px; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.social-btn svg { width: 18px; height: 18px; fill: var(--gold); }
.contato-qr { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.contato-qr-frame { border: 1px solid var(--border-gold); padding: 16px; background: white; }
.contato-qr-label { font-size: 11px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }

/* ============================================================
   MODAL — VERIFICAR CERTIFICADO
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--dark2);
  border: 1px solid var(--border-gold);
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  animation: fadeUp 0.3s ease both;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-gold);
}
.modal-title { font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.modal-close {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-gold); cursor: pointer; color: var(--text-muted);
  font-size: 18px; transition: all 0.2s; background: none;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
.modal-body { padding: 1.5rem; }
.modal-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }

.v-search-row { display: flex; }
.v-search-row input {
  flex: 1;
  background: var(--dark3); border: 1px solid rgba(201,168,76,0.2); border-right: none;
  color: var(--text); font-family: 'Raleway', sans-serif; font-size: 13px; padding: 11px 14px; outline: none;
}
.v-search-row input:focus { border-color: var(--gold); }
.v-search-row button {
  background: var(--gold); color: var(--black); border: none;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; padding: 11px 20px;
  cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.v-search-row button:hover { background: var(--gold-light); }

.v-loading { padding: 1rem 0; color: var(--text-muted); font-size: 13px; }

.v-result { display: none; margin-top: 1.25rem; }
.v-result-header { display: flex; align-items: center; gap: 16px; padding: 1.25rem 1.5rem; }
.v-result-header.valid  { background: rgba(57,109,17,0.12); border: 1px solid rgba(57,109,17,0.3); }
.v-result-header.expired { background: rgba(133,79,11,0.12); border: 1px solid rgba(133,79,11,0.3); }
.v-result-header.invalid,
.v-result-header.info,
.v-result-header.warning { background: rgba(163,45,45,0.12); border: 1px solid rgba(163,45,45,0.3); }
.v-result-header.info,
.v-result-header.warning { background: rgba(201,168,76,0.08); border-color: var(--border-gold); }

.v-result-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; font-weight: 700; }
.v-result-icon.valid   { background: rgba(57,109,17,0.25); color: #8DC95A; }
.v-result-icon.expired { background: rgba(133,79,11,0.25); color: #EFB054; }
.v-result-icon.invalid { background: rgba(163,45,45,0.25); color: #E87070; }
.v-result-icon.info,
.v-result-icon.warning { background: rgba(201,168,76,0.12); color: var(--gold); }

.v-result-label h3 { font-family: 'Cinzel', serif; font-size: 15px; }
.v-result-label h3.valid   { color: #8DC95A; }
.v-result-label h3.expired { color: #EFB054; }
.v-result-label h3.invalid { color: #E87070; }
.v-result-label h3.info,
.v-result-label h3.warning { color: var(--gold); }
.v-result-label p { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.v-result-body { background: var(--dark3); padding: 1.25rem 1.5rem; }
.v-result-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(201,168,76,0.08); font-size: 13px; gap: 12px; }
.v-result-row:last-child { border-bottom: none; }
.v-result-row .lbl { color: var(--text-muted); letter-spacing: 1px; font-size: 11px; text-transform: uppercase; flex-shrink: 0; }
.v-result-row .val { color: var(--text); font-weight: 600; text-align: right; }
.v-result-foot { padding: 8px 1.5rem; background: var(--dark); font-family: monospace; font-size: 11px; color: var(--gold-dark); letter-spacing: 1px; }

.how-steps { display: flex; flex-direction: column; gap: 12px; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border-gold); }
.how-step { display: flex; gap: 12px; align-items: flex-start; }
.how-num { width: 24px; height: 24px; background: var(--gold); color: var(--black); font-weight: 700; font-size: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.how-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.how-text strong { color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border-gold);
  padding: 2rem; text-align: center;
}
.footer-brand { font-family: 'Cinzel', serif; font-size: 13px; color: var(--gold); letter-spacing: 3px; margin-bottom: 4px; }
.footer-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.footer-copy { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.footer-copy a { color: var(--gold-dark); text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

/* ============================================================
   PÁGINA DE SERVIÇOS (servicos.html)
   ============================================================ */

/* Abas de navegação entre serviços */
.service-tabs {
  background: var(--dark2);
  border-bottom: 1px solid var(--border-gold);
  position: sticky; top: 72px; z-index: 900;
}
.service-tabs-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.service-tabs-inner::-webkit-scrollbar { display: none; }
.service-tab {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  padding: 16px 20px; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: all 0.2s;
}
.service-tab:hover { color: var(--gold); }
.service-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Hero das páginas internas */
.page-hero {
  min-height: 95vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.9) 100%);
}
.page-hero-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.page-hero-lines::before, .page-hero-lines::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), transparent);
}
.page-hero-lines::before { left: 4%; }
.page-hero-lines::after  { right: 4%; }
.page-hero-content {
  position: relative; text-align: center; padding: 3rem 2rem;
  animation: fadeUp 1s ease both;
  max-width: 800px;
}
.page-hero-tag {
  display: inline-block;
  border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  padding: 6px 20px; margin-bottom: 1.5rem;
}
.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700; line-height: 1.1; color: var(--text); margin-bottom: 1rem;
}
.page-hero-title span { color: var(--gold); }
.page-hero-desc {
  max-width: 580px; margin: 0 auto 2rem;
  font-size: 15px; color: rgba(232,224,208,0.75); line-height: 1.8;
}
.page-hero-btn {
  display: inline-block; background: var(--gold); color: var(--black);
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
  padding: 14px 36px; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.2s;
}
.page-hero-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Bloco introdutório do serviço */
.intro-block {
  background: var(--dark);
  border-top: 1px solid var(--border-gold);
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.intro-img-wrap { position: relative; }
.intro-img-frame {
  position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid var(--border-gold); pointer-events: none; z-index: 0;
}
.intro-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  filter: grayscale(20%) contrast(1.05); position: relative; z-index: 1;
}
.intro-img-badge {
  position: absolute; bottom: -14px; right: -14px;
  background: var(--gold); color: var(--black);
  padding: 12px 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; z-index: 2;
}
.intro-text h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--text); margin-bottom: 1.5rem;
}
.intro-text p {
  font-size: 15px; color: rgba(232,224,208,0.8); line-height: 1.9; margin-bottom: 1.2rem;
}
.intro-cta { margin-top: 2rem; display: flex; gap: 12px; flex-wrap: wrap; }

/* Grid de serviços prestados */
.services-list-block { background: var(--black); }
.services-list-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border-gold);
  border: 1px solid var(--border-gold);
}
.service-item {
  background: var(--dark2); padding: 2rem 2.2rem;
  display: flex; align-items: flex-start; gap: 16px;
  transition: background 0.3s; position: relative;
}
.service-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.service-item:hover { background: var(--dark3); }
.service-item:hover::after { transform: scaleX(1); }
.service-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
}
.service-item-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.service-item-text { flex: 1; }
.service-item-title {
  font-family: 'Cinzel', serif;
  font-size: 13px; font-weight: 600; color: var(--text);
  letter-spacing: 0.5px; margin-bottom: 4px;
}
.service-item-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* Bloco de destaque / norma */
.norma-block {
  background: var(--dark);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.norma-inner {
  max-width: 900px; margin: 0 auto; padding: 70px 2rem; text-align: center;
}
.norma-badge {
  display: inline-block; background: var(--gold); color: var(--black);
  font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700;
  letter-spacing: 3px; padding: 10px 28px; margin-bottom: 2rem;
}
.norma-text { font-size: 15px; color: rgba(232,224,208,0.8); line-height: 1.9; max-width: 700px; margin: 0 auto; }

/* Visibilidade de páginas */
.service-page { display: none; }
.service-page.active { display: block; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .quem-grid,
  .contato-grid { grid-template-columns: 1fr; }
  .quem-img-wrap { max-width: 340px; margin: 0 auto; }
  .intro-grid,
  .services-list-grid { grid-template-columns: 1fr; }
  .intro-img-wrap { max-width: 480px; }
}

@media (max-width: 600px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .servico-img-wrap { height: 140px; }
  .cliente-logo-item { width: 140px; height: 80px; }
  .page-hero { min-height: 50vh; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 1rem; border-bottom: 1px solid var(--border-gold);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  #contato .contato-grid { grid-template-columns: 1fr; padding: 1.5rem; }
  #contato .contato-qr { display: none; }
}
.clientes-ticker-wrapper {
  position: relative; overflow: hidden; margin-top: 1.5rem;
}
