/* ============================================================
   GRAY WOLF MARKETING — PREMIUM MINIMALIST REDESIGN
   Design System: Cold Sophistication / Editorial Luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=Space+Mono:wght@400;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:        #080808;
  --surface:   #0f0f0f;
  --surface-2: #161616;
  --border:    rgba(255,255,255,0.07);
  --border-h:  rgba(255,255,255,0.18);

  --text:      #e8e8e4;
  --muted:     #6b6b66;
  --subtle:    #2a2a28;

  --accent:    #c9b88a;     /* warm gold */
  --accent-2:  #e8e2d0;    /* pale ivory */
  --accent-dim: rgba(201,184,138,0.12);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', sans-serif;
  --font-mono:  'Space Mono', monospace;

  --nav-h:     72px;
  --max-w:     1200px;
  --radius:    2px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 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(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── NAV ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 64px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.96);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
.logotipo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.logo { width: 36px; height: 36px; object-fit: contain; filter: brightness(1.1); }
.logo-texto { display: flex; flex-direction: column; gap: 0; }
.logo-texto h1 {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--text);
  line-height: 1;
}
.logo-texto h2 {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.35em; color: var(--accent);
  line-height: 1; margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; color: var(--muted);
  text-transform: uppercase;
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--bg) !important;
  background: var(--accent);
  padding: 10px 20px;
  transition: background .25s, color .25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-2) !important; }

.menu-toggle {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--text);
  transition: transform .35s var(--ease-out), opacity .25s, width .3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 48px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 300; font-style: italic;
  color: var(--muted);
  transition: color .25s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ── PAGE WRAPPER ────────────────────────────────────────── */
main { padding-top: var(--nav-h); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }

/* ── SECTION LABELS ──────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--muted); text-transform: uppercase;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--muted);
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300; line-height: 1.1;
}
em.italic-gold { font-style: italic; color: var(--accent); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 16px 32px; border: 1px solid var(--border-h);
  color: var(--text); background: transparent;
  transition: border-color .3s, background .3s, color .3s;
  cursor: pointer;
}
.btn:hover { border-color: var(--accent); background: var(--accent-dim); color: var(--accent); }
.btn-primary {
  background: var(--accent); border-color: var(--accent);
  color: var(--bg); font-weight: 700;
}
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--bg); }

.btn-whatsapp {
  background: #25D366 !important; border-color: #25D366 !important; color: #fff !important;
}
.btn-whatsapp:hover {
  background: #128c7e !important; border-color: #128c7e !important; color: #fff !important;
}

.btn svg, .btn i { font-size: 12px; transition: transform .3s var(--ease-out); }
.btn:hover svg, .btn:hover i { transform: translateX(4px); }

/* ── DIVIDERS ────────────────────────────────────────────── */
.divider {
  width: 100%; height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── NOISE OVERLAY ───────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022; pointer-events: none; z-index: 9997;
}

/* ═══════════════════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-rows: 1fr auto;
  padding: 80px clamp(24px, 5vw, 64px) 0;
  position: relative; overflow: hidden;
  z-index: 1;
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.15) brightness(0.8) grayscale(0.2);
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.95) 85%, var(--bg) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-content { display: flex; flex-direction: column; justify-content: center; }
.hero-label { margin-bottom: 40px; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 300; line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.hero-title.animated .word { transform: translateY(0); }
.hero-title .word:nth-child(2) { transition-delay: 0.08s; }
.hero-title .line:nth-child(2) .word { transition-delay: 0.15s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { transition-delay: 0.22s; }

.hero-bottom {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
  padding: 40px 0; border-top: 1px solid var(--border);
}
.hero-desc {
  font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 400px;
}
.hero-actions { display: flex; gap: 16px; justify-content: flex-end; align-items: center; }
.hero-scroll {
  position: absolute; right: clamp(24px, 5vw, 64px); top: 50%;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.3em; color: var(--muted);
  display: flex; align-items: center; gap: 16px;
}
.hero-scroll::after {
  content: ''; display: block;
  width: 1px; height: 60px; background: var(--muted);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Marquee */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 20px 0;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: var(--muted);
  white-space: nowrap; padding: 0 48px;
  border-right: 1px solid var(--border);
}
.marquee-item span { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Serviços home */
.servicos-home { padding: 120px clamp(24px, 5vw, 64px); }
.servicos-home-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 80px;
}
.servicos-home-header p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.servicos-list { display: flex; flex-direction: column; }
.servico-item {
  display: grid; grid-template-columns: 60px 1fr auto;
  align-items: center; gap: 32px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background .3s;
}
.servico-item:first-child { border-top: 1px solid var(--border); }
.servico-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--muted);
}
.servico-name {
  font-family: var(--font-serif); font-size: clamp(22px, 3vw, 36px);
  font-weight: 300; transition: color .3s;
}
.servico-arrow {
  width: 40px; height: 40px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px;
  transition: border-color .3s, color .3s, transform .4s var(--ease-out);
}
.servico-item:hover .servico-name { color: var(--accent); }
.servico-item:hover .servico-arrow {
  border-color: var(--accent); color: var(--accent); transform: rotate(45deg);
}

