* {
    margin: 0%;
    padding: 0%;
}

body {
  background-color: #f3d8d8;
   font-family: "Elms Sans", sans-serif;
}


.hamburguesa {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: #a43e3e;
  color: #fff;
  border: 1px solid;
  font-size: 1.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.hamburguesa:hover {
  background: #a05a44;
}

.menu {
  position: fixed;
  top: 75px;
  right: 1rem;
  background-color: #a43e3e92;
  border-radius: 8px;
  overflow: hidden;
  flex-direction: column;
  display: none;
  z-index: 9;
  border: 1px solid #ffff;

  backdrop-filter: blur(5px);
}

.menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  transition: background 0.3s ease;
}

.menu a:hover {
  background: #a05a44;
}

/* Menú activo */
.menu.menu-active {
  display: flex;
}


#titulo {
    margin: 40px;
    padding: 10px;
    font-size: 60px;
    font-family: "Dancing Script", cursive;
}
#titulo, p {
    font-family: "Dancing Script", cursive;
    color: #644141;

}



.generos {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-bottom: 50px;
}

.cuadrado {
  width: 100%;
  height: 250px;
  margin: 0;
  box-shadow: 3px 8px 7px rgba(0, 0, 0, 0.1);
  background-color: #f1f1f1;
  border: 1px solid;
  text-align: center;
  font-size: 30px;
  padding-bottom: 50px;
  overflow: hidden;
}
.cuadrado p {
    background-color: #f1f1f1;
}
.cuadrado:hover {
  transform: scale(1.05);
}

.enlaces {
  text-decoration: none;
  color: #775555;
}

/*.texto {
    background-color: #f1f1f1;
    border: none;
    margin-top: 0%;
}*/
.cuadrado img {
    width: 100%;
   height: 100%;
}

.titulos_libros {
    font-size: 50px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}


.vermas {
  width: 50vw;
  position: relative;
  background-color: rgb(135, 42, 42);
  z-index: 0;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 3rem; */
  margin-bottom: 30px;
  margin-left: 70px;
  margin-right: 70px;
}



.banners {
    position: relative;
    z-index: 1;
    background-color: rgba(174, 137, 137, 0.345);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 3rem; */
    margin-bottom: 30px;
    margin-left: 70px;
    margin-right: 70px;
}
.banner1 {
    position: relative;
    z-index: 0;
    background-color: antiquewhite;
    padding: 10px 10px 30px;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-left: 20px;
}



.footer {
  background-color: #2d2d2d;
  color: #f1f1f1;
  padding: 40px 80px 0;
  font-size: 16px;
  font-family: sans-serif;
}

.footercontenedor {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid #888;
  padding-bottom: 30px;
}

.footerlogo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 220px;
}

.logo {
  width: 70px;
  height: auto;
}

.nosotros {
  font-weight: 500;
  line-height: 1.2;
  font-size: 15px;
}

.footerseccion {
  flex: 1;
  min-width: 200px;
}

.footerseccion h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footerseccion p {
  color: #d1d1d1;
  line-height: 1.5;
}

.footerseccion a {
  color: #d1d1d1;
  text-decoration: none;
}

.footerseccion a:hover {
  text-decoration: underline;
}

.footerbottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0;
}

.social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social p {
  margin: 0;
  color: #f1f1f1;
  font-size: 18px;
}

.iconos a img {
  width: 25px;
  height: 25px;
  filter: invert(1);
}
@media (max-width: 900px) {
  .generos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .generos {
    grid-template-columns: 1fr;
  }
}

