body{
margin:0;
font-family:Arial;
background:#111;
color:white;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
background:#000;
}

.logo{
height:40px;
}

.btn-wsp-top{
background:#2e7d32;
color:white;
padding:10px 15px;
text-decoration:none;
border-radius:5px;
}

/* HERO */

.hero{
background:url("images/hero-mobile.jpg") center/cover;
padding:80px 20px;
}

.hero-content{
max-width:500px;
}

h1{
font-size:28px;
}

.btn-main{
display:inline-block;
background:#2e7d32;
padding:15px 25px;
margin-top:20px;
text-decoration:none;
color:white;
border-radius:6px;
font-weight:bold;
}

/* CATALOGO */

.catalogo{
padding:40px 20px;
text-align:center;
}

.productos{
display:flex;
flex-direction:column;
gap:20px;
}

.card{
background:#1b1b1b;
padding:15px;
border-radius:10px;
}

.card img{
width:100%;
border-radius:8px;
}

.card a{
display:block;
margin-top:10px;
background:#2e7d32;
padding:10px;
text-decoration:none;
color:white;
}

/* ENTREGA */

.entrega{
background:url("images/entrega.jpg") center/cover no-repeat;
height:350px;
margin:40px 20px;
border-radius:10px;
position:relative;
}
.entrega-contenido{
position:absolute;
left:120px;
top:50%;
transform:translateY(-50%);
font-size:18px;
line-height:35px;
}

/* WHATSAPP */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
padding:15px;
border-radius:50px;
color:white;
text-decoration:none;
}

/* DESKTOP */

@media(min-width:768px){

.hero{
background:url("images/hero-desktop.jpg") center/cover;
padding:150px 80px;
}

.productos{
flex-direction:row;
}

.card{
flex:1;
}

.entrega{
flex-direction:row;
align-items:center;
justify-content:space-between;
padding:60px 40px;
}

.entrega-left{
width:40%;
}

.entrega-right{
width:60%;
}

}