@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&family=Titillium+Web:wght@200;300;400;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
}




.JustificarElementos {
    display: flex;
    align-items: justify;
    justify-content: justify;
    text-align: justify;
  }



.container .btn-float .btn{
   
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    /*background-color: gray;
    padding: 15px 25px;*/
    color: black;
    border-radius: 20px ;
    position:fixed;
    left:40px;
    top:40px;
    transition: all 0.3s ease 0s;
    /*box-shadow: 0px 8px 15px rgba(0,0,0,0.3);*/ 
    z-index: 99;

}

.container .btn-float .btn:hover{
    box-shadow: 0px 8px 15px rgba(0,0,0,0.3);
    transform: translateY(-7);
}


.Titulo{
   
    /*font-size: calc(2em + 2vw);*/
    font-weight: bold;
}

.LineaHorizontalAr {
    height: 3px;
    background-color: #5fb61a;
    border-color: #5fb61a;
    margin-left: 0%;
    margin-right: 25%;
  }

  .LineaHorizontalCe {
    height: 3px;
    background-color: #ff1865;
    border-color: #ff1865;
    margin-left: 0%;
    margin-right: 25%;
  }

  .LineaHorizontalMa {
    height: 3px;
    background-color: #6b29ad;
    border-color: #6b29ad;
    margin-left: 0%;
    margin-right: 25%;
  }

  .LineaHorizontalCi {
    height: 3px;
    background-color: #12abfe;
    border-color: #12abfe;
    margin-left: 0%;
    margin-right: 25%;
  }







  /*  GALERIA DE IMAGENES */

  .GaleriaImg {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 600px;
    height: 400px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 5px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.thumbnails {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnails img:hover {
    transform: scale(1.1);
    border-color: #000;
}