/* =========================================================
   VETT — Via Express Tecnologia e Telecomunicação
   Design System / Estilos globais  (site estático)
   ========================================================= */

/* ---------- Fontes ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Marca */
  --ink:      #080826;
  --navy:     #10036A;
  --navy-2:   #1a1170;
  --blue:     #2771E7;
  --cyan:     #009ED8;
  --sky:      #00BBFF;
  --magenta:  #E23B7A;
  --magenta-2:#CC3366;

  /* Neutros */
  --bg:       #F5F8FD;
  --bg-soft:  #EEF3FB;
  --white:    #ffffff;
  --text:     #1c2333;
  --muted:    #5a6478;
  --line:     #e4eaf3;

  /* Gradientes */
  --grad-brand: linear-gradient(120deg, #10036A 0%, #2771E7 55%, #009ED8 100%);
  --grad-cta:   linear-gradient(120deg, #E23B7A 0%, #CC3366 100%);
  --grad-sky:   linear-gradient(120deg, #009ED8 0%, #00BBFF 100%);
  --grad-dark:  linear-gradient(160deg, #0b0836 0%, #10036A 60%, #1b1b6e 100%);

  /* Sombra / raio */
  --shadow-sm: 0 2px 10px rgba(16,3,106,.06);
  --shadow:    0 14px 40px rgba(16,3,106,.10);
  --shadow-lg: 0 26px 70px rgba(16,3,106,.16);
  --radius:    18px;
  --radius-lg: 26px;
  --maxw:      1180px;

  --header-h: 78px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.15; color: var(--navy); margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
section { position: relative; }

/* ---------- Utilitários ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--cyan);
  background: rgba(0,158,216,.10);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow--light { color: #7fe0ff; background: rgba(255,255,255,.10); }
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.section-lead { color: var(--muted); font-size: 1.08rem; max-width: 620px; }
.center .section-lead { margin-left: auto; margin-right: auto; }
.text-grad {
  background: var(--grad-sky); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Botões ---------- */
.btn {
  --_bg: var(--grad-brand);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--_bg); color: #fff;
  box-shadow: 0 10px 26px rgba(39,113,231,.28);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(39,113,231,.36); }
.btn:active { transform: translateY(-1px); }
.btn--cta { --_bg: var(--grad-cta); box-shadow: 0 10px 26px rgba(226,59,122,.32); }
.btn--cta:hover { box-shadow: 0 16px 34px rgba(226,59,122,.42); }
.btn--wa { --_bg: linear-gradient(120deg,#25D366,#14b352); box-shadow: 0 10px 26px rgba(37,211,102,.32); }
.btn--ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: none; }
.btn--light { background: #fff; color: var(--navy); box-shadow: 0 10px 30px rgba(0,0,0,.14); }
.btn--outline-light { background: transparent; color:#fff; border:1.5px solid rgba(255,255,255,.55); box-shadow:none; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn--sm { padding: 11px 20px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--grad-dark); color: #cdd7ff;
  font-size: .82rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 40px; }
.topbar a { color: #eaf0ff; opacity: .9; transition: opacity .2s; }
.topbar a:hover { opacity: 1; }
.topbar .tb-left { display: flex; align-items: center; gap: 22px; }
.topbar .tb-right { display: flex; align-items: center; gap: 16px; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; }
.tb-hide-sm { display: inline-flex; }

.nav { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .96rem;
  color: var(--navy); padding: 10px 15px; border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { background: var(--bg-soft); color: var(--blue); }

/* Dropdown assinante */
.has-drop { position: relative; }
.drop-panel {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: 290px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.has-drop:hover .drop-panel, .has-drop:focus-within .drop-panel { opacity: 1; visibility: visible; transform: none; }
.drop-panel a {
  display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px;
  transition: background .18s;
}
.drop-panel a:hover { background: var(--bg-soft); }
.drop-ico {
  flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad-sky); color: #fff;
}
.drop-ico svg { width: 19px; height: 19px; }
.drop-txt strong { display: block; font-family: 'Poppins',sans-serif; font-size: .92rem; color: var(--navy); font-weight: 600; }
.drop-txt span { font-size: .78rem; color: var(--muted); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .3s, opacity .3s; position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: var(--grad-dark); color: #fff; overflow: hidden; padding: 84px 0 96px; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(0,187,255,.35), transparent 60%),
    radial-gradient(500px 380px at 10% 90%, rgba(226,59,122,.22), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 20px; }
.hero p.lead { color: #d6def7; font-size: 1.15rem; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: #eaf0ff; }
.hero-badge svg { width: 22px; height: 22px; color: var(--sky); flex: none; }

/* Painel visual do hero */
.hero-visual { position: relative; }
.speed-card {
  background: linear-gradient(165deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius-lg); padding: 30px 32px 28px; backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 22px;
}
.speed-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.speed-card .dot { width: 11px; height: 11px; border-radius: 50%; background: #35e06a; box-shadow: 0 0 0 5px rgba(53,224,106,.18); flex: none; }
.speed-plan { display: flex; flex-direction: column; }
.speed-plan-name { font-family:'Poppins',sans-serif; font-weight: 700; font-size: 1.15rem; color: #fff; line-height: 1.2; }
.speed-plan-sub { font-size: .78rem; color: #9fb0e6; }
.speed-status {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  font-size: .78rem; font-weight: 600; color: #b6f5c8;
  background: rgba(53,224,106,.14); border: 1px solid rgba(53,224,106,.3);
  padding: 6px 12px; border-radius: 999px;
}
.speed-status .dot { width: 9px; height: 9px; border-radius: 50%; background: #35e06a; box-shadow: 0 0 0 4px rgba(53,224,106,.22); animation: livepulse 2s ease-in-out infinite; }
@keyframes livepulse { 0%,100%{ box-shadow: 0 0 0 3px rgba(53,224,106,.28);} 50%{ box-shadow: 0 0 0 7px rgba(53,224,106,0);} }

.speed-hero { text-align: center; }
.speed-num {
  font-family: 'Poppins',sans-serif; font-weight: 800; font-size: clamp(4.4rem, 9vw, 6rem);
  line-height: .95; letter-spacing: -.02em;
  background: linear-gradient(180deg,#ffffff 0%, #bfe9ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-flex; align-items: flex-start; gap: 8px;
}
.speed-num small {
  font-size: 1.25rem; color: var(--sky); font-weight: 700; margin-top: 12px;
  -webkit-text-fill-color: var(--sky);
}
.speed-label { color: #c7d2f5; font-size: .95rem; margin-top: 6px; }

.speed-bars { display: flex; gap: 9px; align-items: flex-end; height: 84px; }
.speed-bars i { flex: 1; background: var(--grad-sky); border-radius: 6px 6px 0 0; opacity: .9; animation: bar 1.8s ease-in-out infinite; box-shadow: 0 0 18px rgba(0,187,255,.35); }
@keyframes bar { 0%,100%{ transform: scaleY(.4);} 50%{ transform: scaleY(1);} }

.speed-meta {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
  border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 16px 0;
}
.speed-meta div { text-align: center; }
.speed-meta b { display: block; font-family:'Poppins',sans-serif; font-weight: 700; font-size: 1.15rem; color: #fff; }
.speed-meta span { font-size: .74rem; color: #9fb0e6; text-transform: uppercase; letter-spacing: .08em; }

.speed-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.speed-chip {
  display: inline-flex; align-items: center; gap: 8px; flex: 1; justify-content: center;
  font-family:'Poppins',sans-serif; font-weight: 600; font-size: .85rem; color: #fff;
  background: rgba(0,158,216,.18); border: 1px solid rgba(0,187,255,.34);
  padding: 11px 14px; border-radius: 12px;
}
.speed-chip svg { width: 19px; height: 19px; color: var(--sky); flex: none; }
.speed-chip--alt { background: rgba(226,59,122,.16); border-color: rgba(226,59,122,.36); }
.speed-chip--alt svg { color: #ff9dc4; }

/* Faixa de logos/estatísticas */
.stat-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-strip .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding-top: 40px; padding-bottom: 40px; }
.stat { text-align: center; }
.stat b { display: block; font-family:'Poppins',sans-serif; font-weight: 800; font-size: 2.2rem;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .95rem; }

/* ---------- Cards de recursos ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature .ico {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-sky); color: #fff; margin-bottom: 18px;
}
.feature .ico svg { width: 27px; height: 27px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); margin: 0; font-size: .96rem; }
.feature--alt .ico { background: var(--grad-cta); }

/* ---------- Planos ---------- */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan--featured { background: var(--grad-dark); color: #fff; border: 0; transform: scale(1.03); }
.plan--featured:hover { transform: scale(1.03) translateY(-8px); }
.plan--featured h3, .plan--featured .plan-speed { color: #fff; }
.plan-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-cta); color: #fff; font-family:'Poppins',sans-serif; font-weight: 600;
  font-size: .78rem; padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow);
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
}
.plan h3 { font-size: 1.35rem; margin-bottom: 2px; }
.plan-sub { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.plan--featured .plan-sub { color: #b9c4ef; }
.plan-speed { font-family:'Poppins',sans-serif; font-weight: 800; font-size: 3rem; color: var(--navy); line-height: 1; }
.plan-speed small { font-size: 1.1rem; color: var(--cyan); font-weight: 700; }
.plan-price { margin: 18px 0 6px; }
.plan-old { color: var(--muted); text-decoration: line-through; font-size: .9rem; margin-right: 6px; }
.plan--featured .plan-old { color: #9fb0e6; }
.plan-now { font-family:'Poppins',sans-serif; }
.plan-now .cur { font-size: 1.1rem; font-weight: 600; vertical-align: top; }
.plan-now .val { font-size: 2.5rem; font-weight: 800; color: var(--magenta); }
.plan--featured .plan-now .val { color: #ff9dc4; }
.plan-now .per { color: var(--muted); font-size: .95rem; }
.plan--featured .plan-now .per { color: #b9c4ef; }
.plan-feats { margin: 22px 0 26px; display: grid; gap: 11px; }
.plan-feats li { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.plan-feats svg { width: 19px; height: 19px; color: var(--cyan); flex: none; }
.plan--featured .plan-feats svg { color: var(--sky); }
.plan .btn { margin-top: auto; }

/* ---------- Central do assinante ---------- */
.self-band { background: var(--grad-dark); color: #fff; }
.self-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.self-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px; text-align: left;
  transition: transform .3s, background .3s; display: block; color: #fff;
}
.self-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.13); }
.self-card .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-sky); display: grid; place-items: center; margin-bottom: 16px; }
.self-card .ico svg { width: 25px; height: 25px; color: #fff; }
.self-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: 6px; }
.self-card p { color: #c3cdf0; font-size: .9rem; margin: 0 0 14px; }
.self-card .go { display: inline-flex; align-items: center; gap: 7px; color: var(--sky); font-weight: 600; font-size: .9rem; font-family:'Poppins',sans-serif; }
.self-card .go svg { width: 16px; height: 16px; transition: transform .25s; }
.self-card:hover .go svg { transform: translateX(4px); }

/* ---------- Split / imagem + texto ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split-media img { width: 100%; }
.check-list { display: grid; gap: 14px; margin: 22px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .ck { flex: none; width: 26px; height: 26px; border-radius: 8px; background: rgba(0,158,216,.12); display: grid; place-items: center; }
.check-list .ck svg { width: 16px; height: 16px; color: var(--cyan); }
.check-list strong { font-family:'Poppins',sans-serif; display: block; color: var(--navy); font-size: 1rem; }
.check-list span { color: var(--muted); font-size: .92rem; }

/* ---------- CTA final ---------- */
.cta-band { padding: 84px 0; }
.cta-box {
  background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg);
  padding: 60px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(400px 280px at 15% 20%, rgba(0,187,255,.5), transparent 60%),
              radial-gradient(360px 260px at 90% 90%, rgba(226,59,122,.35), transparent 60%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; font-size: clamp(1.7rem,3.4vw,2.5rem); }
.cta-box p { color: #e2e9ff; max-width: 560px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Página: banner interno ---------- */
.page-hero { background: var(--grad-dark); color: #fff; padding: 66px 0 74px; text-align: center; overflow: hidden; }
.page-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(600px 300px at 80% 0%, rgba(0,187,255,.28), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem,4.4vw,3rem); margin-bottom: 12px; }
.page-hero p { color: #d6def7; max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.crumb { display: inline-flex; gap: 8px; align-items: center; color: #9fb0e6; font-size: .85rem; margin-bottom: 16px; }
.crumb a { color: #cdd7ff; }
.crumb a:hover { color: #fff; }

/* ---------- Formulário ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family:'Poppins',sans-serif; font-weight: 500; font-size: .9rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .96rem; color: var(--text); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0,158,216,.14);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 24px; cursor: pointer; font-family:'Poppins',sans-serif; font-weight: 600; color: var(--navy); font-size: 1.02rem; }
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; transition: transform .3s, background .3s; }
.faq-q .pm svg { width: 15px; height: 15px; color: var(--cyan); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 20px; margin: 0; color: var(--muted); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--cyan); }
.faq-item.open .faq-q .pm svg { color: #fff; }

/* ---------- Blog cards ---------- */
.post {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s, border-color .4s;
  display: flex; flex-direction: column; position: relative;
}
.post::before {
  content:''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: inherit; border: 2px solid transparent; transition: border-color .4s;
}
.post:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post:hover::before { border-color: var(--cyan); }

.post-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; display: grid; place-items: center;
  background: var(--grad-brand); }
.post-thumb::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 28% 24%, rgba(0,187,255,.55), transparent 55%),
    radial-gradient(circle at 82% 88%, rgba(226,59,122,.4), transparent 55%),
    radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
  background-size: 100% 100%, 100% 100%, 18px 18px;
  transition: transform .6s ease;
}
.post:hover .post-thumb::before { transform: scale(1.12); }
.post-thumb::after {
  content:''; position: absolute; top: 0; left: -75%; width: 55%; height: 100%; z-index: 2;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-18deg); transition: left .75s ease;
}
.post:hover .post-thumb::after { left: 130%; }

.post-thumb span {
  position: relative; z-index: 1;
  width: 108px; height: 108px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(4px); box-shadow: 0 12px 30px rgba(4,10,50,.28);
  animation: postfloat 4.5s ease-in-out infinite; transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.post-thumb span::after {
  content:''; position: absolute; inset: -12px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); animation: postpulse 2.8s ease-out infinite;
}
@keyframes postpulse { 0%{ transform: scale(1); opacity: .7; } 100%{ transform: scale(1.4); opacity: 0; } }
@keyframes postfloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-9px); } }
.post-thumb svg { width: 50px; height: 50px; }
.post:hover .post-thumb span { transform: scale(1.1) rotate(-4deg); }

.post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-cat {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  font-family:'Poppins',sans-serif; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--cyan); font-weight: 600; margin-bottom: 12px;
  background: rgba(0,158,216,.10); padding: 5px 11px; border-radius: 999px;
}
.post-cat::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.post h3 { font-size: 1.18rem; margin-bottom: 8px; transition: color .3s; }
.post:hover h3 { color: var(--blue); }
.post p { color: var(--muted); font-size: .93rem; }
.post .read { margin-top: auto; color: var(--blue); font-weight: 600; font-family:'Poppins',sans-serif; font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; }
.post .read svg { transition: transform .3s ease; }
.post:hover .read svg { transform: translateX(5px); }

/* ---------- Vagas ---------- */
.job { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px 26px;
  display:flex; align-items:center; justify-content: space-between; gap: 20px; box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s; }
.job:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.job h3 { margin: 0 0 4px; font-size: 1.12rem; }
.job .meta { color: var(--muted); font-size: .9rem; display: flex; gap: 16px; flex-wrap: wrap; }
.job .meta span { display: inline-flex; align-items: center; gap: 6px; }
.job .meta svg { width: 15px; height: 15px; color: var(--cyan); }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--ink); color: #b7c0dd; padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .flogo { height: 40px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.site-footer p { color: #97a2c4; font-size: .92rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family:'Poppins',sans-serif; }
.footer-col a { display: block; color: #a7b1d2; padding: 6px 0; font-size: .92rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.foot-contact { display: grid; gap: 12px; }
.foot-contact a, .foot-contact span { display: flex; align-items: center; gap: 10px; color: #a7b1d2; font-size: .92rem; }
.foot-contact svg { width: 18px; height: 18px; color: var(--sky); flex: none; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.socials a:hover { background: var(--grad-sky); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.10); margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: #808bb0; font-size: .85rem; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .25s; animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes pulse { 0%{ box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .self-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-strip .container { grid-template-columns: repeat(2,1fr); gap: 30px; }
}
@media (max-width: 860px) {
  .tb-hide-sm { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-assine { display: none; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; top: 0; width: min(86vw, 360px); height: 100vh;
    flex-direction: column; align-items: stretch; gap: 6px; background: #fff;
    padding: 90px 22px 30px; box-shadow: var(--shadow-lg); transform: translateX(100%);
    transition: transform .32s ease; overflow-y: auto; z-index: 95;
  }
  body.menu-open .nav-links { transform: none; }
  .nav-links > li > a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .drop-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0; width: auto; background: transparent; }
  .drop-panel a { padding: 12px 16px; }
  .drop-ico { width: 34px; height: 34px; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(8,8,38,.5); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 94; }
  body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }
  .grid-3 { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-8px); }
  .cta-box { padding: 42px 26px; }
}
@media (max-width: 560px) {
  .section { padding: 62px 0; }
  .grid-2, .grid-4, .self-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
  .job { flex-direction: column; align-items: flex-start; }
  .topbar .tb-left { gap: 14px; }
  .container { padding: 0 18px; }
}
