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

:root{
  --navy:#0B2A4A;
  --blue:#0D6EFD;
  --orange:#F97316;
  --bg:#F5F7FA;
  --border:#E5E7EB;
  --text:#111827;
  --muted:#6B7280;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
}

/* =========================
   HEADER NAV
========================= */
.Header__navbar{
  background:var(--navy);
  box-shadow:0 2px 10px rgba(0,0,0,.18);
  position: relative;
  z-index: 10;
}

.Header__logo img{ max-height:44px; }

.Header__name{
  color:#fff;
  font-weight:600;
  margin-left:12px;
}

/* Menu */
.Header__menuList li{
  color:#fff;
  font-weight:500;
}
.Header__menuList li:hover{ color:var(--orange); }

/* =========================
   SUBHEADER (SIEMPRE VISIBLE)
========================= */
.fixit-subheader{
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 5;
}

.fixit-subheader-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
}

.fixit-subtitle{
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.fixit-subnote{
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.fixit-subheader-right{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.fixit-subchip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #F8FAFC;
  border: 1px solid var(--border);
  color: #0F172A;
  font-weight: 600;
  font-size: 13px;
}

/* =========================
   SIN HERO (ocultar por completo)
========================= */
#headerContent,
.Header__searchSection{
  display:none !important;
}

/* =========================
   FIX: Espacios feos en páginas internas
========================= */
.Content__container,
.Portal__content,
.HomePage__content{
  padding-top: 18px !important;
  margin-top: 0 !important;
}

.Portal__content{
  min-height: auto !important;
}

/* =========================
   BUSCADOR (general)
========================= */
input[type="search"],
input[type="text"]{
  border-radius: 12px !important;
  border: 1px solid var(--border);
  padding: 12px 14px;
}

/* =========================
   FLOATING BUTTONS (WhatsApp/Web/Video)
========================= */
.fixit-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:9999;
}

.fixit-fab-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  font-weight:900;
  color:#fff !important;
  text-decoration:none !important;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  transition: transform .15s ease, filter .15s ease;
}

.fixit-fab-btn:hover{
  transform: translateY(-1px);
  filter: brightness(.98);
}

.fixit-fab-wa{ background:#1DB954; }
.fixit-fab-web{ background:var(--navy); }
.fixit-fab-video{ background:#EF4444; }

.fixit-fab-ico{
  width:30px;
  height:30px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}

/* =========================
   FOOTER SIMPLE
========================= */
.fixit-footer-simple{
  margin-top: 24px;
}

.fixit-footer-simple-inner{
  max-width:1100px;
  margin:20px auto 10px;
  padding:14px 16px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.07);
  border: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.fixit-footer-brand{
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .2px;
}

.fixit-footer-meta{
  color: var(--muted);
  font-size: 13px;
}

.fixit-footer-strong{
  color: var(--text);
  font-weight: 800;
}

/* Zoho “Powered by” */
.Footer__footerCopyrigt{
  background:var(--navy);
  color:#fff;
  padding:14px 0;
}

.Footer__footerLink{
  color:var(--orange);
  font-weight:600;
}

.Footer__footerLink:hover{ text-decoration: underline; }

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){
  .Header__name{ display:none; }

  .fixit-subheader-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .fixit-footer-simple-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .fixit-fab-text{ display:none; }
}

