/* --------------------------
   CABECERA CORPORATIVA COMPACTA
--------------------------- */
/* --------------------------
   CABECERA CENTRADA CORPORATIVA
--------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid #f05a1a30;
  z-index: 9999;
}

.header-container {
  max-width: 1100px; /* igual que el ancho del dashboard */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.header-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-left .logo {
  
  width: 300px;
  height: auto;
  margin-bottom: 3px;
}

.header-left h1 {
  color: #ad0c0c;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.header-right {
  text-align: right;
  font-size: 13px;
  line-height: 1.5;
}

.header-right a {
  color: #f05a1a;
  text-decoration: none;
  font-weight: bold;
}
.header-right a:hover {
  text-decoration: underline;
}

.contact-item i {
  color: #f05a1a;
  margin-right: 6px;
}

/* deja espacio superior para el header fijo */
