.pleca {
  background-color: var(--Philippine-Red);
  position: fixed;
  width: 100%;
  top: 6.625rem;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12%;
  transition: all 0.5s ease;
  height: 2.5rem;
  font-size: 1rem;

  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06); */
}




.lista_pleca {
  display: flex;
  justify-content: center;
  width: 100%;



}

.lista_pleca li {
  color: white;
  font-family: "Ubuntu-Regular";
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 5px 0px;
  list-style-type: disc;


}

/* Responsive */

/* Tablets pequeñas en vertical (portrait) */
@media (max-width: 767px) {
  .pleca{
    display: none;
  }
}

/* Tablets medianas y grandes (horizontal y vertical) */
@media (min-width: 768px) and (max-width: 1024px) {
  .pleca{
  padding: 0 4%;
  font-size: 12px;
  background-color: #212529;
  top: 56px;
  }
}

/* Laptops y pantallas pequeñas de escritorio */
@media (min-width: 1025px) and (max-width: 1366px) {}

/* Escritorios grandes y monitores widescreen */
@media (min-width: 1367px) {}