:root {
  --bg:       #0d0d0d;
  --bg2:      #141414;
  --bg3:      #1a1a1a;
  --border:   rgba(255,255,255,.08);
  --orange:   #E8751A;
  --orange2:  #ff8c2f;
  --white:    #f5f5f5;
  --muted:    #888;
  --muted2:   #555;
  --green:    #22c55e;
  --radius:   14px;
  --font:     'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { padding-top: 64px; }
.hero-wolf { margin-top: -64px; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,13,13,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.site-header.header-transparent {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header.header-scrolled {
  background: rgba(0,0,0,.88) !important;
  border-bottom-color: var(--border) !important;
  backdrop-filter: blur(16px) !important;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo span {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -.03em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav > a,
.nav-item-group > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.site-nav > a:hover,
.nav-item-group > a:hover { color: var(--white); }
.btn-nav {
  background: var(--orange);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--orange2) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ── SUBMENU ── */
.nav-item-group {
  position: relative;
}
.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 8px 8px;
  min-width: 270px;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.nav-item-group:hover .nav-submenu { display: block; }
.nav-submenu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-submenu a:hover {
  background: var(--bg3);
  color: var(--white);
}

/* ── HERO WOLF ── */
.hero-wolf {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.wolf-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wolf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  will-change: transform;
}
.wolf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.93) 0%,
    rgba(0,0,0,.78) 40%,
    rgba(0,0,0,.22) 72%,
    rgba(0,0,0,.04) 100%
  );
}
.wolf-eye-glow {
  position: absolute;
  right: 24.8%;
  top: 41.9%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E8751A;
  transform: translate(50%, -50%);
  z-index: 2;
  animation: eyePulse 2.8s ease-in-out infinite;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: rgba(232,117,26,.55);
  animation: floatUp linear infinite;
}
.hero-wolf-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 64px;
}
.hero-inner { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(232,117,26,.1);
  border: 1px solid rgba(232,117,26,.35);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: heroFadeUp .7s ease .2s both;
}
.hero-h1 {
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.03;
  color: #fff;
  margin-bottom: 24px;
  animation: heroFadeUp .8s ease .42s both;
}
.hero-h1 span { color: var(--orange); }
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  margin-bottom: 40px;
  animation: heroFadeUp .8s ease .64s both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeUp .8s ease .86s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.btn-wolf {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  box-shadow: 0 0 32px rgba(232,117,26,.45);
}
.btn-wolf:hover {
  background: var(--orange2);
  box-shadow: 0 0 56px rgba(232,117,26,.7);
  transform: translateY(-2px);
}
.btn-wolf-outline {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.8);
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,.22);
  transition: all .3s;
}
.btn-wolf-outline:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-2px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  opacity: 0;
  animation: fadeUpHint .8s ease 1.8s forwards;
}
.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

/* ── ANIMATIONS ── */
@keyframes eyePulse {
  0%, 100% {
    box-shadow: 0 0 12px 3px rgba(232,117,26,.5),
                0 0 35px 12px rgba(232,117,26,.25),
                0 0 80px 30px rgba(232,117,26,.08);
  }
  50% {
    box-shadow: 0 0 20px 8px rgba(232,117,26,.9),
                0 0 60px 22px rgba(232,117,26,.45),
                0 0 130px 55px rgba(232,117,26,.15);
  }
}
@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: .35; }
  100% { transform: translateY(-100vh) translateX(15px); opacity: 0; }
}
@keyframes fadeUpHint {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── SCROLL REVEAL ── */
[data-reveal].will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].will-animate.revealed {
  opacity: 1;
  transform: none;
}

/* ── SECTION DARK ── */
.section-dark { padding: 100px 0; background: var(--bg); }