/* CTA banner */
.cta-banner {
  margin: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px clamp(24px, 8vw, 120px);
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('./assets/camera.jpg') center/cover no-repeat;
  opacity: 0.15;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}
.cta-banner-text { position: relative; }
.cta-banner-text p { color: var(--muted); margin-top: 16px; font-size: 15px; }
.cta-banner-actions { position: relative; flex-shrink: 0; }

/* Números */
.numeros-section {
  padding: 120px clamp(24px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.numero-item {
  background: var(--bg);
  padding: 60px 40px;
}
.numero-val {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300; color: var(--accent);
  line-height: 1; margin-bottom: 12px;
}
.numero-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--muted); text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   PLANOS PAGE
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 100px clamp(24px, 5vw, 64px) 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 40px;
}
.page-hero-desc { color: var(--muted); font-size: 15px; line-height: 1.8; max-width: 380px; }

.planos-section { padding: 80px clamp(24px, 5vw, 64px) 120px; }
.planos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--border);
  margin-bottom: 1px;
}
.plano-card {
  background: var(--bg);
  padding: 48px 36px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: background .4s;
  cursor: default;
}
.plano-card:hover { background: var(--surface); }
.plano-card.featured { background: var(--surface-2); }
.plano-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-mono); font-size: 8px;
  letter-spacing: 0.25em; color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
}
.plano-icon {
  font-size: 18px; color: var(--accent);
  margin-bottom: 32px;
}
.plano-name {
  font-family: var(--font-serif); font-size: 32px;
  font-weight: 300; color: var(--text);
  margin-bottom: 8px;
}
.plano-tagline {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 36px;
}
.plano-features { flex: 1; margin-bottom: 36px; }
.plano-features li {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.plano-features li::before {
  content: '—'; color: var(--accent); font-size: 12px; flex-shrink: 0;
}
.plano-features .bonus {
  color: var(--accent); font-style: italic;
}
.plano-price {
  font-family: var(--font-serif); font-size: 44px;
  font-weight: 300; color: var(--text); margin-bottom: 24px;
  line-height: 1;
}
.plano-price small {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; color: var(--muted);
  display: block; margin-bottom: 6px;
}

.plano-personalizado {
  background: var(--bg);
  border: 1px dashed var(--border-h);
  padding: 48px 36px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 24px;
  grid-column: 1 / -1;
  flex-direction: row; align-items: center; justify-content: space-between;
}
.plano-personalizado-text h3 {
  font-family: var(--font-serif); font-size: 32px; font-weight: 300;
}
.plano-personalizado-text p { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════
   SERVIÇOS PAGE
═══════════════════════════════════════════════════════════ */
.servicos-avulsos-section { padding: 80px clamp(24px, 5vw, 64px) 120px; }
.servicos-note {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.15em; color: var(--muted);
  margin-bottom: 64px; padding: 20px;
  border: 1px solid var(--border);
  text-transform: uppercase;
}
.servicos-avulsos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px; background: var(--border);
  margin-bottom: 64px;
}
.servico-avulso-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px; cursor: pointer;
  transition: background .4s;
  position: relative; overflow: hidden;
}
.servico-avulso-card:hover { background: var(--surface); }
.servico-avulso-card::after {
  content: '↗'; position: absolute;
  top: 24px; right: 24px;
  font-size: 18px; color: var(--accent);
  opacity: 0; transform: translate(-8px, 8px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.servico-avulso-card:hover::after { opacity: 1; transform: translate(0,0); }
.servico-avulso-icon { font-size: 22px; color: var(--accent); margin-bottom: 20px; }
.servico-avulso-name {
  font-family: var(--font-serif); font-size: 22px; font-weight: 300;
  margin-bottom: 12px; flex: 1;
}
.servico-avulso-price {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--muted);
  text-transform: uppercase;
}
.servico-avulso-price span { color: var(--accent); }
.servicos-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   PARCERIAS PAGE
═══════════════════════════════════════════════════════════ */
.parcerias-section { padding: 80px clamp(24px, 5vw, 64px) 120px; }
.parcerias-intro {
  font-size: 16px; color: var(--muted); line-height: 1.8;
  max-width: 600px; margin-bottom: 80px;
}
.parcerias-grid { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.parceiro-card {
  background: var(--bg);
  display: grid; grid-template-columns: 240px 1fr;
  transition: background .4s;
}
.parceiro-card:hover { background: var(--surface); }
.parceiro-img-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: 48px 32px;
  border-right: 1px solid var(--border);
}
.nx-bg {
  background: url('./assets/NX/Holografico.png') center/cover no-repeat;
}
.parceiro-img-wrap img {
  max-width: 140px; max-height: 100px;
  object-fit: contain; filter: brightness(1);
  transition: transform .4s, filter .4s;
}
.lucas-img {
  max-width: 180px !important;
  max-height: 180px !important;
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover !important;
}
.parceiro-card:hover .parceiro-img-wrap img { filter: grayscale(0) brightness(1); }
.parceiro-content { padding: 48px 48px; }
.parceiro-area {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.25em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 12px;
}
.parceiro-name {
  font-family: var(--font-serif); font-size: clamp(28px, 3vw, 42px);
  font-weight: 300; margin-bottom: 20px;
}
.parceiro-desc { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 32px; }
.parceiro-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--accent);
  border: 1px solid var(--accent);
  padding: 12px 24px; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.parceiro-btn:hover { background: var(--accent); color: var(--bg); }

