/* ═══════════════════════════════════════════
   F5 AGÊNCIA DIGITAL — SHARED CSS v2
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Barlow+Condensed:wght@700;800;900&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
:root{
  --night:#080E1A; --navy:#0D1B33; --blue:#1659B8; --blue-g:#1E6FD9;
  --cyan:#00C8FF; --orange:#F5821F; --orange2:#FF9A3C;
  --white:#FFF; --muted:rgba(255,255,255,0.55); --border:rgba(255,255,255,0.08);
  --radius:12px;
}
body{font-family:'Inter',sans-serif;background:var(--night);color:var(--white);-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit}

/* ── HEADER ── */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:900;min-height:68px;
  display:flex;flex-direction:column;
  background:rgba(8,14,26,0.88);backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);border-bottom:1px solid var(--border);
  transition:background .3s;
}
.hdr-inner{
  height:68px;display:flex;align-items:center;justify-content:space-between;
  padding:0 40px;max-width:1320px;margin:0 auto;width:100%;
}

/* LOGO HEADER — somente imagem, sem texto */
.hdr-logo{display:flex;align-items:center;text-decoration:none;flex-shrink:0}
.hdr-logo .f5-logo-img{height:60px;width:auto;object-fit:contain;display:none}
/* Fallback escondido por padrão — JS exibe só quando não há logo */
.logo-fallback{
  font-family:'Barlow Condensed',sans-serif;font-size:22px;font-weight:900;
  background:linear-gradient(90deg,var(--blue-g),var(--cyan));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  display:none!important; /* sempre oculto — JS mostra só se não houver logo */
}
.logo-fallback em{font-style:normal;-webkit-text-fill-color:var(--orange)}

/* NAV */
.hdr-nav{display:flex;align-items:center;gap:2px}
.hdr-nav a{
  position:relative;
  color:var(--muted);font-size:13.5px;font-weight:500;text-decoration:none;
  padding:7px 13px;border-radius:7px;transition:color .2s,background .2s;
  white-space:nowrap;
}
.hdr-nav a:hover,.hdr-nav a.active{color:var(--white);background:rgba(255,255,255,0.07)}
.hdr-nav a.active::after{
  content:'';position:absolute;left:13px;right:13px;bottom:2px;height:2px;
  background:linear-gradient(90deg,var(--blue-g),var(--cyan));border-radius:2px;
}

/* REVELAÇÃO EM CASCATA — evita "flash" de itens que serão ocultados
   (ex: Portfólio/Ver Planos) enquanto o JS ainda carrega a configuração */
