*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Inter;
background:#FFF7F2;
color:#4a2f25;
line-height:1.6;

}

h1,h2,h3{

font-family:Poppins;

}

.hero{

background:linear-gradient(120deg,#F5C6D6,#FFF0F5);
padding:120px 10%;

}

.hero-container{

display:flex;
align-items:center;
justify-content:space-between;
gap:60px;

}

.hero-text{

max-width:500px;

}

.hero h1{

font-size:56px;
margin-bottom:20px;

}

.hero span{

color:#D0798C;

}

.hero-buttons{

display:flex;
gap:15px;
margin-top:20px;

}

.btn-primary{

background:#D0798C;
color:white;
padding:14px 26px;
border-radius:30px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:0.3s;

}

.btn-primary:hover{

transform:translateY(-3px);

}

.btn-secondary{

border:2px solid #D0798C;
padding:14px 26px;
border-radius:30px;
text-decoration:none;
color:#D0798C;

}

.hero-desserts{

position:relative;
font-size:70px;

}

.dessert{

position:absolute;
animation:float 6s ease-in-out infinite;

}

.d1{top:-30px;left:0}
.d2{top:80px;left:120px}
.d3{top:180px;left:-40px}
.d4{top:40px;left:200px}

@keyframes float{

0%{transform:translateY(0)}
50%{transform:translateY(-20px)}
100%{transform:translateY(0)}

}



.section{

padding:80px 10%;
text-align:center;

}

.section.alt{

background:#FFF0F5;

}

.cards{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;

}

.card{

background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;

}

.card:hover{

transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);

}

.gallery{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:40px;

}

.gallery-item{

background:white;
padding:40px;
font-size:40px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);

}

.galeria-texto{

margin-top:10px;

}

.encargo-text{

max-width:600px;
margin:auto;
margin-bottom:30px;

}

.map{

margin:40px auto;
max-width:900px;

}

.contacto{

background:#F5C6D6;

}

.telefono{

font-size:22px;
margin-bottom:20px;

}

.telefono a{

text-decoration:none;
color:#4a2f25;
font-weight:600;

}

.contact-buttons{

display:flex;
justify-content:center;
gap:15px;

}

footer{

text-align:center;
padding:30px;
background:#D0798C;
color:white;

}

@media(max-width:900px){

.hero-container{

flex-direction:column;
text-align:center;

}

.cards{

grid-template-columns:1fr;

}

.gallery{

grid-template-columns:1fr 1fr;

}

}