/* ── CTA WOLF ── */
.cta-wolf {
  position: relative;
  text-align: center;
  padding: 130px 0;
  overflow: hidden;
  background: #000;
}
.cta-wolf-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,26,.13) 0%, transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: eyePulse 5s ease-in-out infinite;
}
.cta-wolf h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -.03em; line-height: 1.05; margin-bottom: 16px; }
.cta-wolf p  { font-size: 17px; color: var(--muted); line-height: 1.5; margin-bottom: 40px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-secondary {
  background: var(--bg3);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: rgba(255,255,255,.2); }

/* ── SECTIONS ── */
section { padding: 80px 0; }
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.55;
}
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── GRID CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(255,255,255,.16); transform: translateY(-2px); }
.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,117,26,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
}
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── SERVIÇOS ── */
.servicos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.servico-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .2s;
  display: flex;
  flex-direction: column;
}
.servico-card.destaque {
  border-color: rgba(232,117,26,.4);
  background: linear-gradient(135deg, rgba(232,117,26,.06) 0%, var(--bg2) 100%);
}
.servico-card:hover { border-color: rgba(232,117,26,.3); }
.servico-badge {
  display: inline-block;
  background: rgba(232,117,26,.15);
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.servico-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.servico-card p { font-size: 14px; color: var(--muted); margin-bottom: 20px; flex: 1; line-height: 1.55; }
.servico-preco { display: none; }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  transition: color .2s;
  align-self: flex-start;
}
.btn-link:hover { color: var(--orange2); }

/* ── PORTFÓLIO ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.portfolio-card:hover { border-color: rgba(255,255,255,.16); transform: translateY(-2px); }
.portfolio-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg3);
  display: block;
}
.portfolio-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted2);
  font-size: 13px;
}
.portfolio-body { padding: 20px; }
.portfolio-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.portfolio-body p { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.post-card:hover { border-color: rgba(255,255,255,.16); transform: translateY(-2px); }
.post-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg3);
}
.post-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.post-card-body { padding: 20px; }
.post-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.post-card h3 { font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.post-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.post-card-meta { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--muted2); }

/* ── POST SINGLE ── */
.post-hero { padding: 60px 0 40px; }
.post-hero .post-cat { font-size: 11px; margin-bottom: 16px; }
.post-hero h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; }
.post-hero-meta { font-size: 13px; color: var(--muted); }
.post-cover { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); margin-bottom: 48px; }
.post-content { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.8; color: #d0d0d0; }
.post-content h2 { font-size: 26px; font-weight: 800; color: var(--white); margin: 40px 0 16px; letter-spacing: -.02em; }
.post-content h3 { font-size: 20px; font-weight: 700; color: var(--white); margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content strong { color: var(--white); font-weight: 700; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote { border-left: 3px solid var(--orange); padding: 12px 20px; margin: 28px 0; background: var(--bg2); border-radius: 0 8px 8px 0; color: var(--muted); font-style: italic; }
.post-content a { color: var(--orange); text-decoration: underline; }
.post-content img { border-radius: 10px; margin: 28px 0; }
.post-content code { background: var(--bg3); border: 1px solid var(--border); padding: 2px 7px; border-radius: 5px; font-size: 14px; font-family: monospace; }
.post-content pre { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 20px; overflow-x: auto; margin: 24px 0; }

/* ── CASES ── */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .2s;
}
.case-card:hover { border-color: rgba(255,255,255,.16); }
.case-avatar {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), #c45e10);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff;
  margin-bottom: 16px;
}
.case-img { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; margin-bottom: 16px; }
.case-segmento {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); background: rgba(232,117,26,.1);
  border: 1px solid rgba(232,117,26,.2);
  border-radius: 20px; padding: 3px 10px; margin-bottom: 8px;
}
.case-resultado { font-size: 28px; font-weight: 900; color: var(--orange); letter-spacing: -.02em; margin: 8px 0 6px; }
.case-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.case-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,117,26,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: var(--muted); margin-bottom: 36px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 22px;
  font-weight: 300;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 14px; max-width: 280px; line-height: 1.6; }
