/* ═══════════════════════════════════════════════
   VISOART® — Stylesheet Principal
   Versão: 1.0.0
   Agência: Visoart.com | Porto Alegre, RS
═══════════════════════════════════════════════ */

/* ── VARIÁVEIS ── */
:root {
  --orange:      #E8430A;
  --orange-d:    #C23508;
  --orange-l:    #FF6633;
  --orange-xl:   #FFF0EB;
  --black:       #0E0D0B;
  --ink:         #1A1916;
  --ink2:        #2E2C28;
  --gray:        #6B6860;
  --silver:      #B8B5AF;
  --line:        #E8E5DF;
  --bg:          #F9F7F4;
  --white:       #FFFFFF;
  --fd: 'Barlow Condensed', sans-serif;
  --fi: 'Instrument Serif', serif;
  --fb: 'DM Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--fb);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── CURSOR ── */
#CUR {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
}
#CURR {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(232, 67, 10, .35);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
#CUR.big { width: 48px; height: 48px; background: rgba(232, 67, 10, .15); }

/* ── NAVEGAÇÃO ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 0 5%; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow .3s;
}
nav.shadow { box-shadow: 0 4px 32px rgba(0, 0, 0, .07); }
.nav-logo img { height: 36px; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-family: var(--fd); font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray); padding: 8px 12px; display: block;
  transition: color .25s; border-radius: 2px;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--ink); }
.nav-menu > li > a.active-link { color: var(--orange); }

/* Dropdown */
.nav-sub {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
  min-width: 210px; padding: 6px 0;
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity .25s, transform .25s;
}
.has-sub:hover .nav-sub { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-sub a {
  display: block; padding: 10px 20px;
  font-family: var(--fd); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray); transition: color .2s, padding-left .2s;
  border-left: 2px solid transparent;
}
.nav-sub a:hover { color: var(--orange); padding-left: 24px; border-left-color: var(--orange); }

/* Botão CTA nav */
.nav-cta-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 2px !important;
  transition: background .25s !important;
}
.nav-cta-btn:hover { background: var(--orange-d) !important; }

/* Telefone nav */
.nav-phone-link {
  font-family: var(--fd); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; color: var(--orange);
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border: 1.5px solid rgba(232, 67, 10, .2); border-radius: 2px;
  transition: border-color .25s, background .25s;
}
.nav-phone-link:hover { border-color: var(--orange); background: var(--orange-xl); }
.nav-phone-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mob-nav {
  display: none; position: fixed; inset: 0; top: 68px;
  background: var(--white); z-index: 490;
  flex-direction: column; padding: 32px 5%; gap: 4px;
  border-top: 1px solid var(--line); overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: var(--fd); font-size: 22px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink); padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color .25s, padding-left .25s;
}
.mob-nav a:hover { color: var(--orange); padding-left: 8px; }
.mob-nav-phone { color: var(--orange) !important; }

/* ── SISTEMA DE PÁGINAS ── */
.page { display: none; }
.page.active { display: block; }
.pt-nav { padding-top: 68px; }

/* ── UTILITÁRIOS ── */
.section     { padding: 96px 5%; }
.section-sm  { padding: 72px 5%; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--ink); color: var(--white); }

.s-label {
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.s-label::before { content: ''; width: 24px; height: 2px; background: var(--orange); }

.s-title {
  font-family: var(--fd);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900; line-height: .92; letter-spacing: 1px;
  color: var(--ink);
}
.s-title .stroke { -webkit-text-stroke: 1.5px var(--ink); color: transparent; }
.s-title .oc { color: var(--orange); }

.s-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 40px; flex-wrap: wrap;
  margin-bottom: 64px;
}
.s-desc { font-size: 15px; line-height: 1.8; color: var(--gray); max-width: 380px; }

