header {
  background: linear-gradient(to left, #c0392b, #000000); /* De rojo a negro */
  color: white;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  align-items: center;      /* Centra verticalmente todo dentro del header */
  /* justify-content: space-between; */
  height: 90px;
  height: 90px;
  width: 100%; 
}

.logo-text {
  display: flex;
  align-items: center;      /* Centra verticalmente el logo y el texto */
  gap: 1.2rem;              /* Espacio horizontal entre logo y texto */
}

.logo-text img {
  height: 80px;             /* O el alto que desees para el logo */
  width: auto;
  display: block;
  background: white;        /* Opcional: si el logo no es transparente */
  border-radius: 8px;       /* Opcional */
  padding: 4px;             /* Opcional */
}

.header-titles h1 {
  margin: 0;
  font-size: 1.5rem;
}

.header-titles p {
  margin: 0;
  font-size: 1rem;
}

.contact {
  margin-left: auto;  /* ¡ESTA ES LA CLAVE! */
  text-align: right;
}