.header {
  background-color: white;
  border-bottom: solid 2px #205c9a;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding: 0;
  width: 100%;
  min-width: 0;
  z-index: 999;
  box-sizing: border-box;
  overflow: visible; }
  @media (min-width: 1100px) {
    .header {
      border-bottom-color: #004a87;
      flex-direction: row;
      align-items: stretch;
      justify-content: space-between;
      height: 92px;
      padding-block: 16px; } }
  .header .grupo-principal {
    display: flex;
    width: 100%;
    height: 67px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    box-sizing: border-box;
    min-width: 0;
    position: relative; }
    @media (min-width: 1100px) {
      .header .grupo-principal {
        width: auto;
        height: 100%;
        padding: 0 0 0 80px;
        justify-content: flex-start;
        align-items: center;
        align-self: stretch;
        flex: 1 1 auto; } }
  .header .contenedor-logos {
    display: flex;
    flex: 0 1 auto;
    height: 100%;
    align-items: center;
    justify-content: center;
    min-width: 0;
    align-self: stretch; }
    @media (min-width: 1100px) {
      .header .contenedor-logos {
        flex: 0 0 auto;
        height: 100%;
        justify-content: flex-start; } }
  .header .logos {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0;
    text-decoration: none; }
    @media (min-width: 1100px) {
      .header .logos {
        flex: 0 0 auto;
        width: fit-content;
        height: 100%;
        justify-content: flex-start;
        margin: 0;
        max-width: 100%; } }
  .header .logo {
    display: block;
    flex-shrink: 0;
    width: auto;
    height: 100%;
    object-fit: contain; }
  .header .logo-desktop {
    display: none; }
  @media (min-width: 1100px) {
    .header .logo-mobile {
      display: none; }
    .header .logo-desktop {
      display: block; } }
  .header .hamburguesa {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: white;
    gap: 10px;
    padding: 16px;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: solid 2px #205c9a; }
    @media (min-width: 1100px) {
      .header .hamburguesa {
        flex-direction: row;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        min-height: 0;
        position: static;
        width: auto;
        max-width: 100%;
        min-width: 0;
        padding: 0 80px 0 0;
        align-self: stretch;
        flex: 0 1 auto;
        border-bottom: 0; } }
  .header .hamburguesa[hidden] {
    display: none; }
  @media (min-width: 1100px) {
    .header .hamburguesa[hidden] {
      display: flex !important; } }
  .header .enlace {
    font-size: 20px;
    font-weight: 400;
    padding: 16px 0;
    text-decoration: none;
    color: var(--color-primary);
    margin-left: 0;
    margin-right: 0;
    line-height: normal;
    white-space: nowrap; }
    .header .enlace:hover {
      color: var(--color-primary-dark); }
    @media (min-width: 1100px) {
      .header .enlace {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        box-sizing: border-box;
        margin-right: 0;
        padding: 0 16px; } }
  .header .boton-hamburguesa {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    touch-action: manipulation;
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    margin-block: auto; }
    @media (min-width: 1100px) {
      .header .boton-hamburguesa {
        display: none; } }
  .header .icono-hamburguesa {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    pointer-events: none; }
  .header .icono-hamburguesa[hidden] {
    display: none; }
