
:root{
  --bg:#f2f4f7;
  --card:#ffffff;
  --text:#1f2933;
  --muted:#6b7280;
  --brand:#1463a6;
  --brand2:#0b3c5d;
  --border:rgba(31,41,51,.10);
  --shadow:0 4px 14px rgba(0,0,0,.08);
  --shadowHover:0 10px 22px rgba(0,0,0,.12);
  --radius:14px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.header{
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  color:#fff;
  padding:22px 18px;
}
.header .wrap{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
}
.brand .logo{
  width:38px; height:38px;
  border-radius:10px;
  background: rgba(255,255,255,.18);
  display:grid; place-items:center;
  font-weight:800;
}
.brand h1{
  font-size:18px; margin:0; line-height:1.2;
}
.brand p{
  margin:2px 0 0; font-size:12px; opacity:.9
}
.header .cta{
  display:flex; gap:10px; align-items:center;
}
.pill{
  background: rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.25);
  padding:10px 12px;
  border-radius:999px;
  font-size:12px;
}
.container{
  max-width:1100px;
  margin:0 auto;
  padding:18px;
}
.step{
  font-size:13px;
  color:var(--muted);
  margin:16px 0 10px;
}
.breadcrumb{
  font-size:12px;
  color:var(--muted);
  margin:10px 0 14px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadowHover);
}
.card .icon{
  width:46px; height:46px;
  border-radius:12px;
  background: rgba(20,99,166,.12);
  display:grid; place-items:center;
  font-size:22px;
  margin-bottom:10px;
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; font-size:12.5px; color:var(--muted)}
.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid var(--border);
  color:var(--muted);
  background: rgba(255,255,255,.65);
}
.tag.paid{color:#7a2d2d; background: rgba(255,0,0,.06)}
.tag.free{color:#1b6b3a; background: rgba(0,255,0,.06)}
.btnrow{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:12px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  font-weight:600;
  font-size:13px;
}
.btn.primary{
  background: var(--brand);
  color:#fff;
  border-color: transparent;
}
.section{
  background: var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.two{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
@media (max-width: 880px){
  .two{grid-template-columns:1fr}
}
.kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.kv .item{
  background: rgba(20,99,166,.06);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px;
}
.kv .item small{display:block; color:var(--muted); margin-bottom:4px}
.kv .item strong{display:block}
.video{
  width:100%;
  aspect-ratio: 16/9;
  border-radius:14px;
  border:1px solid var(--border);
}
.footer{
  text-align:center;
  padding:18px;
  color:var(--muted);
  font-size:12px;
}
hr.sep{
  border:0;
  border-top:1px solid var(--border);
  margin:14px 0;
}

/* v2 tweaks */
.pill{cursor:pointer; transition: transform .15s ease, background .15s ease;}
.pill:hover{transform: translateY(-1px); background: rgba(255,255,255,.22);}
.sep{border:0;border-top:1px solid var(--border); margin:14px 0;}

/* v3: real images support */
.icon{overflow:hidden}
.icon img{width:100%;height:100%;object-fit:cover;display:block}

/* WhatsApp Support Button */
.btn-whatsapp{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#25D366,#1EBE5D);
  color:#fff;
  font-weight:700;
  font-size:14px;
  box-shadow:0 8px 20px rgba(37,211,102,.35);
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn-whatsapp:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(37,211,102,.45);
}
.btn-whatsapp img{
  width:20px;
  height:20px;
}

/* v5: desktop alignment */
@media (min-width: 900px){
  .cardlist{display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:14px;}
  .card{height: 100%;}
  .item{height: 100%;}
}
@media (min-width: 1100px){
  .cardlist{grid-template-columns: repeat(3, minmax(0, 1fr));}
}

/* v6: WhatsApp top button - more "pica" */
.btn-whatsapp{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#25D366,#1EBE5D);
  color:#fff !important;
  font-weight:800;
  font-size:14px;
  letter-spacing:.1px;
  box-shadow:0 10px 26px rgba(37,211,102,.40);
  border:1px solid rgba(255,255,255,.18);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space:nowrap;
}
.btn-whatsapp:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(37,211,102,.50);
  filter:saturate(1.05);
}
.btn-whatsapp img{width:20px;height:20px}

/* Floating WhatsApp bubble */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:60px;
  height:60px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #4ade80, #22c55e 55%, #16a34a);
  box-shadow: 0 16px 32px rgba(22,163,74,.35);
  display:grid;
  place-items:center;
  z-index:9999;
  border: 6px solid rgba(34,197,94,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(22,163,74,.45);
}
.wa-float img{width:28px;height:28px}

/* v8 patch: compact top WhatsApp button */
.btn-whatsapp{
  padding: 9px 14px !important;
  font-size: 13px !important;
  gap: 8px !important;
}
.btn-whatsapp img{ width:18px !important; height:18px !important; }

/* v8 patch: remove any giant WhatsApp watermark/background */
body::before, body::after,
main::before, main::after,
.section::before, .section::after,
.hero::before, .hero::after,
.bg-whatsapp, .watermark, .wm, .bg-icon{
  content: none !important;
  background: none !important;
  display: none !important;
}
*{
  background-image: none;
}

/* v8 patch: desktop alignment for lists (2 cols -> 3 cols) */
@media (min-width: 900px){
  .cardlist, .grid, .cards, .list{
    display:grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}
@media (min-width: 1200px){
  .cardlist, .grid, .cards, .list{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* v9 – WhatsApp top button clean & centered */
.header .actions,
.top .actions{
  display:flex !important;
  justify-content:center !important;
}

.btn-whatsapp{
  padding:8px 14px !important;
  font-size:13px !important;
  border-radius:999px !important;
  box-shadow:none !important;
  background:#25D366 !important;
}

/* remove glow / light */
.btn-whatsapp:hover{
  box-shadow:none !important;
  transform:none !important;
  filter:none !important;
}

/* remove floating whatsapp icon completely */
.wa-float{
  display:none !important;
}

/* v10: simple "Suporte" button (no glow, compact) */
.btn-support{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 14px;
  font-size:13px;
  font-weight:600;
  color:#fff !important;
  background:#25D366 !important;
  border-radius:10px;
  text-decoration:none;
  box-shadow:none !important;
  filter:none !important;
  transition:none !important;
  white-space:nowrap;
}
.btn-support:hover{
  background:#22c55e !important;
  box-shadow:none !important;
  transform:none !important;
}

/* thumbnails */
.thumb{
  width:56px;
  height:56px;
  border-radius:14px;
  object-fit:cover;
  background:#eaf1fb;
  border:1px solid rgba(15, 23, 42, .06);
}

/* Make header actions aligned on desktop & mobile */
.header .actions, .top .actions{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:12px !important;
}
@media (max-width: 640px){
  .header .actions, .top .actions{ justify-content:flex-start !important; margin-top:10px; }
}
