@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');



*{
    
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

:root{
    --green-water:rgb(156, 249, 217);
    --black: #000;
    --maggenta: #ff86ed;
    --white: #ffffff;
    --title: 35px;
    --text: 19px;
}


body{

    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*******************************************************Menu de navegacion********************************************************/

.inicio {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.menu {
  position: fixed;
  width: 100%;
  height: 75px;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  flex-wrap: wrap;
  box-shadow: 5px 5px 10px rgb(77, 77, 77);
}

.menu .logo {
  display: flex;
  align-items: flex-end;
  margin-left: 10px;
  gap: 10px;
}

.nombre {
  display: flex;
  align-items: flex-end;
  font-size: 20px;
  font-style: oblique;
  white-space: nowrap;
}

.logo>img {
  width: 160px;
  height: 70px;
}

/*******************************************************Menu de navegacion - b ********************************************************/


.lista-nav-c .lista-c{
  display: flex;
  justify-content: center;
  margin: auto;
  gap: 20px;
}


.menu .lista-nav-c ul li {
  list-style: none;
}

.menu .lista-nav-c ul li a {
  text-decoration: none;
  margin: 0px 10px;
  font-size: 1.2em;
  color: #000000;
  background-color: #f8f8f8;
  padding: 8px;
  border-radius: 3px;
  transition: 0.3s;
}

.menu .lista-nav-c ul li a:hover {
  background-color: rgb(236, 196, 255);
}

.menu .lista-nav-c ul li a.activo {
  background-color: var(--maggenta);
}

/*********************************************************************************************************/



.menu .lista-nav {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.menu .lista-nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.menu .lista-nav ul li {
  list-style: none;
}

.menu .lista-nav ul li a {
  text-decoration: none;
  margin: 0px 10px;
  font-size: 1.2em;
  color: #000000;
  background-color: #f8f8f8;
  padding: 8px;
  border-radius: 3px;
  transition: 0.3s;
}

.menu .user img {
  width: 50px;
  margin-right: 15px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-right: 8px;
  cursor: pointer;
}

.nav-toggle .nav-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  margin: 5px 0;
  transition: transform 0.2s ease;
}

.menu .lista-nav ul li a:hover {
  background-color: rgb(236, 196, 255);
}

.menu .lista-nav ul li a.activo {
  background-color: var(--maggenta);
}

@media (max-width:991px) {
  .logo>img {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .menu {
    align-items: flex-start;
    height: auto;
  }

  .menu .lista-nav,
  .menu .lista-nav-c {
    width: 100%;
  }

  .menu .lista-nav ul,
  .menu .lista-nav-c ul {
    display: none;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 10px 12px 14px;
    background: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  }

  .menu.is-open .lista-nav ul,
  .menu.is-open .lista-nav-c ul {
    display: flex;
  }
}


/******************************************************** Imagen Header *****************************************************************/


.img-header {
    margin: 0px auto 50px;
    background-repeat: no-repeat; 
    background-size: cover;
    background-repeat: no-repeat; 
}

.img-header img{
    width: 100%;
    height: 600px;
}


/******************************************************** Imagen Regalo *****************************************************************/

.img-regalo{

    width: 100%;
    display: flex;
    justify-content: center;
    gap: 60px;

}

.image{
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image h1{
    text-align: center;
    padding: 10px;
    font-size: var(--text);
}



/******************************************************** Tarjetas Productos *****************************************************************/


.tarjetas-productos{
    width: 100%;
    margin: 20px auto 100px;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tarjetas-productos h2{

    margin:60px auto 60px;
    color: #4f4f4f;
    text-align: center;
    font-size: 2em;
}

.tarjetas{

    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    gap: 90px;
}



.book {
    position: relative;
    border-radius: 10px;
    width: 260px;
    height: 350px;
    background-color: whitesmoke;
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000;
    -webkit-transform: preserve-3d;
    -ms-transform: preserve-3d;
    transform: preserve-3d;
    -webkit-perspective: 2000px;
    perspective: 2000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
  }
  
  .cover {
    top: 0;
    position: absolute;
    background-color: lightgray;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #7c7c7c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cover img{
    width: 260px;
    height: 350px;
    border-radius: 5px;
  }
  
  .book:hover .cover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotatey(-80deg);
    -ms-transform: rotatey(-80deg);
    transform: rotatey(-80deg);
  }
  
  .texto{
    margin-left: 20px ;
    width: 90%;
  }
  .texto p {
    margin-left: 20px ;
    
    font-size: 19px;
  }

  .texto .parrafo{
    font-size: 17px;
    line-height: 30px;
    font-weight: 100;
  }


  @media (max-width:991px){

    .img-header{
    
        background-size: cover;
        height: max-content;
    }

    .img-regalo{
        display: flex;
        width: 80%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .tarjetas{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        flex-direction: column;
        margin: auto;
    }


}




/*******************************************************PIE DE PAGINA********************************************************/


.pie-pagina{
    width: 100%;
    margin-top: 100px;
    background-color: #e5b8ff;
  }
  .pie-pagina .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap:50px;
    padding: 45px 0px;
  }
  .pie-pagina .grupo-1 .box figure{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pie-pagina .grupo-1 .box figure img{
    width: 250px;
  }
  .pie-pagina .grupo-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
  }
  .pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
  }
  .pie-pagina .grupo-1 .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background-color: #0d2033;
    text-align: center;
    transition: all 300ms ease;
  }
  .pie-pagina .grupo-1 .red-social a:hover{
    color: aqua;
  }
  .pie-pagina .grupo-2{
    background-color: #000000;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
  }
  .pie-pagina .grupo-2 small{
    font-size: 15px;
  }
  @media screen and (max-width:800px){
    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap:30px;
        padding: 35px 0px;
    }
  }

  @media (max-width: 1024px) {
    .menu {
      height: auto;
      padding: 10px 12px;
      gap: 8px;
    }

    .menu .logo {
      margin-left: 0;
    }

    .menu .lista-nav {
      width: 100%;
    }

    .menu .lista-nav ul {
      flex-wrap: wrap;
      gap: 12px;
    }

    .menu .user img {
      width: 44px;
      margin-right: 10px;
    }

    .img-header {
      margin: 90px auto 24px;
    }

    .img-header img {
      height: auto;
    }

    .img-regalo {
      gap: 24px;
      padding: 0 16px;
    }

    .image {
      width: 100%;
      max-width: 420px;
      height: auto;
    }

    .image img {
      width: 100%;
      height: auto;
    }

    .tarjetas {
      flex-wrap: wrap;
      gap: 30px;
      padding: 0 16px;
    }

    .book {
      width: 100%;
      max-width: 320px;
    }

    .cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  @media (max-width: 600px) {
    .menu .lista-nav ul li a {
      font-size: 1rem;
      padding: 6px 8px;
    }

    .nombre {
      font-size: 16px;
    }

    .img-regalo {
      flex-direction: column;
    }

    .image h1 {
      font-size: 1rem;
      line-height: 1.4;
    }

    .tarjetas-productos h2 {
      margin: 40px auto;
      font-size: 1.4em;
    }

    .book {
      height: 320px;
    }

    .cover img {
      height: 320px;
    }
  }
  
  
