
  .barra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    /*background: #FFFFFF;*/
    color: #000;
  }

  .parte {
    flex: 1;
  }

  .parte1 {
    text-align: left;
	
  }

  .parte2 {
    text-align: center;
    font-weight: bold;
  }

  .parte3 {
    text-align: right;
  }

  /* 🔥 MODO RESPONSIVE */
  @media (max-width: 768px) {
    .barra {
      justify-content: center;
    }

    .parte1,
    .parte3 {
      display: none;
    }

    .parte2 {
      text-align: center;
      width: 100%;
    }
	.parte2 .logocentral{height:9vh;}
	
  }
  
  .logocentral{height:16vh;}