.footer-address {
  font-size: 13px;
  color: var(--muted2);
  margin-top: 12px;
  font-style: normal;
  line-height: 1.7;
}
.footer-links h4 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted2); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 10px; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; font-size: 13px; color: var(--muted2); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,20,20,.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  max-width: 660px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.cookie-banner p { font-size: 13px; color: var(--muted); margin: 0; flex: 1; line-height: 1.5; }
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-btn-accept {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  font-family: var(--font);
}
.cookie-btn-accept:hover { background: var(--orange2); }

/* ── ADMIN ── */
.admin-wrap { max-width: 960px; margin: 0 auto; padding: 40px 24px; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.admin-header h1 { font-size: 24px; font-weight: 800; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.admin-table th { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.admin-table tr:hover td { background: var(--bg2); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.badge-green { background: rgba(34,197,94,.15); color: var(--green); }
.badge-gray { background: var(--bg3); color: var(--muted); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-control {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  padding: 11px 14px;
  transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--orange); }
textarea.form-control { min-height: 300px; resize: vertical; line-height: 1.6; }
select.form-control { cursor: pointer; }
.btn-sm { padding: 7px 16px; font-size: 13px; border-radius: 8px; }

/* ── PÁGINAS DE SERVIÇO ── */
.servico-hero {
  background: var(--bg);
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border);
}
.servico-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.servico-breadcrumb a { color: var(--muted); transition: color .2s; }
.servico-breadcrumb a:hover { color: var(--white); }
.servico-breadcrumb span { color: var(--muted2); }
.servico-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 12px 0 20px;
  max-width: 720px;
}
.servico-tagline {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.inclui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.inclui-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
}
.inclui-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(232,117,26,.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.servico-corpo {
  font-size: 17px;
  line-height: 1.8;
  color: #d0d0d0;
}
.servico-corpo h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.servico-corpo h2:not(:first-child) { margin-top: 36px; }
.servico-corpo p { margin-bottom: 20px; }

/* ── SPLIT (imagem + texto) ── */
.servico-split {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.servico-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.servico-split-media { position: relative; }
.servico-split-img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.servico-split-placeholder {
  aspect-ratio: 5/4;
  border-radius: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.servico-split-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 75%, rgba(232,117,26,.2) 0%, transparent 60%);
}
.servico-split-placeholder::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(232,117,26,.08);
}
.servico-split-cat {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(232,117,26,.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .grid-3, .blog-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .grid-2, .servicos-grid, .cases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 4px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav > a,
  .nav-item-group > a {
    padding: 10px 0;
    width: 100%;
    display: block;
  }
  .site-nav > a.btn-nav {
    width: auto;
    display: inline-block;
    align-self: flex-start;
    margin-top: 4px;
    padding: 9px 20px !important;
  }
  .nav-item-group { width: 100%; }
  .nav-submenu {
    display: block;
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-left: 2px solid rgba(232,117,26,.4);
    border-radius: 0;
    padding: 4px 0 4px 16px;
    min-width: unset;
    box-shadow: none;
    margin-top: 4px;
    margin-bottom: 8px;
  }
  .nav-submenu a {
    padding: 7px 8px;
    font-size: 13px;
    color: var(--muted2);
    white-space: normal;
    border-radius: 0;
  }
  .nav-submenu a:hover { background: transparent; color: var(--muted); }
  .nav-toggle { display: flex; }
  .section-dark { padding: 70px 0; }
  /* Hero mobile */
  .hero-wolf { align-items: flex-end; padding-bottom: 70px; }
  .wolf-img { object-position: center top; }
  .wolf-overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,.96) 0%,
      rgba(0,0,0,.75) 38%,
      rgba(0,0,0,.2) 100%
    );
  }
  .wolf-eye-glow { left: 67.1%; top: 44.5%; right: auto; transform: translate(-50%, -50%); }
  .hero-inner { max-width: 100%; }
  .hero-h1 { font-size: clamp(36px, 10vw, 56px); }
  .hero-scroll-hint { display: none; }
  .cta-wolf { padding: 80px 0; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .servico-split { padding: 70px 0; }
  .servico-split-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .logo span { font-size: 14px; }
  .inclui-grid { grid-template-columns: 1fr; }
}