/* ── BOTÕES ── */
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 14px 36px; font-family: var(--fd); font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .3s, transform .3s;
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-2px); }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-outline {
  background: transparent; color: var(--ink);
  padding: 13px 34px; font-family: var(--fd); font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; border: 1.5px solid var(--line); cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color .3s, color .3s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-ghost-white {
  background: transparent; color: rgba(255, 255, 255, .7);
  padding: 13px 34px; font-family: var(--fd); font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; border: 1.5px solid rgba(255, 255, 255, .2);
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color .3s, color .3s;
}
.btn-ghost-white:hover { border-color: rgba(255, 255, 255, .6); color: var(--white); }
.btn-ghost-white svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── ANIMAÇÕES ── */
@keyframes fU  { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }
@keyframes tick  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.rv { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.22,.68,0,1.2), transform .75s cubic-bezier(.22,.68,0,1.2); }
.rv.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ══════════════════════════════════════════════
   HOME — HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: var(--white); padding: 120px 5% 80px;
}
canvas#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase; color: var(--orange);
  border: 1px solid rgba(232, 67, 10, .2); background: var(--orange-xl);
  padding: 8px 20px; border-radius: 100px; margin-bottom: 36px;
  opacity: 0; animation: fU .7s .1s forwards;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: pulse 2s infinite;
}

h1.hero-title {
  font-family: var(--fd);
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 900; line-height: .88; letter-spacing: 1px; color: var(--ink);
  margin-bottom: 32px; opacity: 0; animation: fU .8s .25s forwards;
}
h1.hero-title .stroke { -webkit-text-stroke: 2px var(--ink); color: transparent; }
h1.hero-title .oc { color: var(--orange); }

.hero-sub {
  font-family: var(--fi); font-style: italic;
  font-size: clamp(16px, 2vw, 22px); line-height: 1.7; color: var(--gray);
  max-width: 560px; margin: 0 auto 48px;
  opacity: 0; animation: fU .8s .4s forwards;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fU .8s .55s forwards;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  font-family: var(--fd); font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--silver);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fU .8s 1.2s forwards;
}
.hero-scroll::after { content: ''; width: 1px; height: 44px; background: linear-gradient(var(--orange), transparent); }

/* ── TICKER ── */
.ticker { padding: 20px 0; overflow: hidden; background: var(--ink); border-top: 3px solid var(--orange); }
.ticker-t { display: flex; animation: tick 26s linear infinite; width: max-content; }
.ticker-item {
  font-family: var(--fd); font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255, 255, 255, .4); padding: 0 36px; white-space: nowrap;
  display: flex; align-items: center; gap: 36px;
}
.ticker-item::after { content: '✦'; font-size: 7px; color: var(--orange); }

/* ── SOBRE ── */
.sobre-home { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-home-img { position: relative; background: var(--bg); border-radius: 4px; overflow: hidden; }
.sobre-home-img img { width: 100%; height: 460px; object-fit: cover; filter: brightness(.85); }
.sobre-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232, 67, 10, .15) 0%, transparent 60%); }
.sobre-stat { position: absolute; bottom: 24px; left: 24px; background: var(--orange); color: var(--white); padding: 16px 24px; border-radius: 2px; }
.ss-num { font-family: var(--fd); font-size: 40px; font-weight: 900; line-height: 1; }
.ss-lbl { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: .85; }
.sobre-lead { font-family: var(--fi); font-style: italic; font-size: 19px; line-height: 1.65; color: var(--gray); border-left: 3px solid var(--orange); padding-left: 18px; margin-bottom: 24px; }
.sobre-body { font-size: 15px; line-height: 1.85; color: var(--gray); margin-bottom: 32px; }
.sobre-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chip { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: 1px solid var(--line); padding: 6px 14px; border-radius: 2px; color: var(--gray); transition: border-color .25s, color .25s; }
.chip:hover { border-color: var(--orange); color: var(--orange); }

