/* =========================================================
   GO UP — Tecnologia & Audiovisual
   Estilo: corporativo high-end (navy + dourado)
========================================================= */
:root {
  /* Brand */
  --navy-950:  #060f21;   /* hero / deepest */
  --navy-900:  #0a1730;
  --navy-800:  #0f1f3d;
  --navy-700:  #16294d;
  --navy-600:  #1e3460;

  --gold:      #c9a227;
  --gold-2:    #e8c550;
  --gold-deep: #a8851a;
  --gold-soft: rgba(201,162,39,0.10);
  --gold-line: rgba(201,162,39,0.28);

  /* Light system (slate) */
  --white:   #ffffff;
  --s-50:    #f8fafc;
  --s-100:   #f1f5f9;
  --s-200:   #e2e8f0;
  --s-300:   #cbd5e1;
  --s-400:   #94a3b8;
  --s-500:   #64748b;
  --s-600:   #475569;
  --s-800:   #1e293b;
  --s-900:   #0f172a;
  --s-950:   #020617;

  --font:  "Outfit", "Inter", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --radius:    14px;
  --radius-lg: 20px;
  --ease:      cubic-bezier(.4,0,.2,1);
  --max:       1240px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: #fcfcfd;
  color: var(--s-800);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* Scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--s-100); }
::-webkit-scrollbar-thumb { background: var(--s-300); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--s-400); }

.ic { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* =========================================================
   SHARED
========================================================= */
.grad-gold {
  background: linear-gradient(100deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow .ic { width: 15px; height: 15px; color: var(--gold); }
.eyebrow--dark {
  color: var(--gold-2);
  background: rgba(201,162,39,0.07);
  border: 1px solid var(--gold-line);
  padding: 7px 16px;
  border-radius: 50px;
}
.section__title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--s-950);
}
.section__title--light { color: var(--white); }
.bar { height: 5px; width: 60px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: 50px; margin: 22px 0; }
.bar--center { margin-left: auto; margin-right: auto; }
.muted { color: var(--s-600); line-height: 1.8; font-weight: 300; margin-bottom: 16px; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section__sub { margin-top: 4px; }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn .ic { width: 18px; height: 18px; }
.btn--sm { padding: 10px 18px; font-size: .85rem; border-radius: 11px; }
.btn--full { width: 100%; }
.btn--gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: var(--navy-950);
  box-shadow: 0 10px 26px -8px rgba(201,162,39,.5);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(201,162,39,.6); }
.btn--dark {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-600);
}
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); }

