/* =========================================================
   FS TECH SOLUTIONS — style.css
   Identidade própria | cores #223C7E (primária) e #3394D4 (secundária)
   ========================================================= */

/* ---------- Variáveis / Tokens ---------- */
:root {
  --navy: #223C7E;
  --navy-deep: #182c5e;
  --navy-darker: #0f1d40;
  --blue: #3394D4;
  --blue-light: #5cb0e6;
  --blue-soft: #eaf4fc;
  --blue-mist: #f4f9fe;

  --ink: #16203a;
  --gray-700: #475066;
  --gray-500: #6b7488;
  --gray-300: #d4dae6;
  --gray-100: #f3f6fb;
  --white: #ffffff;

  --wpp: #25d366;
  --wpp-dark: #1da851;

  --grad-brand: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  --grad-brand-soft: linear-gradient(135deg, #2c4a96 0%, #3aa0e0 100%);
  --grad-deep: linear-gradient(150deg, #0f1d40 0%, #223C7E 55%, #2b5fa8 100%);

  --shadow-sm: 0 4px 16px rgba(34, 60, 126, 0.08);
  --shadow-md: 0 14px 40px rgba(34, 60, 126, 0.12);
  --shadow-lg: 0 28px 70px rgba(34, 60, 126, 0.20);

  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;

  --ff-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--ff-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--ink); line-height: 1.18; font-weight: 700; }
a { text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
section { position: relative; }

.container { max-width: var(--container); }

/* ---------- Reutilizáveis ---------- */
.section { padding: clamp(70px, 9vw, 130px) 0; }

.section-head { max-width: 740px; margin: 0 auto clamp(40px, 6vw, 66px); text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 8px 16px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow--light { color: #cfe6fa; background: rgba(255,255,255,.12); }

.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title.text-start { text-align: left; }
.section-lead { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--gray-500); }
.section-lead.text-start { text-align: left; }
.lead-light { color: rgba(255,255,255,.78); }

.grad-text {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Botões ---------- */
.btn { font-family: var(--ff-head); font-weight: 700; border-radius: var(--radius-pill); border: none; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease); }
.btn-lg { padding: 14px 30px; font-size: 1rem; }

.btn-primary-grad {
  background: var(--grad-brand); color: #fff;
  padding: 13px 28px; box-shadow: 0 12px 30px rgba(51,148,212,.35);
}
.btn-primary-grad:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 40px rgba(51,148,212,.45); }

.btn-outline-soft {
  background: transparent; color: var(--navy);
  border: 2px solid var(--gray-300); padding: 11px 26px;
}
.btn-outline-soft:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-3px); }

.btn-light-grad {
  background: #fff; color: var(--navy);
  padding: 13px 28px; box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn-light-grad:hover { color: var(--blue); transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.25); }

.btn i { margin-right: 6px; }

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
#mainNav {
  padding: 16px 0;
  background: rgba(255,255,255,0);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
#mainNav.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(34,60,126,.10);
  padding: 9px 0;
}
.brand-logo { height: 46px; width: auto; transition: height .35s var(--ease), filter .35s var(--ease); }
#mainNav.scrolled .brand-logo { height: 38px; }

/* Topo (navbar transparente, apenas desktop): logo e links em branco */
@media (min-width: 992px) {
  #mainNav:not(.scrolled) .brand-logo { filter: brightness(0) invert(1); }
  #mainNav:not(.scrolled) .navbar-nav .nav-link { color: #fff; }
  #mainNav:not(.scrolled) .navbar-nav .nav-link:hover,
  #mainNav:not(.scrolled) .navbar-nav .nav-link.active { color: var(--blue-light); }
}

.navbar-nav .nav-link {
  font-family: var(--ff-head); font-weight: 600; color: var(--ink);
  font-size: .96rem; padding: 8px 14px; position: relative;
}
.navbar-nav .nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--grad-brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--blue); }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }

.btn-wpp-nav {
  background: var(--wpp); color: #fff !important; font-weight: 700;
  padding: 9px 20px; border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(37,211,102,.3);
}
.btn-wpp-nav:hover { background: var(--wpp-dark); transform: translateY(-2px); }

