body {
    background-color: #a9d2e6;
    background-attachment: fixed;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
}
.logo-index {
    text-decoration: none;
}
h2{
    background-color: #90b6cf;
    color: #644317;
    padding: 20px;
    margin: 5px;
    margin-top: 120px;
}
h3{
    background-color: #90b6cf;
    color: #644317;
    padding: 15px;
    margin: 20px;
    margin-top: 20px;
}
p{
    margin-bottom: 10px;
}
a{
    margin-bottom: 10px;
}
/*Estilos para el encabezado*/
.header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #90b6cf;
}
header a h1{
    margin-left: 2rem;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    
}
.container .btn-menu,
.logo {
    float: left;
    line-height: 100px;
}
.container .btn-menu label {
    color: #644317;
    font-size: 25px;
    cursor: pointer;
    
}
.logo h1 {
    color: #644317;
    font-weight: 400;
    font-size: 20px;
    margin-left: 10px;
    margin-top: 1px;
}
.container .menu {
    float: right;
    line-height: 100px;
    background-color: #90b6cf;
}
.container .menu a {
    display: inline-block;
    padding: 15px;
    line-height: normal;
    text-decoration: none;
    color: #644317;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-size: 17px;
    margin-right: 5px;
}
.container .menu a:hover {
    border-bottom: 2px #000000;
    padding-bottom: 5px;
}
/*Fin de Estilos para el encabezado*/
/*Menù lateral*/
#btn-menu {
    display: none;
}
.container-menu {
    position: absolute;
    background: #fcf1d8;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}
#btn-menu:checked ~ .container-menu {
    opacity: 1;
    visibility: visible;
}
.cont-menu {
    width: 100%;
    max-width: 250px;
    background:  #f0d3fd;
    height: 100vh;
    position: relative;
    transition: all 500ms ease;
    transform: translateX(-100%);
}
#btn-menu:checked ~ .container-menu .cont-menu {
    transform: translateX(0%);
}
.cont-menu nav {
    transform: translateY(15%);
}
.cont-menu nav a {
    display: block;
    text-decoration: none;
    padding: 20px;
    color: #0c0a0a;
    border-left: 5px solid transparent;
    transition: all 400ms ease;
}
.cont-menu nav a:hover {
    border-left: 5px solid #1a381f;
    background: #fffacf;
}
.cont-menu label {
    position: absolute;
    right: 5px;
    top: 10px;
    color: #000000;
    cursor: pointer;
    font-size: 18px;
}
/*Fin de Menù lateral*/
/*Inicio del catálogo*/
.catalogo {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px; 
    margin-top: 70px;
}
.card {
    background: #fcf1d8;
    padding: 30px; 
    border: 8px solid #644317;
    border-radius: 80px;
    text-align: center;
}
.card img {
    width: 100%; 
    height: 250px; object-fit: cover;
    border-radius: 15px;
}
.card h3 {
    margin: 10px 0 5px;
    background-color: #fcf1d8;
}
.precio {
    font-weight: bold;
    color: #1d3557;
}
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #2d6a4f;
    color: #fff; 
    text-decoration: none;
    border-radius: 5px;
}
.btn:hover {
    background: #1b4332;
}
/*Fin del catálago*/