/* =========================================================
   NAVBAR
========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .3s var(--ease);
}
.nav.scrolled {
  padding: 11px 0;
  background: rgba(8,16,33,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__logo img { height: 46px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-radius: 8px;
  transition: color .2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link.active { color: var(--gold-2); font-weight: 600; }
.nav__link.active::after { transform: scaleX(1); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 28px 24px;
  background: rgba(8,16,33,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__mobile.open { display: flex; }
.nav__mlink { padding: 13px 14px; color: rgba(255,255,255,.8); font-weight: 500; border-radius: 9px; }
.nav__mlink:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav__mobile .btn { margin-top: 10px; }

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  background: radial-gradient(120% 100% at 70% 0%, var(--navy-800) 0%, var(--navy-950) 55%);
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(148,163,184,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148,163,184,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(100% 80% at 50% 30%, #000 40%, transparent 100%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__orb--1 { width: 480px; height: 480px; background: rgba(201,162,39,.14); top: -120px; right: -60px; }
.hero__orb--2 { width: 420px; height: 420px; background: rgba(30,52,96,.45); bottom: -120px; left: -80px; }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 26px;
}
.hero__lead {
  font-size: 1.06rem;
  color: rgba(226,232,240,.78);
  font-weight: 300;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero__lead strong { color: #fff; font-weight: 500; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__accred {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.accred { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: .76rem; color: var(--s-400); }
.accred .ic { width: 17px; height: 17px; color: var(--gold); }

/* HERO showcase card */
.hero__visual { position: relative; }
.showcase {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
  transform: rotate(1.2deg);
  transition: transform .5s var(--ease);
}
.showcase:hover { transform: rotate(0); }
.showcase__art {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, var(--navy-700), var(--navy-950));
}
.showcase__logo { width: 200px; position: relative; z-index: 2; filter: drop-shadow(0 10px 30px rgba(0,0,0,.5)); }
.showcase__glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.22), transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity:.5; transform:scale(1);} 50% { opacity:1; transform:scale(1.12);} }
.showcase__badge {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  padding: 18px 20px;
  border-radius: var(--radius);
}
.showcase__status {
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold-2);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 7px;
}
.showcase__status .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: ping 1.8s infinite; }
@keyframes ping { 0%,100%{box-shadow:0 0 0 0 rgba(52,211,153,.5);} 70%{box-shadow:0 0 0 7px rgba(52,211,153,0);} }
.showcase__badge h3 { color: #fff; font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.showcase__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: .74rem; color: var(--s-400); flex-wrap: wrap; }
.showcase__meta span { display: inline-flex; align-items: center; gap: 5px; }
.showcase__meta .ic { width: 14px; height: 14px; color: var(--gold); }
.showcase__tags { font-family: var(--mono); }

.glass {
  background: rgba(10,18,38,.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
}
.float-chip {
  position: absolute;
  top: -16px; right: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-radius: 13px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.7);
  z-index: 3;
}
.float-chip .ic { width: 22px; height: 22px; color: var(--gold-2); }
.float-chip strong { display: block; color: #fff; font-size: .8rem; font-weight: 700; }
.float-chip span { display: block; font-family: var(--mono); font-size: .64rem; color: var(--s-400); }

/* HERO áreas de atuação */
.hero__areas {
  margin-top: 70px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.area {
  display: flex; align-items: center; gap: 11px;
  padding: 16px 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  font-family: var(--mono); font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  color: var(--s-300);
  transition: border-color .3s, transform .3s, color .3s;
}
.area:hover { border-color: var(--gold-line); transform: translateY(-3px); color: #fff; }
.area .ic { width: 22px; height: 22px; color: var(--gold-2); }

/* =========================================================
   SOBRE
========================================================= */
.sobre { padding: 110px 0; background: var(--white); }
.sobre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sobre__highlights { display: flex; flex-wrap: wrap; gap: 16px 28px; margin-top: 28px; }
.hl { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .92rem; color: var(--s-800); }
.hl .ic { width: 19px; height: 19px; color: var(--gold-deep); }

.sobre__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pillar {
  padding: 26px 24px;
  background: var(--s-50);
  border: 1px solid var(--s-200);
  border-radius: var(--radius-lg);
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.pillar:hover { box-shadow: 0 18px 40px -22px rgba(15,23,42,.3); transform: translateY(-4px); border-color: var(--gold-line); }
.pillar__ic {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.pillar__ic .ic { width: 23px; height: 23px; }
.pillar h3 { font-size: 1rem; font-weight: 700; color: var(--s-900); margin-bottom: 8px; }
.pillar p { font-size: .85rem; color: var(--s-500); line-height: 1.65; }

/* =========================================================
   SERVIÇOS
========================================================= */
.servicos { padding: 110px 0; background: var(--s-50); border-top: 1px solid var(--s-200); border-bottom: 1px solid var(--s-200); }
.svc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  position: relative;
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid var(--s-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 13px;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.svc:hover { box-shadow: 0 26px 56px -28px rgba(15,23,42,.4); transform: translateY(-5px); border-color: var(--gold-line); }
.svc--feat { background: linear-gradient(165deg, #fffdf5, #fff); border-color: var(--gold-line); }
.svc__tag {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .12em;
  color: var(--navy-950);
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  padding: 4px 11px; border-radius: 50px;
}
.svc__ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  transition: transform .3s, background .3s;
}
.svc__ic .ic { width: 26px; height: 26px; }
.svc:hover .svc__ic { transform: scale(1.08); background: rgba(201,162,39,.16); }
.svc__num { font-family: var(--mono); font-size: .8rem; font-weight: 700; color: var(--gold-deep); letter-spacing: .1em; }
.svc h3 { font-size: 1.15rem; font-weight: 700; color: var(--s-900); }
.svc > p { font-size: .9rem; color: var(--s-500); line-height: 1.7; }
.svc__list { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.svc__list li { position: relative; padding-left: 20px; font-size: .85rem; color: var(--s-600); }
.svc__list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--gold); transform: rotate(45deg);
}
.svc--wide { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; gap: 44px; }
.svc__wide-main { flex: 1.2; display: flex; flex-direction: column; gap: 13px; }
.svc__list--wide { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: center; }

/* =========================================================
   PROCESSO
========================================================= */
.processo { padding: 110px 0; background: var(--white); }
.proc__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.proc {
  padding: 30px 26px;
  border: 1px solid var(--s-200);
  border-radius: var(--radius-lg);
  background: var(--s-50);
  text-align: left;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.proc:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(15,23,42,.3); border-color: var(--gold-line); }
.proc__dot {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--navy-900);
  color: var(--gold-2);
  font-family: var(--mono); font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.proc h4 { font-size: 1.05rem; font-weight: 700; color: var(--s-900); margin-bottom: 8px; }
.proc p { font-size: .86rem; color: var(--s-500); line-height: 1.65; }

/* =========================================================
   PORTFÓLIO
========================================================= */
.portfolio { padding: 110px 0; background: var(--s-50); border-top: 1px solid var(--s-200); border-bottom: 1px solid var(--s-200); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; background: var(--s-200); padding: 6px; border-radius: var(--radius); width: fit-content; margin: 0 auto 44px; }
.filter {
  padding: 9px 22px;
  font-family: var(--font); font-size: .88rem; font-weight: 600;
  color: var(--s-600);
  background: transparent; border: none; border-radius: 10px; cursor: pointer;
  transition: all .2s;
}
.filter:hover { color: var(--s-900); }
.filter.active { background: var(--navy-900); color: #fff; box-shadow: 0 4px 12px rgba(15,23,42,.18); }

.port__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pcard {
  background: var(--white);
  border: 1px solid var(--s-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .35s, transform .35s, border-color .35s;
}
.pcard.hide { display: none; }
.pcard:hover { box-shadow: 0 30px 60px -30px rgba(15,23,42,.45); transform: translateY(-5px); border-color: var(--s-300); }
.pcard__img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.pcard__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,15,33,.55), transparent 55%);
}
.pcard__cat {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--mono); font-size: .62rem; font-weight: 700; letter-spacing: .12em;
  color: var(--gold-2);
  background: rgba(6,15,33,.82); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.12);
  padding: 5px 11px; border-radius: 6px;
}
.pimg-1 { background: linear-gradient(135deg, #0d2144, #1a4a80); }
.pimg-2 { background: linear-gradient(135deg, #2a1500, #7a3b00); }
.pimg-3 { background: linear-gradient(135deg, #062b1f, #00724e); }
.pimg-4 { background: linear-gradient(135deg, #1a0f33, #4a2a80); }
.pimg-5 { background: linear-gradient(135deg, #2a2200, #8a6a10); }
.pimg-6 { background: linear-gradient(135deg, #2a0a1a, #7a1240); }
.pcard__body { padding: 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pcard__meta { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .72rem; color: var(--s-400); }
.pcard__meta .ic { width: 14px; height: 14px; color: var(--gold-deep); }
.pcard__meta span { color: var(--s-300); }
.pcard h3 { font-size: 1.15rem; font-weight: 700; color: var(--s-900); transition: color .25s; }
.pcard:hover h3 { color: var(--gold-deep); }
.pcard__body > p { font-size: .87rem; color: var(--s-500); line-height: 1.65; flex: 1; }
.pcard__strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding-top: 16px; margin-top: 4px;
  border-top: 1px solid var(--s-100);
  font-family: var(--mono);
}
.pcard__strip span { display: block; font-size: .62rem; letter-spacing: .1em; color: var(--s-400); margin-bottom: 3px; }
.pcard__strip strong { font-size: .92rem; color: var(--s-800); font-weight: 700; }

/* Portfólio — estado "em breve" */
.port__soon {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: var(--white);
  border: 1px dashed var(--s-300);
  border-radius: var(--radius-lg);
}
.port__soon-ic {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.port__soon-ic .ic { width: 30px; height: 30px; }
.port__soon h3 { font-size: 1.4rem; font-weight: 700; color: var(--s-900); margin-bottom: 12px; }
.port__soon p { color: var(--s-500); line-height: 1.7; font-weight: 300; margin-bottom: 26px; }

/* =========================================================
   CONTACTO
========================================================= */
.contato { padding: 110px 0; background: var(--white); }
.contato__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contato__channels { display: flex; flex-direction: column; gap: 13px; margin-top: 30px; }
.channel {
  display: flex; align-items: center; gap: 15px;
  padding: 16px 18px;
  border: 1px solid var(--s-200);
  border-radius: var(--radius);
  background: var(--s-50);
  transition: all .25s;
}
.channel:hover { border-color: var(--gold-line); transform: translateX(5px); box-shadow: 0 12px 26px -16px rgba(201,162,39,.5); }
.channel__ic {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--gold-soft); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.channel__ic .ic { width: 21px; height: 21px; }
.channel span { display: block; font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; color: var(--s-400); }
.channel strong { display: block; font-size: .95rem; color: var(--s-900); font-weight: 600; }

.contato__form {
  padding: 34px;
  background: var(--s-50);
  border: 1px solid var(--s-200);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 18px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--mono); font-size: .68rem; font-weight: 600; letter-spacing: .1em; color: var(--s-500); }
.field input, .field select, .field textarea {
  padding: 13px 15px;
  background: var(--white);
  border: 1px solid var(--s-300);
  border-radius: 11px;
  font-family: var(--font); font-size: .92rem;
  color: var(--s-900);
  outline: none; resize: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--s-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.14);
}
.form__note { text-align: center; font-family: var(--mono); font-size: .74rem; color: var(--s-400); }

/* =========================================================
   FOOTER
========================================================= */
.footer { background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.07); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding: 70px 28px 44px; }
.footer__logo { height: 48px; margin-bottom: 18px; }
.footer__brand > p { color: var(--s-400); font-size: .88rem; line-height: 1.7; font-weight: 300; max-width: 280px; margin-bottom: 22px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--s-400); transition: all .25s;
}
.footer__social a:hover { color: var(--gold-2); border-color: var(--gold-line); background: var(--gold-soft); }
.footer__social .ic { width: 17px; height: 17px; }
.footer__col h5 { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; color: #fff; margin-bottom: 18px; }
.footer__col a { display: block; padding: 6px 0; font-size: .88rem; color: var(--s-400); transition: color .2s; }
.footer__col a:hover { color: var(--gold-2); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 28px; text-align: center; }
.footer__bottom p { font-family: var(--mono); font-size: .76rem; color: var(--s-500); }

/* =========================================================
   ANIMAÇÕES (scroll reveal)
========================================================= */
.anim { opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.anim[data-anim="up"]    { transform: translateY(34px); }
.anim[data-anim="scale"] { transform: scale(.94); }
.anim[data-anim="fade"]  { transform: none; }
.anim.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1 !important; transform: none !important; }
  .showcase__glow, .showcase__status .dot { animation: none; }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { max-width: 460px; }
  .sobre__grid { grid-template-columns: 1fr; gap: 48px; }
  .svc__grid { grid-template-columns: 1fr 1fr; }
  .svc--wide { flex-direction: column; gap: 18px; }
  .svc__list--wide { grid-template-columns: 1fr 1fr; }
  .proc__grid { grid-template-columns: 1fr 1fr; }
  .port__grid, .testi__grid { grid-template-columns: 1fr 1fr; }
  .contato__grid { grid-template-columns: 1fr; gap: 44px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .nav__menu, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .svc__grid { grid-template-columns: 1fr; }
  .proc__grid { grid-template-columns: 1fr; }
  .port__grid, .testi__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .float-chip { display: none; }
}
@media (max-width: 440px) {
  .container { padding: 0 18px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .svc__list--wide { grid-template-columns: 1fr; }
}

/* ============================================
   BOTÃO FLUTUANTE — WHATSAPP
============================================ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(37,211,102,.55), 0 4px 10px rgba(0,0,0,.18);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px -6px rgba(37,211,102,.7); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float__label {
  position: absolute;
  right: 70px;
  background: var(--navy-900);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.4);
}
.wa-float:hover .wa-float__label { opacity: 1; transform: translateX(0); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 10px 26px -6px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 10px 26px -6px rgba(37,211,102,.55), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px -6px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 440px) {
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-float__label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}