/* ═══════════════════════════════════════════════════════════
   CLIENTES PAGE
═══════════════════════════════════════════════════════════ */
.clientes-section { padding: 80px clamp(24px, 5vw, 64px) 120px; }
.clientes-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-bottom: 80px; align-items: start;
}
.clientes-intro-text { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* Carrossel logos */
.logos-section { overflow: hidden; margin-bottom: 80px; }
.logos-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.3em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 32px;
  padding: 0 clamp(24px, 5vw, 64px);
}
.logos-track-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0; overflow: hidden;
}
.logos-track {
  display: flex; gap: 0;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.logos-track .logo-item {
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border); padding: 0 24px; flex-shrink: 0;
}
.logos-track .logo-item img {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover; filter: brightness(0.9);
  transition: filter .3s, transform .3s;
}
.logos-track .logo-item:hover img { filter: brightness(1); transform: scale(1.05); }

/* Galeria */
.galeria-section { }
.galeria-label { margin-bottom: 40px; }
.galeria-cols {
  columns: 2; gap: 2px;
}
.galeria-cols img {
  width: 100%; margin-bottom: 2px;
  display: block; break-inside: avoid;
  transition: opacity .4s;
}
.galeria-cols img:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════════════════════
   SOBRE PAGE
═══════════════════════════════════════════════════════════ */
.sobre-section { padding: 80px clamp(24px, 5vw, 64px) 120px; }
.sobre-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-bottom: 120px;
}
.sobre-text p { color: var(--muted); font-size: 15px; line-height: 1.9; margin-bottom: 24px; }
.sobre-text p strong { color: var(--text); font-weight: 500; }
.sobre-img-wrap { position: relative; }
.sobre-img-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: contrast(1.05);
}
.sobre-img-frame {
  position: absolute; inset: -12px -12px 12px 12px;
  border: 1px solid var(--border); pointer-events: none;
  z-index: -1;
}

