/* FUENTE */

@font-face {
font-family: "Louis George Cafe";
src: url("LouisGeorgeCafe-Regular.ttf");
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}
.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
padding:15px;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-float img{
width:28px;
}

body{
font-family:"Louis George Cafe", sans-serif;
background:white;
color:#252B5F;
}


/* HEADER */

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 10%;
background:#F197B0;
}

/* LOGO */

.logo{
height:100px;
width:auto;
display:block;
}

nav a{
margin-left:25px;
text-decoration:none;
color:white;
font-weight:600;
}


/* HERO */

.hero{
height:70vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:#9E8FF4;
color:white;
}

.hero h2{
font-size:3rem;
margin-bottom:10px;
}

.hero p{
margin-bottom:20px;
}


/* BOTON */

.boton{
background:#D9F203;
color:#252B5F;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
margin-top:20px;
display:inline-block;
}

/* COOKIES */

.cookies{
padding:80px 10%;
text-align:center;
}

.grid{
margin-top:40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#F197B0;
padding:30px;
border-radius:15px;
color:white;
}


/* NOSOTROS */

.nosotros{
padding:80px 20%;
text-align:center;
background:#252B5F;
color:white;
}


/* PEDIDOS */

.pedidos{
padding:80px 10%;
text-align:center;
background:#F197B0;
color:white;
}


/* FOOTER */

footer{
text-align:center;
padding:20px;
background:#252B5F;
color:white;
}.card:hover{
transform:translateY(-5px);
transition:0.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.boton:hover{
background:#252B5F;
color:white;
transition:0.3s;
}
.redes{
margin-top:10px;
}

.redes a{
margin:0 10px;
color:white;
text-decoration:none;
font-weight:bold;
}