.hdr-nav > a{opacity:0}
.hdr-nav.nav-ready > a{animation:navReveal .4s ease forwards}
@keyframes navReveal{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.hdr-nav.nav-ready > a:nth-child(1){animation-delay:.00s}
.hdr-nav.nav-ready > a:nth-child(2){animation-delay:.03s}
.hdr-nav.nav-ready > a:nth-child(3){animation-delay:.06s}
.hdr-nav.nav-ready > a:nth-child(4){animation-delay:.09s}
.hdr-nav.nav-ready > a:nth-child(5){animation-delay:.12s}
.hdr-nav.nav-ready > a:nth-child(6){animation-delay:.15s}
.hdr-nav.nav-ready > a:nth-child(7){animation-delay:.18s}
.hdr-nav.nav-ready > a:nth-child(8){animation-delay:.21s}
.hdr-nav.nav-ready > a:nth-child(9){animation-delay:.24s}
.hdr-nav.nav-ready > a:nth-child(10){animation-delay:.27s}
.hdr-cta{
  background:var(--orange)!important;color:var(--white)!important;
  font-weight:700!important;padding:9px 20px!important;
  border-radius:8px!important;margin-left:8px;
  transition:background .2s,transform .15s!important;
}
.hdr-cta:hover{background:#e07010!important;transform:translateY(-1px)!important}
.hdr-cta.active{background:var(--orange)!important}

/* Blog — destaque visual igual ao Ver Planos */
.hdr-cta-blog{
  background:rgba(22,89,184,0.2)!important;color:var(--cyan)!important;
  border:1px solid rgba(0,200,255,0.4)!important;
  font-weight:700!important;padding:9px 20px!important;
  border-radius:8px!important;margin-left:4px;
  transition:all .2s!important;
}
.hdr-cta-blog:hover{background:rgba(0,200,255,0.15)!important;border-color:var(--cyan)!important;transform:translateY(-1px)!important}
.hdr-cta-blog.active{background:rgba(0,200,255,0.15)!important;color:var(--white)!important}

/* HAMBÚRGUER */
.ham-btn{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:40px;height:40px;
  background:none;border:none;cursor:pointer;padding:6px;
  touch-action:manipulation;position:relative;z-index:910;
}
.ham-btn span{
  display:block;width:22px;height:2px;background:var(--white);border-radius:2px;
  transition:transform .3s,opacity .3s;transform-origin:center;
}
.ham-btn.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.ham-btn.open span:nth-child(2){opacity:0}
.ham-btn.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* MOBILE NAV */
.mobile-nav{
  display:flex;flex-direction:column;
  background:rgba(8,14,26,0.98);backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-top:1px solid var(--border);padding:8px 16px;gap:2px;
  max-height:0;overflow:hidden;opacity:0;
  transition:max-height .35s ease,opacity .25s ease,padding .35s ease;
}
.mobile-nav.open{
  max-height:calc(100vh - 68px);overflow-y:auto;opacity:1;
  padding:10px 16px 24px;
}
.mobile-nav a{
  display:flex;align-items:center;gap:14px;
  color:var(--muted);font-size:16px;font-weight:600;
  padding:15px 16px;border-radius:10px;text-decoration:none;
  transition:color .2s,background .2s,transform .15s;
  border:1px solid transparent;
}
.mobile-nav a .nav-ico{font-size:18px;width:24px;text-align:center;flex-shrink:0}
.mobile-nav a:active{transform:scale(0.98)}
.mobile-nav a:hover,.mobile-nav a.active{color:var(--white);background:rgba(255,255,255,0.06)}
.mobile-nav a.active{border-color:rgba(0,200,255,0.25)}
.mobile-nav .hdr-cta{
  background:var(--orange)!important;color:var(--white)!important;
  justify-content:center;margin-top:10px;font-weight:800!important;
  box-shadow:0 6px 20px rgba(245,130,31,0.25);
}
.mobile-nav .hdr-cta-blog{
  justify-content:center;
  background:rgba(22,89,184,0.18)!important;color:var(--cyan)!important;
  border:1px solid rgba(0,200,255,0.35)!important;font-weight:700!important;
}
.mobile-nav-divider{height:1px;background:var(--border);margin:8px 6px}

/* Trava o scroll do body quando o menu mobile está aberto */
body.menu-open{overflow:hidden}

/* ── FOOTER ── */
.site-footer{background:#040810;border-top:1px solid var(--border);padding:60px 40px 32px}
.footer-grid{
  max-width:1320px;margin:0 auto;
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px;
}

/* LOGO FOOTER */
.f-brand-logo-wrap{margin-bottom:14px}
.f-brand-logo-img{display:none;height:70px;width:auto;object-fit:contain;max-width:220px}
.f-brand-name{
  font-family:'Barlow Condensed',sans-serif;font-size:28px;font-weight:900;
  background:linear-gradient(90deg,var(--blue-g),var(--cyan));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.f-brand-name em{font-style:normal;-webkit-text-fill-color:var(--orange)}
.f-brand-tag{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:2px;margin-bottom:14px;margin-top:4px}
.f-brand-desc{font-size:13.5px;color:var(--muted);line-height:1.75;max-width:280px}
.f-col h5{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;color:rgba(255,255,255,0.3);margin-bottom:16px}
.f-col a{display:block;color:rgba(255,255,255,0.5);font-size:14px;text-decoration:none;margin-bottom:10px;transition:color .2s}
.f-col a:hover{color:var(--orange)}
.footer-bottom{
  max-width:1320px;margin:0 auto;padding-top:24px;border-top:1px solid var(--border);
  display:flex;justify-content:space-between;align-items:center;
  font-size:12px;color:rgba(255,255,255,0.28);
}
.footer-bottom span{color:var(--orange)}

/* ── WA FLOAT ── */
.wa-float{
  position:fixed;bottom:24px;right:24px;width:56px;height:56px;
  background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 24px rgba(37,211,102,0.45);z-index:9999;
  text-decoration:none;transition:transform .2s;touch-action:manipulation;
}
.wa-float:hover,.wa-float:active{transform:scale(1.1)}
.wa-float svg{width:28px;height:28px;fill:white}

/* ── SECTION UTILS ── */
.sec-wrap{max-width:1320px;margin:0 auto;padding:0 40px}
.sec-divider{position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,var(--blue),var(--cyan),var(--orange),transparent)}
.sec-eyebrow{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.eyebrow-line{height:1px;width:36px;background:linear-gradient(90deg,var(--cyan),transparent);flex-shrink:0}
.eyebrow-text{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2.5px;color:var(--cyan)}
.sec-title{
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(34px,5vw,58px);font-weight:900;line-height:1.0;
  margin-bottom:14px;color:var(--white);
}
.sec-title .hl{color:var(--orange)}
.sec-title .hlb{background:linear-gradient(90deg,var(--blue-g),var(--cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.sec-sub{font-size:16px;color:var(--muted);max-width:560px;line-height:1.75;margin-bottom:56px}

/* ── PAGE HERO ── */
.page-hero{background:var(--night);padding:120px 40px 80px;position:relative;overflow:hidden}
.page-hero-dotgrid{
  position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(22,89,184,0.3) 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:radial-gradient(ellipse 70% 70% at 50% 50%,black 30%,transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 70% 70% at 50% 50%,black 30%,transparent 100%);
}
.page-hero-blob{position:absolute;width:400px;height:400px;border-radius:50%;filter:blur(80px);pointer-events:none;
  background:radial-gradient(circle,rgba(22,89,184,0.35),transparent 70%);top:-80px;right:-60px}
.page-hero-blob2{position:absolute;width:280px;height:280px;border-radius:50%;filter:blur(70px);pointer-events:none;
  background:radial-gradient(circle,rgba(245,130,31,0.2),transparent 70%);bottom:20px;left:-40px}
.page-hero-inner{position:relative;z-index:1;max-width:1320px;margin:0 auto}
.page-hero-crumb{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--muted);margin-bottom:20px}
.page-hero-crumb a{color:var(--muted);text-decoration:none;transition:color .2s}
.page-hero-crumb a:hover{color:var(--orange)}
.page-hero-crumb span{color:var(--orange)}
.page-hero h1{
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(44px,7vw,80px);font-weight:900;line-height:1.0;margin-bottom:16px;
}
.page-hero p{font-size:17px;color:var(--muted);max-width:560px;line-height:1.75}

/* ── ILUSTRAÇÃO ANIMADA DO HERO (páginas internas) ──
   Reaproveita os anéis/chips da Início (.tech-ring, .tech-center,
   .tech-chip) em escala menor, posicionada à direita do hero.
   Fixa por página (sem painel no Admin), só decorativa. */
.page-hero-visual{
  position:absolute;right:30px;top:50%;transform:translateY(-46%);
  width:340px;max-width:32vw;aspect-ratio:1;
  pointer-events:none;opacity:.92;z-index:0;
}
.page-hero-visual .tech-visual{width:100%;height:100%;max-width:none;margin:0}

/* Variante compacta para o hero de Planos (coluna central estreita) */
.promo-hero-visual{
  position:absolute;top:8%;right:2%;width:300px;max-width:30vw;aspect-ratio:1;
  pointer-events:none;opacity:.5;z-index:0;
}
.promo-hero-visual .tech-visual{width:100%;height:100%;max-width:none;margin:0}

/* ── BUTTONS ── */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 28px;border-radius:10px;
  font-size:15px;font-weight:700;text-decoration:none;
  cursor:pointer;border:none;transition:all .2s;
  touch-action:manipulation;font-family:'Inter',sans-serif;
}
.btn-orange{background:var(--orange);color:var(--white);box-shadow:0 0 24px rgba(245,130,31,0.3)}
.btn-orange:hover,.btn-orange:active{background:#e07010;transform:translateY(-2px);box-shadow:0 0 40px rgba(245,130,31,0.5)}
.btn-ghost{border:1px solid rgba(255,255,255,0.2);color:var(--white);background:transparent}
.btn-ghost:hover,.btn-ghost:active{border-color:var(--cyan);color:var(--cyan);background:rgba(0,200,255,0.05)}
.btn-wa{background:#25D366;color:var(--white);box-shadow:0 0 24px rgba(37,211,102,0.25)}
.btn-wa:hover,.btn-wa:active{background:#1eaa52;transform:translateY(-2px)}

/* ── TICKER ── */
.ticker-bar{
  background:linear-gradient(90deg,var(--blue) 0%,#0A2A5E 50%,var(--blue) 100%);
  border-top:1px solid rgba(0,200,255,0.2);border-bottom:1px solid rgba(0,200,255,0.2);
  padding:13px 0;overflow:hidden;white-space:nowrap;
}
.ticker-track{display:inline-flex;animation:ticker 35s linear infinite}
.ticker-item{
  display:inline-flex;align-items:center;gap:10px;
  color:var(--white);font-size:12px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;padding:0 26px;
}
.ticker-sep{color:var(--cyan);font-size:10px}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── TECH VISUAL (anéis + logo animação) ── */
.tech-visual{width:100%;max-width:460px;aspect-ratio:1;position:relative;margin:0 auto}
.tech-ring{position:absolute;border-radius:50%;border:1px solid rgba(22,89,184,0.3);animation:ringRotate 20s linear infinite}
.tech-ring:nth-child(1){inset:0;border-color:rgba(22,89,184,0.25);animation-duration:20s}
.tech-ring:nth-child(2){inset:12%;border-color:rgba(0,200,255,0.2);animation-duration:14s;animation-direction:reverse}
.tech-ring:nth-child(3){inset:24%;border-color:rgba(245,130,31,0.2);animation-duration:9s}
@keyframes ringRotate{to{transform:rotate(360deg)}}
.tech-ring::before{content:'';position:absolute;width:8px;height:8px;border-radius:50%;background:var(--cyan);top:-4px;left:50%;transform:translateX(-50%);box-shadow:0 0 12px var(--cyan)}
.tech-ring:nth-child(2)::before{background:var(--orange);box-shadow:0 0 12px var(--orange);bottom:-4px;top:auto}
.tech-ring:nth-child(3)::before{background:var(--blue-g);box-shadow:0 0 12px var(--blue-g);right:-4px;left:auto;top:50%;transform:translateY(-50%)}
.tech-center{
  position:absolute;inset:35%;display:flex;align-items:center;justify-content:center;
  background:radial-gradient(circle,rgba(22,89,184,0.3),rgba(8,14,26,0.92));
  border-radius:50%;border:1px solid rgba(22,89,184,0.4);overflow:hidden;
}
/* Logo da animação — tamanho controlado via JS */
#tc-logo{object-fit:contain;display:none;width:80%;height:80%}
#tc-text{
  font-family:'Barlow Condensed',sans-serif;font-size:clamp(22px,3.5vw,44px);font-weight:900;
  color:var(--orange);filter:drop-shadow(0 0 16px rgba(245,130,31,0.6));
  animation:f5glow 3s ease-in-out infinite;
}
@keyframes f5glow{0%,100%{filter:drop-shadow(0 0 16px rgba(245,130,31,0.4))}50%{filter:drop-shadow(0 0 40px rgba(245,130,31,0.8))}}
.tech-chip{
  position:absolute;background:rgba(8,14,26,0.92);border:1px solid var(--border);
  backdrop-filter:blur(8px);padding:8px 14px;border-radius:8px;
  font-size:11px;font-weight:700;color:var(--white);
  display:flex;align-items:center;gap:7px;white-space:nowrap;
}
.tc-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}

/* ── REDES SOCIAIS (cards de Portfólio) — minimalista, só o ícone ── */
.pf-social{display:flex;gap:8px;margin-top:12px;flex-wrap:wrap}
.pf-social-ico{
  width:28px;height:28px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;line-height:1;text-decoration:none;
  background:rgba(255,255,255,0.05);border:1px solid var(--border-dark);
  transition:transform .2s,border-color .2s,background .2s;
}
.pf-social-ico:hover{transform:translateY(-2px);border-color:var(--c,var(--cyan));background:rgba(255,255,255,0.1)}
/* Wrappers internos do tech-visual — no desktop ficam invisíveis
   (preenchem 100% do tech-visual, mantendo o layout original com
   anéis + chips flutuantes sobrepostos). No mobile, ver media query abaixo. */
.tv-rings{position:absolute;inset:0}
.tv-chips{position:absolute;inset:0}

/* ── RESPONSIVO — ANIMAÇÃO APARECE PRIMEIRO (acima do texto),
   anéis + os 5 chips orbitando ao redor, igual ao desktop (em escala menor) ── */
@media(max-width:1180px){
  .page-hero-visual,.promo-hero-visual{
    position:static;display:block;width:100%;max-width:300px;
    aspect-ratio:auto;opacity:1;margin:24px auto 28px;z-index:0;
    transform:none;left:auto;right:auto;top:auto;bottom:auto;
  }
  .hero-right{margin-top:20px}
  .hero-right .tech-visual,.page-hero-visual .tech-visual,.promo-hero-visual .tech-visual{
    width:min(300px,82vw);height:min(300px,82vw);max-width:none;
    aspect-ratio:1;position:relative;margin:0 auto;display:block;
  }
  .hero-right .tv-rings,.page-hero-visual .tv-rings,.promo-hero-visual .tv-rings,
  .hero-right .tv-chips,.page-hero-visual .tv-chips,.promo-hero-visual .tv-chips{
    position:absolute;inset:0;
  }
  .hero-right .tech-chip,.page-hero-visual .tech-chip,.promo-hero-visual .tech-chip{
    font-size:10px;padding:6px 10px;gap:5px;
  }
}
.chip-1{top:4%;left:8%;animation:floatY 4s ease-in-out infinite}
.chip-2{top:18%;right:-2%;animation:floatY 5s ease-in-out infinite .8s}
.chip-3{bottom:22%;left:-2%;animation:floatY 4.5s ease-in-out infinite 1.5s}
.chip-4{bottom:6%;right:8%;animation:floatY 3.8s ease-in-out infinite .4s}
.chip-5{top:48%;left:0%;animation:floatY 5.2s ease-in-out infinite 2s}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@media(prefers-reduced-motion:reduce){
  .tech-ring,.ticker-track,.tech-chip{animation:none!important}
}

/* ── CARDS GRID ── */
.cards-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--border);
  border:1px solid var(--border);border-radius:16px;overflow:hidden;
}
.card-dark{
  background:rgba(13,27,51,0.65);padding:36px 28px;
  position:relative;overflow:hidden;transition:background .3s;
}
.card-dark:hover{background:rgba(22,89,184,0.13)}
.card-num{
  position:absolute;top:18px;right:20px;
  font-family:'Barlow Condensed',sans-serif;font-size:52px;font-weight:900;
  color:transparent;-webkit-text-stroke:1.5px rgba(245,130,31,0.2);
  user-select:none;transition:-webkit-text-stroke-color .3s;
}
.card-dark:hover .card-num{-webkit-text-stroke-color:rgba(245,130,31,0.45)}
.card-icon{
  width:50px;height:50px;border-radius:12px;
  background:rgba(22,89,184,0.15);border:1px solid rgba(22,89,184,0.3);
  display:flex;align-items:center;justify-content:center;font-size:22px;
  margin-bottom:18px;transition:all .3s;
}
.card-dark:hover .card-icon{border-color:var(--cyan);box-shadow:0 0 18px rgba(0,200,255,0.2)}
.card-dark h3{font-size:17px;font-weight:700;color:var(--white);margin-bottom:9px}
.card-dark p{font-size:13.5px;color:var(--muted);line-height:1.68}
.card-link{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--orange);font-size:12px;font-weight:700;
  text-decoration:none;text-transform:uppercase;letter-spacing:1px;
  margin-top:18px;transition:gap .2s,color .2s;
}
.card-link:hover{gap:10px}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  /* Reduzir espaçamento do menu para evitar que itens (ex: Blog) sumam por overflow */
  .hdr-nav{gap:0}
  .hdr-nav a{padding:7px 9px;font-size:13px}
  .hdr-cta,.hdr-cta-blog{padding:9px 14px!important;margin-left:2px}
}
@media(max-width:768px){
  .site-header .hdr-inner{padding:0 20px}
  .hdr-nav{display:none}
  .ham-btn{display:flex}
  .sec-wrap{padding:0 20px}
  .page-hero{padding:100px 20px 60px}
  .site-footer{padding:48px 20px 24px}
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .cards-grid{grid-template-columns:1fr}
  .tech-chip{font-size:10px;padding:6px 10px}
}
@media(max-width:480px){
  .sec-title{font-size:clamp(30px,9vw,44px)}
  .btn{padding:13px 22px;font-size:14px}
  .wa-float{width:50px;height:50px;bottom:18px;right:18px}
}

/* ═══════════════════════════════════════════
   F5 — ANIMAÇÕES "LEVEZA & TECNOLOGIA" NOS BOXES
   100% CSS (sem JS/scroll). Toda vez que a página
   carrega/atualiza, os cards aparecem com um fade
   suave + leve desfoque, e recebem um brilho/sheen
   sutil que percorre a borda continuamente.
═══════════════════════════════════════════ */
@keyframes f5BoxIn{
  from{opacity:0;filter:blur(6px)}
  to{opacity:1;filter:blur(0)}
}
@keyframes f5Sheen{
  0%,28%{transform:translateX(-130%) skewX(-12deg)}
  68%,100%{transform:translateX(230%) skewX(-12deg)}
}

:where(
  .card-dark,
  .dif-card,
  .proc-card,
  .mv-card,
  .modelo-card,
  .nicho-card,
  .pf-card,
  .srv-block,
  .port-card,
  .num-item,
  .dep-card,
  .form-card,
    .sidebar-card,
  .plan-card,
  .gar-item,
  .faq-item,
  .blog-card,
  .timeline-item
){
  position:relative;overflow:hidden;
  animation:f5BoxIn .7s cubic-bezier(.16,1,.3,1) both;
}

/* brilho (sheen) que percorre o card continuamente — efeito "tech" */
:where(
  .card-dark,
  .dif-card,
  .proc-card,
  .mv-card,
  .modelo-card,
  .nicho-card,
  .pf-card,
  .srv-block,
  .port-card,
  .num-item,
  .dep-card,
  .form-card,
    .sidebar-card,
  .plan-card,
  .gar-item,
  .faq-item,
  .blog-card
)::after{
  content:'';position:absolute;top:0;left:0;width:42%;height:100%;
  background:linear-gradient(115deg,transparent,rgba(0,200,255,.06) 45%,rgba(255,255,255,.05) 50%,rgba(245,130,31,.05) 55%,transparent);
  pointer-events:none;z-index:1;
  animation:f5Sheen 9s ease-in-out infinite;
}

/* atraso escalonado para itens dispostos em grade — efeito cascata ao carregar */
.cards-grid>*:nth-child(1),.proc-grid>*:nth-child(1),.dif-list>*:nth-child(1),.mv-cards>*:nth-child(1),.modelo-cards>*:nth-child(1),.nichos-grid>*:nth-child(1),.pf-grid>*:nth-child(1),.port-grid>*:nth-child(1),.nums-grid>*:nth-child(1),.dep-grid>*:nth-child(1),.planos-grid>*:nth-child(1),.gar-grid>*:nth-child(1),#faqItems>*:nth-child(1),#relatedPosts>*:nth-child(1),.srv-blocks>*:nth-child(1){animation-delay:0ms}
.cards-grid>*:nth-child(2),.proc-grid>*:nth-child(2),.dif-list>*:nth-child(2),.mv-cards>*:nth-child(2),.modelo-cards>*:nth-child(2),.nichos-grid>*:nth-child(2),.pf-grid>*:nth-child(2),.port-grid>*:nth-child(2),.nums-grid>*:nth-child(2),.dep-grid>*:nth-child(2),.planos-grid>*:nth-child(2),.gar-grid>*:nth-child(2),#faqItems>*:nth-child(2),#relatedPosts>*:nth-child(2),.srv-blocks>*:nth-child(2){animation-delay:70ms}
.cards-grid>*:nth-child(3),.proc-grid>*:nth-child(3),.dif-list>*:nth-child(3),.mv-cards>*:nth-child(3),.modelo-cards>*:nth-child(3),.nichos-grid>*:nth-child(3),.pf-grid>*:nth-child(3),.port-grid>*:nth-child(3),.nums-grid>*:nth-child(3),.dep-grid>*:nth-child(3),.planos-grid>*:nth-child(3),.gar-grid>*:nth-child(3),#faqItems>*:nth-child(3),#relatedPosts>*:nth-child(3),.srv-blocks>*:nth-child(3){animation-delay:140ms}
.cards-grid>*:nth-child(4),.proc-grid>*:nth-child(4),.dif-list>*:nth-child(4),.mv-cards>*:nth-child(4),.modelo-cards>*:nth-child(4),.nichos-grid>*:nth-child(4),.pf-grid>*:nth-child(4),.port-grid>*:nth-child(4),.nums-grid>*:nth-child(4),.dep-grid>*:nth-child(4),.planos-grid>*:nth-child(4),.gar-grid>*:nth-child(4),#faqItems>*:nth-child(4),#relatedPosts>*:nth-child(4),.srv-blocks>*:nth-child(4){animation-delay:210ms}
.cards-grid>*:nth-child(5),.proc-grid>*:nth-child(5),.dif-list>*:nth-child(5),.mv-cards>*:nth-child(5),.modelo-cards>*:nth-child(5),.nichos-grid>*:nth-child(5),.pf-grid>*:nth-child(5),.port-grid>*:nth-child(5),.nums-grid>*:nth-child(5),.dep-grid>*:nth-child(5),.planos-grid>*:nth-child(5),.gar-grid>*:nth-child(5),#faqItems>*:nth-child(5),#relatedPosts>*:nth-child(5),.srv-blocks>*:nth-child(5){animation-delay:280ms}
.cards-grid>*:nth-child(6),.proc-grid>*:nth-child(6),.dif-list>*:nth-child(6),.mv-cards>*:nth-child(6),.modelo-cards>*:nth-child(6),.nichos-grid>*:nth-child(6),.pf-grid>*:nth-child(6),.port-grid>*:nth-child(6),.nums-grid>*:nth-child(6),.dep-grid>*:nth-child(6),.planos-grid>*:nth-child(6),.gar-grid>*:nth-child(6),#faqItems>*:nth-child(6),#relatedPosts>*:nth-child(6),.srv-blocks>*:nth-child(6){animation-delay:350ms}
.cards-grid>*:nth-child(7),.proc-grid>*:nth-child(7),.dif-list>*:nth-child(7),.mv-cards>*:nth-child(7),.modelo-cards>*:nth-child(7),.nichos-grid>*:nth-child(7),.pf-grid>*:nth-child(7),.port-grid>*:nth-child(7),.nums-grid>*:nth-child(7),.dep-grid>*:nth-child(7),.planos-grid>*:nth-child(7),.gar-grid>*:nth-child(7),#faqItems>*:nth-child(7),#relatedPosts>*:nth-child(7),.srv-blocks>*:nth-child(7){animation-delay:420ms}
.cards-grid>*:nth-child(8),.proc-grid>*:nth-child(8),.dif-list>*:nth-child(8),.mv-cards>*:nth-child(8),.modelo-cards>*:nth-child(8),.nichos-grid>*:nth-child(8),.pf-grid>*:nth-child(8),.port-grid>*:nth-child(8),.nums-grid>*:nth-child(8),.dep-grid>*:nth-child(8),.planos-grid>*:nth-child(8),.gar-grid>*:nth-child(8),#faqItems>*:nth-child(8),#relatedPosts>*:nth-child(8),.srv-blocks>*:nth-child(8){animation-delay:490ms}

@media(prefers-reduced-motion:reduce){
  :where(.card-dark,.dif-card,.proc-card,.mv-card,.modelo-card,.nicho-card,.pf-card,.srv-block,.port-card,.num-item,.dep-card,.form-card,.sidebar-card,.plan-card,.gar-item,.faq-item,.blog-card,.timeline-item){animation:none!important}
  :where(.card-dark,.dif-card,.proc-card,.mv-card,.modelo-card,.nicho-card,.pf-card,.srv-block,.port-card,.num-item,.dep-card,.form-card,.sidebar-card,.plan-card,.gar-item,.faq-item,.blog-card)::after{animation:none!important;display:none}
}