.valores-section { margin-bottom: 0; }
.valores-header { margin-bottom: 64px; }
.valores-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
}
.valor-card {
  background: var(--bg); padding: 48px 40px;
  transition: background .4s;
}
.valor-card:hover { background: var(--surface); }
.valor-icon { font-size: 20px; color: var(--accent); margin-bottom: 24px; }
.valor-title {
  font-family: var(--font-serif); font-size: 26px;
  font-weight: 300; margin-bottom: 16px;
}
.valor-desc { color: var(--muted); font-size: 14px; line-height: 1.8; }

/* ═══════════════════════════════════════════════════════════
   CONTATO PAGE
═══════════════════════════════════════════════════════════ */
.contato-section { padding: 80px clamp(24px, 5vw, 64px) 120px; }
.contato-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 1px; background: var(--border);
}
.contato-info { background: var(--surface); padding: 64px 48px; }
.contato-info-title {
  font-family: var(--font-serif); font-size: 36px;
  font-weight: 300; margin-bottom: 8px;
}
.contato-info-sub {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.25em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 48px;
}
.info-items { display: flex; flex-direction: column; gap: 32px; margin-bottom: 48px; }
.info-entry { display: flex; flex-direction: column; gap: 4px; }
.info-entry-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; color: var(--muted);
  text-transform: uppercase;
}
.info-entry-val { font-size: 15px; color: var(--text); }
.info-entry-val a { color: var(--text); transition: color .25s; }
.info-entry-val a:hover { color: var(--accent); }
.social-row { display: flex; gap: 16px; margin-top: 48px; }
.social-btn {
  width: 44px; height: 44px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 16px;
  transition: border-color .3s, color .3s, background .3s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.contato-form-wrap { background: var(--bg); padding: 64px 48px; }
.contato-form-title {
  font-family: var(--font-serif); font-size: 36px;
  font-weight: 300; margin-bottom: 48px;
}
.form-field { margin-bottom: 28px; }
.form-field label {
  display: block; font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.25em;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 10px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  color: var(--text); font-family: var(--font-sans);
  font-size: 15px; font-weight: 300;
  padding: 12px 0; outline: none;
  transition: border-color .3s;
  appearance: none; -webkit-appearance: none;
}
.form-field select { background: var(--bg); cursor: pointer; }
.form-field select option { background: var(--surface); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 40px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 64px clamp(24px, 5vw, 64px);
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .logo-texto h1 {
  font-family: var(--font-mono); font-size: 15px;
  letter-spacing: 0.2em; font-weight: 700;
}
.footer-brand .logo-texto h2 {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.35em; color: var(--accent); margin-top: 4px;
}
.footer-brand .logo { width: 32px; margin-bottom: 20px; }
.footer-slogan {
  font-size: 13px; color: var(--muted); margin-top: 16px;
  line-height: 1.6; max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.25em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 13px; color: var(--muted);
  transition: color .25s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-col p {
  font-size: 13px; color: var(--muted); line-height: 1.8;
}
.footer-col p a { color: var(--muted); transition: color .25s; }
.footer-col p a:hover { color: var(--text); }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted);
  transition: border-color .3s, color .3s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.15em; color: var(--muted);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-actions { justify-content: flex-start; }
  .servicos-home-header { grid-template-columns: 1fr; }
  .numeros-section { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .parceiro-card { grid-template-columns: 1fr; }
  .parceiro-img-wrap { border-right: none; border-bottom: 1px solid var(--border); }
  .sobre-hero-grid { grid-template-columns: 1fr; }
  .clientes-intro { grid-template-columns: 1fr; gap: 32px; }
  .contato-grid { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: 1fr; }
  .planos-grid { grid-template-columns: 1fr; }
  .plano-personalizado { flex-direction: column; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero-scroll { display: none; }
  .galeria-cols { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .page-hero-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .contato-info { padding: 40px 24px; }
  .contato-form-wrap { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(48px, 14vw, 80px); }
  .servico-item { grid-template-columns: 40px 1fr; }
  .servico-arrow { display: none; }
}
