/***  NAV DE LOGO Y MENU **/

.navegaciones {
  height: 98px;
  background-color: rgb(255, 255, 255);
  width: 100%;
  box-shadow:
    rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
    rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.navegaciones ul li a.contactos {
  background: linear-gradient(45deg,#bb0000, #e93c3c);
  color: white !important; 
  padding: 10px 15px;
  border-radius: 10px; 
  text-decoration: none;
}


.enlace {
  position: absolute;
  padding: 7px 80px; /*cambios padding*/
}
/*cambios padding*/
.enlaces {
  position: absolute;
  padding: 30px 29px; /*cambios padding*/
}

.logo {
  height: 30px;
}

.navegaciones ul {
  float: right;
  margin-right: 18px;
}

/*cambios*/
.navegaciones ul li {
  display: inline-flex;
  margin-left: 28px;/*cambios*/
  margin-top: 43px;/*cambios*/
}

.navegaciones ul li a {
  color: rgb(12, 12, 12);
  font-size: 12px;
  margin: -7px;
  padding: 7px 1px;
  border-radius: 3px;
  text-transform: uppercase;
}

.navegaciones li > .submenu {
  position: absolute;
  left: 0px;
  top: 30px;
  display: block;
}

li a:hover {
  text-decoration: none;
  color: #c20f0f;
}
.navegaciones li {
  transition: all 480ms;
}

.navegaciones li:hover {
  transform: scale(1.4);
  color: #c20f0f;
}

.navegaciones ul li a:hover {
  color: #c20f0f;
  transform: scale(1, 1);
}

ul li a.contact {
  background: #c20f0f;
}

a.contact {
  color: black;
  font-weight: 500;
}

.checkbtn {
  font-size: 30px;
  color: rgb(0, 0, 0);
  float: right;
  line-height: 97px;/*cambios*/
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

@media (max-width: 952px) {
  .enlace {
    padding-left: 20px;
  }
  .navegaciones ul li a {
    font-size: 12px;
  }
}

@media (max-width: 842px) {
  .logo {
    height: 27px;
  }
}

@media (max-width: 952px) {
  .checkbtn {
    display: block;
  }
  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
  }
  .navegaciones ul li {
    display: block;
    margin: 20px 0;
    line-height: 30px;
  }
  .navegaciones ul li a {
    font-size: 20px;
    font-weight: 500;
  }
  li a:hover,
  li a.active {
    background: none;
    color: rgb(241, 230, 230);
  }
  #check:checked ~ ul {
    left: 0;
  }
}

/*** FIN NAV DE LOGO Y MENU **/

.mensaje-error {
  display: none;
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.form-group:focus-within .mensaje-error {
  display: block;
}