/* ── GRID DE SERVIÇOS ── */
.svc-grid-8 { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.svc-cell {
  padding: 40px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden; transition: background .3s; cursor: default;
}
.svc-cell:nth-child(4n) { border-right: none; }
.svc-cell:hover { background: var(--bg); }
.svc-cell::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.77,0,.18,1); }
.svc-cell:hover::after { transform: scaleX(1); }
.svc-ico-wrap { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-ico-wrap svg { width: 28px; height: 28px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-cell-n { font-family: var(--fd); font-size: 56px; font-weight: 900; color: rgba(0, 0, 0, .04); position: absolute; top: 12px; right: 16px; line-height: 1; transition: color .3s; }
.svc-cell:hover .svc-cell-n { color: rgba(232, 67, 10, .06); }
.svc-cell-title { font-family: var(--fd); font-size: 18px; font-weight: 800; letter-spacing: .5px; margin-bottom: 8px; transition: color .3s; }
.svc-cell:hover .svc-cell-title { color: var(--orange); }
.svc-cell-sub { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); opacity: .7; margin-bottom: 12px; }
.svc-cell-txt { font-size: 13px; line-height: 1.75; color: var(--gray); }

/* ── STATS ── */
.stats-row { background: var(--orange); padding: 72px 5%; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; overflow: hidden; }
.stats-row::after { content: '14 ANOS'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); font-family: var(--fd); font-size: 180px; font-weight: 900; color: rgba(0, 0, 0, .07); letter-spacing: 8px; white-space: nowrap; line-height: 1; pointer-events: none; }
.stat { padding: 20px 32px; }
.stat-n { font-family: var(--fd); font-size: clamp(44px, 5vw, 68px); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat-l { font-family: var(--fd); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, .7); }

/* ── PORTFÓLIO HOME ── */
.port-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.ph-item { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg); cursor: pointer; }
.ph-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.77,0,.18,1), filter .4s; filter: brightness(.85); }
.ph-item:hover img { transform: scale(1.06); filter: brightness(.65); }
.ph-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14, 13, 11, .92) 0%, transparent 55%); opacity: 0; transition: opacity .35s; }
.ph-item:hover .ph-ov { opacity: 1; }
.ph-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; transform: translateY(14px); transition: transform .35s cubic-bezier(.77,0,.18,1); }
.ph-item:hover .ph-info { transform: translateY(0); }
.ph-tag { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.ph-name { font-family: var(--fd); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.ph-arr { width: 30px; height: 30px; border: 1.5px solid var(--orange); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--orange); font-size: 13px; transition: background .25s, color .25s; }
.ph-item:hover .ph-arr { background: var(--orange); color: var(--white); }

/* ── MARKETING SPLIT ── */
.mkt-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mkt-visual { background: var(--ink); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.mkt-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 30% 50%, rgba(232, 67, 10, .12) 0%, transparent 70%); }
.mkt-visual .s-title { color: var(--white); position: relative; z-index: 1; margin-bottom: 28px; }
.mkt-visual .s-title .stroke { -webkit-text-stroke: 1.5px rgba(255,255,255,.35); }
.mkt-visual > p { font-size: 15px; line-height: 1.8; color: rgba(255, 255, 255, .55); max-width: 380px; margin-bottom: 36px; position: relative; z-index: 1; }
.mkt-visual .btn-primary { position: relative; z-index: 1; }
.mkt-list-col { background: var(--bg); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.mkt-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); transition: padding-left .3s; }
.mkt-item:hover { padding-left: 8px; }
.mkt-item:last-child { border-bottom: none; }
.mkt-ico-box { width: 40px; height: 40px; min-width: 40px; border: 1px solid var(--line); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: border-color .25s, background .25s; }
.mkt-ico-box svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.mkt-item:hover .mkt-ico-box { border-color: var(--orange); background: var(--orange-xl); }
.mkt-item-title { font-family: var(--fd); font-size: 16px; font-weight: 700; margin-bottom: 4px; transition: color .25s; }
.mkt-item:hover .mkt-item-title { color: var(--orange); }
.mkt-item-txt { font-size: 13px; line-height: 1.7; color: var(--gray); }

