body {
    background-image: url("Fondos/fondo\ 01.jpg") ;
    background-size: cover;
/*    background-attachment: fixed;  Fija el fondo para que no se desplace con el contenido */
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
    padding: 0;
  }

  h1{
    text-align: center;
    font-family: myFont;
    font-weight: bold;
    color: black;
    font-size: 60px;
    padding-top: 5%;
    font-weight: 700;
    z-index: 3;
  }

.font{
    font-family: myFont;    
}

/*TIPOGRAFIA TITULO*/
@font-face {
    font-family: "myFont";
    src: url("/ROBOTO/Roboto-BoldCondensed.ttf") format("truetype");
    font-weight: bold;
    font-style: condensed;
}

/*TIPOGRAFIA SUBTITULOS*/
@font-face {
    font-family: "myFont";
    src: url("/ROBOTO/Roboto-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: medium;
}

/*TIPOGRAFIA TEXTO*/
@font-face {
    font-family: "myFont";
    src: url("/ROBOTO/Roboto-Regular.ttf") format("truetype");
    font-weight: lighter;
    font-style: light;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*NAVBAR*/
.navbar{
    background-color: #b2eeff ;
    font-family:myFont;
    font-weight: medium;
    padding: auto;
    z-index: 1;
    font-size: large;
}

/*Pdfs/libros*/

.pdfs{
    display: block;
    /*background-image: url("Fondos/fondo\ 01.jpg") ;*/
    
}

.libros {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    height: 60vh;
    /*background-color: transparent; /* Fondo de las tarjetas con opacidad para que se vea el fondo de la página ;*/
  }
  
  .libro {
    text-align: center;
    width: 40%;
    margin: 20px;
    padding: 20px;
    background-color: rgba(85, 190, 192, .3);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .boton {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .boton:hover {
    background-color: #0056b3;
  }
  
  .espacio{
     width: 50vw; /* Establece un ancho inicial basado en el 50% del ancho del viewport */
    min-width: 200px; /* Establece un ancho mínimo */
    max-width: 800px; /* Establece un ancho máximo si es necesario */
    height: 200px; /* Establece una altura fija o ajusta según tus necesidades */
    background-color: #3498db; /* Color de fondo para visualización */
    margin: 0 auto; /* Centra el div en el viewport */
  }
  

/*FOOTER*/
footer{
    position: relative;
    width: 100%;
    background: #286B74;
    min-height: 100px;
    padding: 20px 50px ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(/Recursos_somos/fondo\ 06.jpg);
    z-index: 1000;
    animation: animateWave 5s linear infinite;
    opacity: 1;
    left: 0;
    background-size:1000px ;


}

footer .logos, footer .menu, footer p{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 10px;
    list-style: none;
}

footer .menu li a{
    color: #ffffff;
    font-family: myFont;
    font-weight: bold;
    margin: 0 10px;
    text-decoration: none;
    opacity: 0.75;
}

footer .menu li a:hover{
    font-weight: bold;
    color: #acacac;
    margin: 0 10px;
    text-decoration: none;
    opacity: 1;


}

footer .logos li {
    font-size: 1.5em;
    font-weight: bold;
    display: inline-block;
    transition: 0.5s;
}

footer p{
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 2px;
    font-size: 1em;
    font-weight: bold;
    opacity: 0.75;

}

footer .wave{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background:url(/Recursos_somos/onda.png);
    background-size:1000px 100px;
}

footer .wave#wave1{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}
footer .wave#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}
footer .wave#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom: 10px;
    animation: animateWave_02 3s linear infinite;
}

@keyframes animateWave {
    0%
    {
        background-position-x:1000px;

    }
    100%{
        background-position-x: 0px;
    }
}
@keyframes animateWave_02{
    0%
    {
        background-position-x:0px;

    }
    100%{
        background-position-x:1000px;
    }
}

