                   /*BOTONES SERVICIOS*/
.botServCont {
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  gap: 15px;
  padding: 0px;
}

.botServ {

  box-sizing: border-box;
  
}

.botServ a {
  display: block;
  width: 150px;
  text-align: center;
  
}

.botServ img {
  width: 150px;
  height: 150px;
  border-radius: 25px;
  margin-top: 10px;
  transition: box-shadow 0.3s;
}

.botServ img:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  transition: 0.5s;
}



                /* MENU  PRINCIPAL */
.menuPpalCont {
display: flex;
align-items: center;
margin: 20px 0px 0px 0px;
}
  /*logo*/

.logo{
 
  max-width: 500px;
}

  /*botones*/

.botMP{
  max-height: 120px;
  width: 120px;
  margin: 0px 5px 10px 5px;
 
}

.botMP:hover {
  transform: scale(1.1);
  transition: 0.5s;
  text-decoration: underline;
 }



 .linkBotMP {
  display: flex;
  flex-direction: column; /* Elementos en columna: imagen arriba, texto abajo */
  align-items: center;     /* Centra horizontalmente */
  justify-content: center; /* Centra verticalmente dentro del div */
  text-align: center;
  height: 100%; /* Solo si querés que ocupe toda la altura de su contenedor padre */
}

.linkBotMP h5 {
  font-size: small;
  font-weight: 200;
}

.nav > li > a:hover, .nav > li > a:focus {
background-color: transparent;
}

/* separadores*/

.menuPpal > li {
  display: inline-block;
  border-left: solid  1px  #3C3C3C80; /* Línea divisoria */  
  
  
}

.menuPpal > li:first-child {
  border-left: none;
}






/* CARROUSEL */

#owl-novedades {
  max-width: 680px;
}

.itemCarro img{
width: 680px !important;
border-radius: 25px;

}
.itemCarro{
  max-height: fit-content;
}






/* Carrousel noticias*/

.itemNoti  {
color:#3C3C3C ;
display: flex;
flex-direction: column;
align-items: center;
justify-items: center;
width: 200px;
height: 280px;
border-radius: 25px;
border: solid 1px #3C3C3C10;
padding: 10px;
box-shadow: 2px 2px 2px  rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
margin-right: 15px !important;
}

.itemNoti img {
  max-height: auto;
  margin-bottom: 10px;
}

.itemNoti a{
  text-decoration: none;
  
}



footer a:hover{
  text-decoration: underline;
}





/* Móvil - 2 botones por fila */
@media (max-width: 450px) {
  .botServ {
    flex: 1 1 47%; /* 2 por fila */
  }
  .itemCarro img{
    width: 100%;
    height: 100%;
  }
}



/* VIDEOS */ 

.videoCont video {
  max-height: 330px;
  border-radius: 25px;
 
}

.videoCont {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px; /* Alternativa moderna para el espaciado */
}



.videoCont video:first-child {
  margin-top: 32px;
}