/* ================================
   WEBZI KB - NAVBAR + FOOTER
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

:root {
  --webzi-primary: #7b1fa2;
  --webzi-secondary: #6c63ff;
  --webzi-text: #0f172a;
  --webzi-muted: #64748b;
  --webzi-border: #e5e7eb;
  --webzi-bg: #ffffff;
  --webzi-bg-light: #f8fafc;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
}

/* ================================
   OCULTAR LOGO ZOHO
   ================================ */
.Header__logoPart,
.Header__logoimg,
.Header__logo,
.Header__logotxt {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ================================
   NAVBAR WEBZI
   ================================ */
.webzi-nav {
  position: relative;
  width: 100%;
  background: var(--webzi-bg);
  border-bottom: 1px solid var(--webzi-border);
  z-index: 100;
}

.webzi-nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.webzi-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.webzi-logo img {
  height: 32px;
  display: block;
}

.webzi-separator {
  color: var(--webzi-border);
  font-size: 20px;
  font-weight: 300;
}

.webzi-kb-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--webzi-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--webzi-bg-light);
  border: 1px solid var(--webzi-border);
  transition: all 0.2s ease;
}

.webzi-kb-badge:hover {
  color: var(--webzi-primary);
  background: rgba(123, 31, 162, 0.08);
  border-color: var(--webzi-primary);
}

.webzi-kb-icon {
  font-size: 16px;
  line-height: 1;
}

.webzi-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.webzi-menu a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--webzi-text);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.webzi-menu a:hover {
  color: var(--webzi-primary);
}

.webzi-actions {
  display: flex;
  align-items: center;
}

.webzi-login {
  background: linear-gradient(135deg, var(--webzi-primary), var(--webzi-secondary));
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(123, 31, 162, 0.25);
}

.webzi-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(123, 31, 162, 0.35);
}

/* ================================
   FOOTER WEBZI KB
   ================================ */
.webzi-kb-footer {
  background: var(--webzi-bg);
  border-top: 1px solid var(--webzi-border);
  margin-top: 40px;
  font-family: 'Roboto', system-ui, sans-serif;
}

.webzi-kb-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.webzi-kb-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.webzi-kb-footer-brand img {
  height: 32px;
}

.webzi-kb-footer-brand p {
  color: var(--webzi-muted);
  font-size: 13px;
  margin: 0;
  max-width: 280px;
}

.webzi-kb-footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.webzi-kb-footer-links a {
  color: var(--webzi-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.webzi-kb-footer-links a:hover {
  color: var(--webzi-primary);
}

.webzi-kb-footer-bottom {
  border-top: 1px solid var(--webzi-border);
  padding: 16px 24px;
  text-align: center;
}

.webzi-kb-footer-bottom span {
  color: var(--webzi-muted);
  font-size: 13px;
}

.webzi-kb-footer-bottom a {
  color: var(--webzi-primary);
  text-decoration: none;
}

.webzi-kb-footer-bottom a:hover {
  color: var(--webzi-secondary);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .webzi-menu {
    gap: 18px;
  }
  
  .webzi-kb-text {
    display: none;
  }
  
  .webzi-kb-footer-links {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .webzi-menu {
    display: none;
  }
  
  .webzi-nav-container {
    height: 56px;
    padding: 0 16px;
  }
  
  .webzi-logo img {
    height: 28px;
  }
  
  .webzi-kb-footer-main {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 20px;
  }
  
  .webzi-kb-footer-brand {
    flex-direction: column;
    gap: 10px;
  }
  
  .webzi-kb-footer-brand p {
    max-width: 100%;
  }
  
  .webzi-kb-footer-links {
    justify-content: center;
    gap: 12px;
  }
  
  .webzi-kb-footer-bottom {
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .webzi-separator {
    display: none;
  }
  
  .webzi-kb-badge {
    margin-left: 8px;
    padding: 5px 8px;
    font-size: 12px;
  }
  
  .webzi-login {
    font-size: 13px;
    padding: 7px 14px;
  }
  
  .webzi-kb-footer-links a {
    font-size: 13px;
  }
}
