.logo{
    background: url(images/logo.png);
  display: block;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat; 
  margin: 1rem auto;

}
.fas {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  vertical-align: middle;
}

.corazon {background-image: url(images/corazoncitoDeVida.gif);}
.librito {background-image: url(images/librito.gif);}
.calendario {background-image: url(images/calendario.gif);}
.bottonmenu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f8e5d0;
  border: 2px solid #d9a066;
  border-radius: 12px;
  padding: 8px 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: #5c3a21;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bottonmenu:hover {
  background-color: #f1d2b6;
  border-color: #a85c3a;
  color: #3e2a1c;
}
.bottonmenu:hover{color: rgb(80, 85, 85);border-color: rgb(80, 85, 85);}

.pagina{
    position: relative;
}
body {
  background: linear-gradient(to bottom, #fffaf3, #fbe4d8);
  font-family: 'Roboto', sans-serif;
  color: #3e2a1c;
  margin: 0;
  padding: 0;
}
.menuIzq {
  background-color: #d9a066;
  padding: 1rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}
.menuIzq ul {
  list-style: none;
  padding: 0;
}
.menuIzq ul li {
  margin-bottom: 1rem;
}
.flechita {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #333;
  background-color: #e0e0e0;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.flechita:hover {
  background-color: #bbb;
  color: #000;
}