/* hamburguer custom */
.navbar-toggler { border: none; padding: 8px; outline: none; box-shadow: none; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar { display: block; width: 26px; height: 3px; border-radius: 3px; background: var(--navy); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; padding: clamp(130px, 18vw, 200px) 0 clamp(90px, 12vw, 150px);
  background: var(--grad-deep);
  overflow: hidden; isolation: isolate;
}
.hero-particles { position: absolute; inset: 0; z-index: 0; }
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0; opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 60% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 60% 40%, #000 0%, transparent 75%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; opacity: .55; }
.hero-orb--1 { width: 420px; height: 420px; background: radial-gradient(circle, #3aa0e0, transparent 70%); top: -120px; right: -80px; }
.hero-orb--2 { width: 360px; height: 360px; background: radial-gradient(circle, #2b5fa8, transparent 70%); bottom: -120px; left: -100px; }
.hero-inner { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: #dcecfb; font-family: var(--ff-head); font-weight: 600; font-size: .9rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 18px; border-radius: var(--radius-pill); margin-bottom: 26px;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--wpp); box-shadow: 0 0 0 0 rgba(37,211,102,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.6);} 70%{box-shadow:0 0 0 12px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

.hero-title { color: #fff; font-size: clamp(2.1rem, 5.2vw, 3.5rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 22px; }
.hero-sub { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.18rem); max-width: 560px; margin-bottom: 34px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-actions .btn-outline-soft { color: #fff; border-color: rgba(255,255,255,.35); }
.hero-actions .btn-outline-soft:hover { color: var(--navy); background: #fff; border-color: #fff; }

.hero-highlights { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero-highlights li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.9); font-size: .92rem; font-weight: 500; }
.hero-highlights i { color: var(--blue-light); font-size: 1rem; }

/* visual / stage */
.hero-visual { perspective: 1200px; }
.hero-stage { position: relative; height: 440px; }
.hero-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.line-path { fill: none; stroke: url(#lg); stroke: rgba(92,176,230,.45); stroke-width: 1.5; stroke-dasharray: 6 8; animation: dash 18s linear infinite; }
.line-path--2 { animation-duration: 24s; }
.line-path--3 { animation-duration: 30s; }
@keyframes dash { to { stroke-dashoffset: -400; } }

.hero-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 130px; height: 130px; border-radius: 30px; z-index: 2;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  animation: floaty 6s ease-in-out infinite;
}
.hero-core i { font-size: 3.4rem; color: #fff; }

.float-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.95); border-radius: 16px; padding: 13px 16px;
  box-shadow: 0 18px 45px rgba(8,20,50,.28); min-width: 200px;
  border: 1px solid rgba(255,255,255,.6);
}
.float-card .fc-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.fc-icon--green { background: var(--wpp); }
.fc-icon--cyan { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.fc-body { display: flex; flex-direction: column; }
.fc-title { font-family: var(--ff-head); font-weight: 700; color: var(--ink); font-size: .9rem; }
.fc-text { font-size: .78rem; color: var(--gray-500); }

.float-card--main { top: 30px; left: 0; }
.float-card--a { top: 145px; right: -10px; }
.float-card--b { bottom: 70px; left: 8px; }

.hero-stat {
  position: absolute; bottom: 0; right: 16px; z-index: 3;
  background: var(--grad-brand); color: #fff; border-radius: 16px;
  padding: 14px 20px; text-align: center; box-shadow: 0 16px 40px rgba(51,148,212,.4);
}
.hero-stat strong { display: block; font-family: var(--ff-head); font-size: 1.6rem; line-height: 1; }
.hero-stat span { font-size: .76rem; opacity: .9; }

@keyframes floaty { 0%,100%{ transform: translate(-50%,-50%) translateY(0); } 50%{ transform: translate(-50%,-50%) translateY(-14px); } }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: clamp(50px, 8vw, 110px); }
.hero-wave path { fill: #fff; }

/* =========================================================
   SERVIÇOS
   ========================================================= */
.section-services { background: #fff; }
.service-card {
  position: relative; height: 100%; background: #fff;
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  transform-style: preserve-3d; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; color: var(--blue); background: var(--blue-soft);
  margin-bottom: 20px; transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.service-card:hover .svc-icon { background: var(--grad-brand); color: #fff; transform: rotate(-6deg) scale(1.06); }
.service-card h3 { font-size: 1.14rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: .94rem; color: var(--gray-500); margin: 0; }

/* =========================================================
   SUPORTE REMOTO
   ========================================================= */
.section-remote { background: var(--blue-mist); }
.check-list { list-style: none; margin: 26px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--gray-700); font-size: .95rem; }
.check-list i { width: 24px; height: 24px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-size: .7rem; flex-shrink: 0; }

.remote-cta { background: #fff; border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.remote-cta p { margin: 0; font-family: var(--ff-head); font-weight: 700; color: var(--navy); }

/* visual conexão remota */
.remote-visual { position: relative; max-width: 460px; margin: 0 auto; }
.remote-screen {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-300);
}
.rs-bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; background: var(--grad-deep); }
.rs-bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.45); }
.rs-bar span:first-child { background: #ff6058; }
.rs-bar span:nth-child(2) { background: #ffbd2e; }
.rs-bar span:nth-child(3) { background: #29c93f; }
.rs-bar small { margin-left: auto; color: rgba(255,255,255,.8); font-size: .76rem; }
.rs-body { padding: 26px 24px 30px; }
.rs-line { display: flex; align-items: center; gap: 10px; color: var(--gray-700); font-size: .92rem; margin-bottom: 14px; opacity: 0; transform: translateX(-8px); animation: rsIn .5s var(--ease) forwards; }
.rs-line i { color: var(--wpp-dark); }
.rs-line:nth-child(1){ animation-delay:.2s;} .rs-line:nth-child(2){ animation-delay:.9s;} .rs-line:nth-child(3){ animation-delay:1.6s;}
@keyframes rsIn { to { opacity: 1; transform: translateX(0); } }
.rs-progress { height: 8px; border-radius: 8px; background: var(--gray-100); overflow: hidden; margin: 22px 0 16px; }
.rs-progress span { display: block; height: 100%; width: 0; background: var(--grad-brand); border-radius: 8px; animation: rsProg 2.4s var(--ease) forwards; animation-delay: 1.8s; }
@keyframes rsProg { to { width: 100%; } }
.rs-status { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--navy); font-weight: 600; }
.rs-status i { color: var(--blue); }

.remote-ping { position: absolute; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.3rem; box-shadow: var(--shadow-md); animation: floaty 5s ease-in-out infinite; }
.remote-ping--a { top: -22px; right: 10px; background: var(--grad-brand); }
.remote-ping--b { bottom: -20px; left: -10px; background: var(--wpp); animation-delay: 1s; }

/* =========================================================
   VISITA TÉCNICA
   ========================================================= */
.section-visit { background: var(--grad-deep); overflow: hidden; }
.visit-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(51,148,212,.35), transparent 70%); top: -150px; right: -120px; filter: blur(40px); }
.visit-points { margin-top: 24px; }
.vp { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 13px 16px; color: #fff; font-weight: 500; font-size: .92rem; transition: background .3s var(--ease), transform .3s var(--ease); }
.vp:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.vp i { color: var(--blue-light); font-size: 1.15rem; }

.visit-card-stack { position: relative; max-width: 430px; margin: 0 auto; }
.vcard { border-radius: var(--radius-lg); }
.vcard--front {
  position: relative; z-index: 2; background: #fff; padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg);
}
.vcard--back { position: absolute; inset: 24px -18px -18px 24px; z-index: 1; background: linear-gradient(135deg, rgba(51,148,212,.5), rgba(34,60,126,.3)); }
.vcard-top { display: flex; align-items: center; gap: 10px; font-family: var(--ff-head); font-weight: 800; color: var(--navy); font-size: 1.1rem; margin-bottom: 20px; }
.vcard-top i { color: var(--blue); }
.vcard-rows > div { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--gray-300); }
.vcard-rows span { color: var(--gray-500); font-size: .9rem; }
.vcard-rows b { font-family: var(--ff-head); color: var(--ink); font-size: .9rem; text-align: right; }
.vcard-foot { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--wpp-dark); font-weight: 700; font-size: .9rem; }

/* =========================================================
   ESTATÍSTICAS EM NÚMEROS (contadores)
   ========================================================= */
.section-stats { background: var(--grad-deep); overflow: hidden; }
.stats-grid-overlay { position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(circle at 50% 20%, #000, transparent 75%); -webkit-mask-image: radial-gradient(circle at 50% 20%, #000, transparent 75%); }
.section-stats .container { position: relative; z-index: 2; }
.stat-card { text-align: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 32px 18px; height: 100%; transition: transform .35s var(--ease), background .35s var(--ease); backdrop-filter: blur(6px); }
.stat-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }
.stat-ic { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 16px; background: rgba(255,255,255,.12); color: var(--blue-light); display: grid; place-items: center; font-size: 1.6rem; }
.stat-num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1; color: #fff; margin-bottom: 8px; }
.stat-card p { color: rgba(255,255,255,.78); font-size: .92rem; margin: 0; }
.stats-note { text-align: center; margin: 36px 0 0; font-size: .82rem; color: rgba(255,255,255,.5); }
.stats-note i { margin-right: 6px; }

/* =========================================================
   BENEFÍCIOS
   ========================================================= */
.section-benefits { background: var(--blue-mist); }
.benefit { height: 100%; background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); border: 1px solid transparent; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit i { font-size: 1.7rem; color: #fff; width: 54px; height: 54px; border-radius: 15px; background: var(--grad-brand); display: grid; place-items: center; margin-bottom: 18px; transition: transform .4s var(--ease); }
.benefit:hover i { transform: scale(1.08) rotate(5deg); }
.benefit h3 { font-size: 1.06rem; margin-bottom: 8px; }
.benefit p { font-size: .9rem; color: var(--gray-500); margin: 0; }

/* =========================================================
   PÚBLICO ATENDIDO
   ========================================================= */
.section-audience { background: #fff; }
.aud-card { position: relative; height: 100%; background: linear-gradient(180deg, #fff, var(--blue-mist)); border: 1px solid var(--gray-300); border-radius: var(--radius-lg); padding: 30px 28px; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.aud-card::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 130px; height: 130px; border-radius: 50%; background: radial-gradient(circle, rgba(51,148,212,.16), transparent 70%); transition: transform .5s var(--ease); }
.aud-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.aud-card:hover::after { transform: scale(1.5); }
.aud-ic { position: relative; z-index: 1; width: 60px; height: 60px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); color: var(--blue); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 20px; }
.aud-card:hover .aud-ic { background: var(--grad-brand); color: #fff; }
.aud-card h3 { position: relative; z-index: 1; font-size: 1.14rem; margin-bottom: 10px; }
.aud-card p { position: relative; z-index: 1; font-size: .93rem; color: var(--gray-500); margin: 0; }

/* =========================================================
   MARCAS E EQUIPAMENTOS
   ========================================================= */
.section-brands { background: var(--blue-mist); overflow: hidden; }
.equip-card { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; height: 100%; background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius); padding: 26px 14px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.equip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.equip-card i { font-size: 1.9rem; color: var(--blue); width: 56px; height: 56px; border-radius: 50%; background: var(--blue-soft); display: grid; place-items: center; transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease); }
.equip-card:hover i { background: var(--grad-brand); color: #fff; transform: rotate(-6deg) scale(1.05); }
.equip-card span { font-family: var(--ff-head); font-weight: 700; color: var(--ink); font-size: .92rem; }

/* sistemas / plataformas */
.platforms { margin-top: 48px; text-align: center; }
.platforms-label { display: block; font-family: var(--ff-head); font-weight: 700; color: var(--gray-500); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.platforms-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 0; }
.platforms-list li { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius-pill); padding: 10px 20px; font-family: var(--ff-head); font-weight: 600; color: var(--ink); font-size: .92rem; transition: transform .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.platforms-list li:hover { transform: translateY(-3px); color: var(--blue); border-color: var(--blue); }
.platforms-list i { color: var(--blue); font-size: 1.05rem; }

/* marquee de marcas */
.brand-marquee { position: relative; margin-top: 46px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.brand-track { display: flex; width: max-content; gap: 16px; animation: marquee 32s linear infinite; }
.brand-marquee:hover .brand-track { animation-play-state: paused; }
.brand-track span { flex: 0 0 auto; font-family: var(--ff-head); font-weight: 700; color: var(--navy); font-size: 1.15rem; background: #fff; border: 1px solid var(--gray-300); border-radius: 14px; padding: 14px 28px; box-shadow: var(--shadow-sm); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.brands-cta { margin-top: 46px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; text-align: center; }
.brands-cta span { font-family: var(--ff-head); font-weight: 600; color: var(--gray-700); }

/* =========================================================
   CONTATO
   ========================================================= */
.section-contact { background: var(--grad-deep); overflow: hidden; }
.contact-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(51,148,212,.3), transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(40px); }
.contact-box { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.contact-ic { width: 84px; height: 84px; border-radius: 26px; margin: 0 auto 24px; background: var(--wpp); color: #fff; display: grid; place-items: center; font-size: 2.4rem; box-shadow: 0 18px 44px rgba(37,211,102,.4); animation: floaty 5s ease-in-out infinite; }
.contact-number { display: inline-flex; align-items: center; gap: 12px; font-family: var(--ff-head); font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.2rem); color: #fff; margin: 18px 0 28px; }
.contact-number i { color: var(--wpp); }
.contact-number:hover { color: var(--blue-light); }
.btn-contact { font-size: 1.1rem; padding: 16px 38px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { position: relative; background: #0c1838; color: rgba(255,255,255,.7); padding: clamp(54px, 7vw, 80px) 0 30px; overflow: hidden; }
.footer-grid-overlay { position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(circle at 20% 0%, #000, transparent 70%); -webkit-mask-image: radial-gradient(circle at 20% 0%, #000, transparent 70%); }
.site-footer .container { position: relative; z-index: 2; }
.footer-logo-badge { display: inline-block; background: #fff; padding: 12px 18px; border-radius: 14px; margin-bottom: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.footer-logo-badge img { height: 46px; width: auto; }
.footer-about { font-size: .95rem; max-width: 380px; margin-bottom: 22px; }
.footer-wpp { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; }
.footer-wpp i { color: var(--wpp); font-size: 1.3rem; }
.footer-wpp:hover { color: var(--wpp); }

.footer-title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 18px; letter-spacing: .02em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; font-size: .93rem; display: flex; align-items: center; gap: 9px; }
.footer-links li i { color: var(--blue-light); width: 18px; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--blue-light); padding-left: 4px; }

.footer-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-copy { margin: 0; font-size: .86rem; }
.footer-credit-pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: var(--radius-pill); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); font-size: .82rem; transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.footer-credit-pill > span { color: rgba(255,255,255,.6); font-weight: 500; white-space: nowrap; }
.footer-credit-pill:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.credit-logo { height: 26px; width: auto; opacity: .92; transition: opacity .3s var(--ease); }
.footer-credit-pill:hover .credit-logo { opacity: 1; }

/* =========================================================
   FLOAT BUTTONS
   ========================================================= */
.wpp-float { position: fixed; right: 22px; bottom: 22px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: var(--wpp); color: #fff; display: grid; place-items: center; font-size: 1.8rem; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .3s var(--ease), background .3s var(--ease); }
.wpp-float:hover { transform: scale(1.08); color: #fff; background: var(--wpp-dark); }
.wpp-float-pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wpp); animation: ripple 2.2s ease-out infinite; }
@keyframes ripple { 0%{ transform: scale(1); opacity: .7; } 100%{ transform: scale(1.7); opacity: 0; } }

.back-to-top { position: fixed; right: 24px; bottom: 92px; z-index: 998; width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--grad-brand); color: #fff; font-size: 1rem; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); box-shadow: var(--shadow-md); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { box-shadow: 0 14px 34px rgba(51,148,212,.5); transform: translateY(-3px); }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 991px){
  #navMenu { background: rgba(255,255,255,.98); backdrop-filter: blur(12px); border-radius: var(--radius); margin-top: 12px; padding: 14px 18px; box-shadow: var(--shadow-md); }
  #mainNav { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: 0 4px 20px rgba(34,60,126,.08); }
  .navbar-nav .nav-link::after { display: none; }
  .btn-wpp-nav { display: inline-block; width: fit-content; }

  .hero-highlights { gap: 10px 18px; }

  /* Hero: empilha os cards em fluxo normal (sem sobreposição) */
  .hero-visual { margin-top: 46px; }
  .hero-stage { height: auto; max-width: 380px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
  .hero-lines, .hero-core { display: none; }
  .float-card, .hero-stat { position: static; }
  .float-card { width: 100%; min-width: 0; }
  .hero-stat { align-self: center; }
}

@media (max-width: 767px){
  .check-list { grid-template-columns: 1fr; }
  .hero { text-align: center; }
  .hero-actions, .hero-highlights { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .section-title.text-start, .section-lead.text-start { text-align: center; }
  .remote-cta { flex-direction: column; text-align: center; }

  /* Oculta os badges decorativos do mockup (evita ícones saindo da tela) */
  .remote-ping { display: none; }
}

@media (max-width: 575px){
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  /* Pill do crédito: quebra e centraliza sem estourar a largura */
  .footer-credit-pill { flex-wrap: wrap; justify-content: center; max-width: 100%; }
  .footer-credit-pill > span { white-space: normal; }
  .credit-logo { max-width: 100%; }

  /* Estatísticas: menos preenchimento para não espremer */
  .stat-card { padding: 24px 12px; }
  .stat-ic { width: 52px; height: 52px; font-size: 1.35rem; margin-bottom: 14px; }
  .stat-card p { font-size: .84rem; }

  /* Equipamentos: um abaixo do outro, em layout horizontal (ícone + texto) */
  .equip-card { flex-direction: row; align-items: center; justify-content: flex-start; gap: 16px; padding: 16px 20px; text-align: left; }
  .equip-card i { width: 48px; height: 48px; font-size: 1.45rem; margin: 0; flex-shrink: 0; }
  .equip-card span { font-size: 1rem; }
}

/* ---------- Acessibilidade: reduzir movimento ---------- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Fallback: garantir conteúdo visível se AOS falhar ---------- */
.no-aos [data-aos] { opacity: 1 !important; transform: none !important; }