/* ── CLIENTES ── */
.clients-heading { text-align: center; margin-bottom: 48px; }
.clients-logos { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.client-logo-item { padding: 28px 20px; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 88px; transition: background .25s; }
.client-logo-item:hover { background: var(--bg); }
.client-logo-item:nth-child(5n) { border-right: none; }
.client-logo-item img { max-height: 36px; max-width: 110px; object-fit: contain; filter: grayscale(100%) opacity(.45); transition: filter .3s; }
.client-logo-item:hover img { filter: grayscale(0%) opacity(1); }

/* ── CTA BAND ── */
.cta-band { background: var(--ink); padding: 96px 5%; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::before { content: 'VISOART®'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-family: var(--fd); font-size: 180px; font-weight: 900; color: rgba(255, 255, 255, .03); letter-spacing: 8px; white-space: nowrap; line-height: 1; pointer-events: none; }
.cta-band .s-title { color: var(--white); position: relative; z-index: 1; }
.cta-left { position: relative; z-index: 1; }
.cta-right { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-sub { font-size: 15px; color: rgba(255, 255, 255, .5); margin-top: 12px; max-width: 420px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background: var(--white); border-top: 1px solid var(--line); padding: 72px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 56px; margin-bottom: 56px; }
.f-logo img { height: 36px; margin-bottom: 16px; }
.f-tag { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.f-txt { font-size: 13px; line-height: 1.8; color: var(--gray); max-width: 250px; margin-bottom: 20px; }
.f-contact-line { font-size: 13px; color: var(--gray); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.f-contact-line svg { width: 14px; height: 14px; stroke: var(--orange); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.f-contact-line a { color: var(--orange); }
.f-socials { display: flex; gap: 8px; margin-top: 20px; }
.f-soc { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 3px; display: flex; align-items: center; justify-content: center; transition: border-color .25s, background .25s; }
.f-soc svg { width: 14px; height: 14px; stroke: var(--gray); fill: none; stroke-width: 1.5; transition: stroke .25s; }
.f-soc:hover { border-color: var(--orange); background: var(--orange-xl); }
.f-soc:hover svg { stroke: var(--orange); }
.f-col h5 { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--ink); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.f-col ul a { font-size: 13px; color: var(--gray); transition: color .2s, padding-left .2s; display: block; }
.f-col ul a:hover { color: var(--orange); padding-left: 6px; }
.f-news-form input { width: 100%; border: 1px solid var(--line); background: var(--bg); color: var(--ink); font-family: var(--fb); font-size: 13px; padding: 11px 14px; border-radius: 2px; outline: none; margin-bottom: 8px; transition: border-color .25s; }
.f-news-form input::placeholder { color: var(--silver); }
.f-news-form input:focus { border-color: var(--orange); }
.f-news-form button { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 11px; border-radius: 2px; font-family: var(--fd); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background .25s; }
.f-news-form button:hover { background: var(--orange-d); }
.footer-bot { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bot p { font-size: 12px; color: var(--silver); }
.footer-bot a { color: var(--orange); }

/* ══════════════════════════════════════════════
   PORTFÓLIO PAGE
══════════════════════════════════════════════ */
.port-hero { padding: 120px 5% 72px; background: var(--bg); border-bottom: 1px solid var(--line); }
.port-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.filter-btn { font-family: var(--fd); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 9px 20px; border-radius: 2px; border: 1.5px solid var(--line); background: transparent; color: var(--gray); cursor: pointer; transition: all .25s; }
.filter-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-xl); }
.filter-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.port-full-grid { padding: 3px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--line); }
.pf-full { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg); cursor: pointer; }
.pf-full.hidden { display: none; }
.pf-full img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.77,0,.18,1), filter .4s; filter: brightness(.88); }
.pf-full:hover img { transform: scale(1.07); filter: brightness(.55); }
.pf-full-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14, 13, 11, .95) 0%, transparent 55%); opacity: 0; transition: opacity .35s; }
.pf-full:hover .pf-full-ov { opacity: 1; }
.pf-full-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; transform: translateY(12px); transition: transform .35s cubic-bezier(.77,0,.18,1); }
.pf-full:hover .pf-full-info { transform: translateY(0); }
.pf-full-cat { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.pf-full-name { font-family: var(--fd); font-size: 17px; font-weight: 700; color: var(--white); }

/* ══════════════════════════════════════════════
   AGÊNCIA PAGE
══════════════════════════════════════════════ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-bottom: 32px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: var(--line); }
.agencia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.agencia-img { border-radius: 4px; overflow: hidden; }
.agencia-img img { width: 100%; height: 480px; object-fit: cover; filter: brightness(.85); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--bg); padding: 32px 28px; border: 1px solid var(--line); transition: border-color .25s, transform .35s; }
.team-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.tc-icon { width: 52px; height: 52px; background: var(--orange-xl); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.tc-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.tc-role { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.tc-title { font-family: var(--fd); font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.tc-txt { font-size: 13px; line-height: 1.75; color: var(--gray); }
.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 36px 0; border-bottom: 1px solid var(--line); align-items: start; }
.tl-year { font-family: var(--fd); font-size: 32px; font-weight: 900; color: rgba(232, 67, 10, .2); line-height: 1; padding-top: 4px; }
.tl-title { font-family: var(--fd); font-size: 20px; font-weight: 700; margin-bottom: 8px; transition: color .25s; }
.tl-item:hover .tl-title { color: var(--orange); }
.tl-txt { font-size: 14px; line-height: 1.8; color: var(--gray); }

/* ══════════════════════════════════════════════
   SERVIÇOS PAGE
══════════════════════════════════════════════ */
.servico-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); }
.sf-card { background: var(--white); padding: 56px 48px; position: relative; overflow: hidden; transition: background .3s; }
.sf-card:hover { background: var(--bg); }
.sf-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.77,0,.18,1); }
.sf-card:hover::before { transform: scaleX(1); }
.sf-num { font-family: var(--fd); font-size: 80px; font-weight: 900; color: rgba(0,0,0,.04); position: absolute; top: 20px; right: 24px; line-height: 1; }
.sf-ico { width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: border-color .25s, background .25s; }
.sf-ico svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sf-card:hover .sf-ico { border-color: var(--orange); background: var(--orange-xl); }
.sf-title { font-family: var(--fd); font-size: 24px; font-weight: 800; margin-bottom: 8px; transition: color .25s; }
.sf-card:hover .sf-title { color: var(--orange); }
.sf-sub { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); opacity: .7; margin-bottom: 14px; }
.sf-txt { font-size: 14px; line-height: 1.8; color: var(--gray); margin-bottom: 24px; }
.sf-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.sf-list li { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.sf-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   CONTATO PAGE
══════════════════════════════════════════════ */
.contato-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; min-height: 80vh; }
.contato-left { background: var(--ink); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contato-left::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(232, 67, 10, .1) 0%, transparent 70%); }
.contato-left .s-title { color: var(--white); position: relative; z-index: 1; margin-bottom: 24px; }
.contato-info { position: relative; z-index: 1; margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-ico { width: 40px; height: 40px; min-width: 40px; background: rgba(232, 67, 10, .15); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.ci-ico svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.ci-label { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--silver); margin-bottom: 4px; }
.ci-val { font-size: 15px; color: var(--white); }
.ci-val a { color: var(--orange); }
.contato-right { background: var(--bg); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; border: 1.5px solid var(--line); background: var(--white); color: var(--ink); font-family: var(--fb); font-size: 14px; padding: 13px 16px; border-radius: 2px; outline: none; transition: border-color .25s; appearance: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--silver); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ══════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-grid-8 { grid-template-columns: repeat(2, 1fr); }
  .svc-cell:nth-child(4n) { border-right: 1px solid var(--line); }
  .svc-cell:nth-child(2n) { border-right: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .sobre-home, .agencia-grid { grid-template-columns: 1fr; }
  .sobre-home-img { display: none; }
  .mkt-split { grid-template-columns: 1fr; }
  .clients-logos { grid-template-columns: repeat(3, 1fr); }
  .client-logo-item:nth-child(5n) { border-right: 1px solid var(--line); }
  .client-logo-item:nth-child(3n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .servico-full-grid { grid-template-columns: 1fr; }
  .port-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-phone-link { display: none; }
  .svc-grid-8 { grid-template-columns: 1fr; }
  .svc-cell { border-right: 1px solid var(--line) !important; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .port-home-grid, .port-full-grid { grid-template-columns: 1fr; }
  .clients-logos { grid-template-columns: repeat(2, 1fr); }
  .client-logo-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .client-logo-item:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-band { flex-direction: column; }
  .mkt-visual, .mkt-list-col { padding: 60px 32px; }
  .contato-left, .contato-right { padding: 60px 32px; }
  .team-grid { grid-template-columns: 1fr; }
  body { cursor: auto; }
  #CUR, #CURR { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .agencia-img { display: none; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(48px, 16vw, 72px); }
  .clients-logos { grid-template-columns: repeat(2, 1fr); }
  .s-head { flex-direction: column; }
  .section { padding: 60px 5%; }
  .stats-row { padding: 48px 5%; grid-template-columns: 1fr 1fr; }
  .mkt-visual, .mkt-list-col { padding: 48px 24px; }
  .contato-left, .contato-right { padding: 48px 24px; }
  .sf-card { padding: 40px 28px; }
}
