/* ZEBYTE - custom.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* Neutraliza Ananke */
.bg-black-90 { display: none !important; }
nav.flex-l { display: none !important; }
header.bg-navy { display: none !important; }
footer.bg-navy { display: none !important; }
a > svg { width: 0; height: 0; overflow: hidden; position: absolute; opacity: 0; pointer-events: none; }

/* Reset */
* { box-sizing: border-box; }

/* Body */
.zb-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #1d1d1f;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* Topbar */
.zb-topbar {
  background: #1d1d1f;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  padding: 7px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.zb-topbar-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}
.zb-topbar-links a:hover { color: #c8a84b; }

/* Header */
.zb-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.zb-header-scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.07); }
.zb-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.zb-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.zb-logo-img { height: 36px; width: auto; }
.zb-logo-text { font-size: 17px; font-weight: 600; color: #1d1d1f; letter-spacing: -0.3px; }

/* Nav desktop */
.zb-nav { display: flex; align-items: center; }
.zb-nav-item { position: relative; }
.zb-nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 52px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 400;
  color: #1d1d1f;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s;
  border: none;
  background: none;
}
.zb-nav-item:hover .zb-nav-link { color: #002d62; }
.zb-chevron { font-size: 9px; opacity: 0.45; display: inline-block; transition: transform 0.2s; margin-left: 1px; }
.zb-nav-item:hover .zb-chevron { transform: rotate(180deg); opacity: 0.7; }

/* Dropdown desktop */
.zb-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255,255,255,0.97);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  min-width: 195px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 999;
}
.zb-nav-item:hover .zb-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.zb-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 18px;
  font-size: 13px;
  color: #1d1d1f;
  text-decoration: none;
  transition: background 0.12s;
}
.zb-dropdown a:hover { background: #f5f5f7; }
.zb-dropdown a span {
  font-size: 10px;
  background: #002d62;
  color: #c8a84b;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 500;
}

/* Nav CTA */
.zb-nav-cta {
  margin-left: 10px;
  padding: 8px 18px;
  background: #002d62;
  color: #fff !important;
  font-size: 12px;
  font-weight: 500;
  border-radius: 980px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.zb-nav-cta:hover { background: #003a80; }

/* Hamburger */
.zb-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.zb-hamburger span { display: block; width: 22px; height: 1.5px; background: #1d1d1f; border-radius: 2px; transition: all 0.25s; }
.zb-hamburger-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.zb-hamburger-open span:nth-child(2) { opacity: 0; }
.zb-hamburger-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Main */
.zb-main { min-height: 60vh; }

/* ── BANNER PARCEIROS DELL & KASPERSKY ── */
.zb-cert-banner {
  background: #fff;
  border-top: 1px solid #e8e8ed;
  border-bottom: 1px solid #e8e8ed;
  padding: 56px 32px;
}
.zb-cert-inner { max-width: 960px; margin: 0 auto; }
.zb-cert-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 40px;
}
.zb-cert-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.zb-cert-card {
  border: 1px solid #e8e8ed;
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.zb-cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}
.zb-cert-dell::before { background: #007DB8; }
.zb-cert-kasp::before { background: #00A651; }
.zb-cert-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.zb-cert-logo-wrap {
  flex-shrink: 0;
  width: 96px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zb-cert-logo-wrap img {
  max-width: 96px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.zb-cert-wordmark-dell {
  font-size: 34px;
  font-weight: 800;
  color: #007DB8;
  letter-spacing: -1px;
  font-family: Arial, sans-serif;
}
.zb-cert-info { flex: 1; min-width: 0; }
.zb-cert-type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 5px;
}
.zb-cert-dell .zb-cert-type { color: #007DB8; }
.zb-cert-kasp .zb-cert-type { color: #00A651; }
.zb-cert-title {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 5px;
  border: none;
  padding: 0;
}
.zb-cert-desc {
  font-size: 13px;
  color: #6e6e73;
  line-height: 1.5;
  margin: 0 0 12px;
}
.zb-cert-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.zb-cert-badge:hover { opacity: 0.8; }
.zb-cert-dell .zb-cert-badge { background: #e8f4fb; color: #007DB8; }
.zb-cert-kasp .zb-cert-badge { background: #e6f7ee; color: #00A651; }

/* Partners slider */
.zb-partners { padding: 48px 0 40px; border-top: 1px solid #f0f0f0; overflow: hidden; background: #fafafa; }
.zb-partners-label { text-align: center; font-size: 11px; font-weight: 500; color: #86868b; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 28px; }
.zb-slide-track { display: flex; width: calc(220px * 16); animation: zbScroll 38s linear infinite; }
.zb-slide { width: 220px; height: 72px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.zb-slide img { max-height: 40px; max-width: 150px; filter: grayscale(100%); opacity: 0.45; transition: all 0.3s ease; object-fit: contain; }
.zb-slide img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes zbScroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-220px * 8)); } }

/* Footer */
.zb-footer { background: #1d1d1f; color: rgba(255,255,255,0.6); padding: 64px 48px 32px; }
.zb-footer-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.zb-footer-logo-name { font-size: 16px; font-weight: 600; color: #fff; margin: 12px 0 2px; }
.zb-footer-tagline { font-size: 11px; color: rgba(255,255,255,0.35); margin: 0 0 16px; }
.zb-footer-kaspersky { margin-top: 16px; }
.zb-footer h4 { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.8px; margin: 0 0 16px; padding: 0; border: none; }
.zb-footer ul { list-style: none; padding: 0; margin: 0; }
.zb-footer ul li { margin-bottom: 10px; padding: 0; }
.zb-footer ul li::before { display: none !important; }
.zb-footer ul a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.zb-footer ul a:hover { color: #c8a84b; }
.zb-status { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.zb-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #34c759; flex-shrink: 0; }
.zb-footer-contact { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; margin: 0 0 10px; }
.zb-contact-img { max-height: 24px; filter: brightness(0) invert(1); opacity: 0.35; }
.zb-footer-bottom { max-width: 1080px; margin: 28px auto 0; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.25); }

/* Cookie */
.zb-cookie { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(29,29,31,0.96); border-top: 1px solid rgba(200,168,75,0.3); padding: 20px 48px; z-index: 9999; }
.zb-cookie-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.zb-cookie p { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.5; }
.zb-cookie strong { color: #fff; }
.zb-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.zb-cookie button { padding: 9px 20px; font-size: 12px; font-weight: 500; border-radius: 980px; cursor: pointer; transition: all 0.2s; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: rgba(255,255,255,0.7); }
.zb-cookie button:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.zb-cookie-accept { background: #002d62 !important; border-color: #002d62 !important; color: #fff !important; }
.zb-cookie-accept:hover { background: #003a80 !important; }
.dn { display: none !important; }

/* Article */
.zb-article { max-width: 720px; margin: 0 auto; padding: 64px 32px 96px; }
.zb-article h1 { font-size: 40px; font-weight: 600; color: #1d1d1f; letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 16px; border: none; padding: 0; }
.zb-description { font-size: 19px; font-weight: 300; color: #6e6e73; line-height: 1.6; margin: 0 0 48px; padding-bottom: 40px; border-bottom: 1px solid #f0f0f0; }
.zb-article-body { font-size: 16px; line-height: 1.8; color: #3d3d3f; }
.zb-article-body h2 { font-size: 24px; font-weight: 600; color: #1d1d1f; margin: 48px 0 16px; border: none; padding: 0; }
.zb-article-body h3 { font-size: 18px; font-weight: 600; color: #1d1d1f; margin: 32px 0 12px; border: none; padding: 0; }
.zb-article-body h4 { font-size: 14px; font-weight: 600; color: #002d62; text-transform: uppercase; letter-spacing: 0.8px; margin: 24px 0 8px; border: none; padding: 0; }
.zb-article-body p { margin: 0 0 20px; }
.zb-article-body a { color: #002d62; }
.zb-article-body ul { list-style: none; padding: 0; margin: 0 0 24px; }
.zb-article-body ul li { padding: 8px 0 8px 20px; position: relative; border-bottom: 1px solid #f5f5f5; font-size: 15px; }
.zb-article-body ul li::before { content: ""; width: 5px; height: 5px; background: #c8a84b; border-radius: 50%; position: absolute; left: 2px; top: 16px; }
.zb-article-body blockquote { border-left: 3px solid #002d62; padding: 16px 24px; margin: 32px 0; background: #f9f9fb; border-radius: 0 8px 8px 0; }
.zb-article-body blockquote p { margin: 0; }

/* Homepage */
.zb-home-hero { padding: 100px 32px 80px; text-align: center; background: #fff; }
.zb-home-eyebrow { font-size: 11px; font-weight: 500; color: #002d62; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.zb-home-mascote { display: block; height: 160px; width: auto; margin: 0 auto 40px; }
.zb-home-hero h1 { font-size: 52px; font-weight: 600; color: #1d1d1f; letter-spacing: -0.03em; line-height: 1.07; margin: 0 0 20px; border: none; padding: 0; }
.zb-home-hero h1 em { font-style: normal; color: #002d62; }
.zb-home-hero p { font-size: 18px; font-weight: 300; color: #6e6e73; max-width: 500px; margin: 0 auto 36px; line-height: 1.65; border: none; padding: 0; }
.zb-home-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.zb-btn-primary { background: #002d62; color: #fff; padding: 13px 28px; border-radius: 980px; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.zb-btn-primary:hover { background: #003a80; }
.zb-btn-secondary { color: #002d62; padding: 13px 4px; font-size: 14px; font-weight: 500; text-decoration: none; }
.zb-btn-secondary:hover { text-decoration: underline; }

/* Services */
.zb-services { background: #f5f5f7; padding: 72px 32px; }
.zb-services-label { text-align: center; font-size: 11px; font-weight: 500; color: #86868b; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 48px; }
.zb-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 960px; margin: 0 auto; }
.zb-service-card { background: #fff; padding: 40px 28px; transition: background 0.2s; }
.zb-service-card:first-child { border-radius: 16px 0 0 16px; }
.zb-service-card:last-child  { border-radius: 0 16px 16px 0; }
.zb-service-card:hover { background: #fafafa; }
.zb-service-card h3 { font-size: 17px; font-weight: 600; color: #1d1d1f; margin: 0 0 10px; border: none; padding: 0; }
.zb-service-card p { font-size: 13px; color: #6e6e73; line-height: 1.55; margin: 0 0 18px; }
.zb-service-link { font-size: 13px; color: #002d62; text-decoration: none; font-weight: 500; }
.zb-service-link:hover { text-decoration: underline; }

/* Product cards */
.vitrine-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; padding: 24px 0; }
.produto-card-v2 { display: flex; flex-direction: column; background: #fff; border: 1px solid #e8e8ed; border-radius: 16px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.produto-card-v2:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.img-container { background: #f5f5f7; height: 200px; display: flex; align-items: center; justify-content: center; padding: 20px; }
.img-container img { max-height: 160px; max-width: 100%; object-fit: contain; }
.info-container { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.categoria { font-size: 10px; font-weight: 600; color: #c8a84b; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.info-container h3 { font-size: 15px; font-weight: 600; color: #1d1d1f; margin: 0 0 8px; border: none; padding: 0; line-height: 1.3; }
.card-footer { margin-top: auto; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f5f5f7; }
.preco { font-size: 17px; font-weight: 600; color: #1d1d1f; }
.btn-ml { background: #002d62; color: #fff !important; padding: 9px 16px; font-size: 12px; font-weight: 500; text-decoration: none; border-radius: 980px; transition: background 0.2s; }
.btn-ml:hover { background: #003a80; }
.result-highlight { background: #ff3b30; color: #fff !important; padding: 2px 8px; font-weight: 600; border-radius: 4px; font-size: 0.88em; display: inline; }

/* Ananke overrides */
.post-meta { display: none !important; }
.author-box { display: none !important; }
.tags { display: none !important; }
.categories { display: none !important; }
.page-about time { display: none !important; }

/* ── RESPONSIVE (single block) ── */
@media (max-width: 768px) {
  .zb-topbar { padding: 6px 20px; }
  .zb-topbar-brand { display: none; }

  .zb-header { position: relative; }
  .zb-header-inner { padding: 0 20px; }

  .zb-nav {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid #f0f0f0;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 16px;
    z-index: 800;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .zb-nav-open { display: flex !important; }
  .zb-nav-item { width: 100%; }
  .zb-nav-link { height: auto; padding: 12px 20px; font-size: 15px; border-bottom: 1px solid #f5f5f5; justify-content: space-between; }
  .zb-nav-cta { margin: 12px 20px 0; text-align: center; padding: 12px 20px; border-radius: 8px; font-size: 14px; }
  .zb-hamburger { display: flex; }

  .zb-dropdown { position: static; transform: none; box-shadow: none; border: none; border-radius: 0; background: #f9f9fb; opacity: 1; pointer-events: all; padding: 0; display: none; min-width: 0; }
  .zb-dropdown-open { display: block !important; }
  .zb-dropdown a { padding: 10px 20px 10px 32px; font-size: 13px; border-bottom: 1px solid #efefef; }

  .zb-home-hero { padding: 56px 20px 48px; }
  .zb-home-hero h1 { font-size: 34px; }
  .zb-home-mascote { height: 120px; }

  .zb-cert-banner { padding: 40px 20px; }
  .zb-cert-cards { grid-template-columns: 1fr; }
  .zb-cert-card { padding: 24px; gap: 20px; }
  .zb-cert-logo-wrap { width: 72px; height: 48px; }
  .zb-cert-title { font-size: 15px; }

  .zb-article { padding: 40px 20px 64px; }
  .zb-article h1 { font-size: 28px; }

  .zb-footer { padding: 48px 20px 24px; }
  .zb-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .zb-footer-brand { grid-column: 1 / -1; }
  .zb-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .zb-cookie { padding: 16px 20px; }
  .zb-cookie-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .zb-services-grid { grid-template-columns: 1fr; }
  .zb-service-card:first-child { border-radius: 16px 16px 0 0; }
  .zb-service-card:last-child  { border-radius: 0 0 16px 16px; }
}

/* Dell Highlight Section */
.zb-highlight-dell {
  background: #f5f5f7;
  padding: 72px 32px;
  border-top: 1px solid #e8e8ed;
}
.zb-highlight-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.zb-highlight-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: #007DB8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 12px;
}
.zb-highlight-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  border: none;
  padding: 0;
}
.zb-highlight-text p {
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 480px;
}
.zb-highlight-logo img {
  max-height: 160px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.zb-dell-badge {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-top: 4px solid #007DB8;
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  min-width: 180px;
}
.zb-dell-badge-logo {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
}
.zb-dell-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: #007DB8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 4px;
}
.zb-dell-badge-since {
  font-size: 12px;
  color: #86868b;
  margin: 0;
}

@media (max-width: 768px) {
  .zb-highlight-dell { padding: 48px 20px; }
  .zb-highlight-inner { grid-template-columns: 1fr; gap: 32px; }
  .zb-highlight-logo { display: none; }
  .zb-highlight-text h2 { font-size: 24px; }
}

/* SVG size fix - prevent Kaspersky and other SVGs from expanding */
.zb-cert-logo-wrap img,
.zb-cert-logo-wrap svg,
.zb-footer-kaspersky img,
.zb-footer-kaspersky svg {
  max-width: 120px !important;
  max-height: 48px !important;
  width: auto !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

/* Efeito para o logo da Teixeira Pinto */
.logo-vermelho {
    transition: all 0.3s ease; /* Transição suave */
    filter: grayscale(100%);     /* Começa cinza para combinar com os outros */
    opacity: 0.6;
}

.logo-vermelho:hover {
    opacity: 1;
    /* Filtro para simular tom vermelho/alaranjado */
    filter: grayscale(0%) sepia(100%) saturate(500%) hue-rotate(-30deg);
}