*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fafafa;
color:#333;
}

/* HERO */

.hero{
height:100vh;
background:
linear-gradient(
135deg,
rgba(248,214,226,.9),
rgba(255,255,255,.8)
),
url('./img/MANTEQUILLA.png');

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.overlay{
max-width:800px;
padding:20px;
}

.logo{
width:180px;
margin-bottom:20px;
}

.hero h1{
font-size:4rem;
color:#d15d99;
margin-bottom:15px;
}

.hero p{
font-size:1.2rem;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#d15d99;
color:white;
text-decoration:none;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 30px rgba(209,93,153,.4);
}

/* PRODUCTOS */

.productos{
padding:90px 8%;
}

.productos h2{
text-align:center;
font-size:3rem;
color:#d15d99;
margin-bottom:50px;
}

.grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:35px;
}

.card{
background:white;
border-radius:25px;
overflow:hidden;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:500px;
object-fit:cover;
display:block;
}

.contenido{
padding:25px;
}

.contenido h3{
color:#d15d99;
font-size:1.5rem;
margin-bottom:10px;
}

.contenido p{
line-height:1.7;
}

/* CONTACTO */

.contacto{
padding:100px 20px;
text-align:center;

background:
linear-gradient(
135deg,
#fce6ef,
#fff
);
}

.contacto h2{
font-size:2.5rem;
color:#d15d99;
margin-bottom:20px;
}

.contacto p{
margin-bottom:30px;
}

.btn-whatsapp{
display:inline-block;
padding:18px 40px;
background:#25D366;
color:white;
font-weight:600;
text-decoration:none;
border-radius:50px;
transition:.3s;
}

.btn-whatsapp:hover{
transform:scale(1.05);
}

/* BOTON FLOTANTE */

.float{
position:fixed;
width:70px;
height:70px;

bottom:30px;
right:30px;

background:#25D366;
color:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:34px;

text-decoration:none;

box-shadow:
0 10px 25px rgba(0,0,0,.25);

z-index:999;
}

/* RESPONSIVE */

@media(max-width:768px){

.hero h1{
font-size:2.5rem;
}

.productos h2{
font-size:2rem;
}

.card img{
height:350px;
}

.logo{
width:130px;
}

}
/* ========================= */
/* FOOTER PREMIUM */
/* ========================= */

.footer{

    background: linear-gradient(
    135deg,
    #f8d6e2,
    #ffffff
    );

    padding:60px 20px 30px;

    text-align:center;

    border-top:1px solid rgba(209,93,153,.15);

}

.footer h3{

    color:#d15d99;

    margin-bottom:25px;

    font-size:1.6rem;

}

.social-links{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:30px;

}

.social-links a{

    text-decoration:none;

    color:white;

    background:#d15d99;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

    display:flex;

    align-items:center;

    gap:10px;

    box-shadow:
    0 10px 25px rgba(209,93,153,.25);

}

.social-links a:hover{

    transform:translateY(-5px);

    background:#bf4d87;

}

.social-links i{

    font-size:20px;

}

.copyright{

    margin-top:20px;

    color:#666;

    font-size:.95rem;

    line-height:1.8;

}

.copyright p:first-child{

    font-weight:600;

}
