*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:linear-gradient(180deg,#fff8fb,#ffeef6,#fff8fb);
}

header{
    width:100%;
    background:#FFD6E7;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
}

.logo{
    font-size:30px;
    font-weight:bold;
    color:#D94F8A;
}

nav a{
    text-decoration:none;
    margin:0 15px;
    color:#555;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#D94F8A;
}

.carrito{
    font-size:25px;
    color:#D94F8A;
}
/* banner */
.banner{
    width:90%;
    margin:40px auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#FFEAF3;
    border-radius:20px;
    padding:40px;
}

.texto-banner{
    width:45%;
}

.texto-banner h1{
    font-size:38px;
    color:#D94F8A;
    margin-bottom:20px;
}

.texto-banner p{
    margin-bottom:25px;
    line-height:28px;
}

.texto-banner button{
    background:#FF8CB7;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:30px;
    cursor:pointer;
    font-size:16px;
}

.texto-banner button:hover{
    background:#D94F8A;
}

.imagen-banner{
    width:45%;
}

.caja-imagen{
    height:280px;
    border:3px dashed #D94F8A;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:white;
    color:#999;
    font-size:22px;
}

/* destacados */
.destacados{
    width:90%;
    margin:auto;
    margin-bottom:50px;
}

.destacados h2{
    text-align:center;
    color:#D94F8A;
    margin-bottom:30px;
}

.contenedor-postres{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:flex-start;
    gap:30px;
    width:100%;
    margin:40px auto;
}

.postre{
    width:260px;
    background:white;
    border-radius:20px;
    padding:20px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.foto{
    height:170px;
    border:2px dashed #D94F8A;
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:15px;
    color:#999;
}

.postre h3{
    color:#D94F8A;
    margin-bottom:10px;
}

/* opiniones */
.resenas{
    width:90%;
    margin:auto;
    margin-bottom:50px;
}

.resenas h2{
    text-align:center;
    margin-bottom:30px;
    color:#D94F8A;
}

.contenedor-resenas{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.resena{
    width:32%;
    background:white;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.perfil{
    width:80px;
    height:80px;
    border:2px dashed #D94F8A;
    border-radius:50%;
    margin:auto;
    margin-bottom:15px;
}

.resena h4{
    margin-top:15px;
    color:#D94F8A;
}

footer{
    background:#FFD6E7;
    text-align:center;
    padding:20px;
    color:#555;
    margin-top:50px;
}
nav a{
    position:relative;
}
nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#ff5fa2;
    transition:.4s;
    border-radius:10px;
}
nav a:hover::after{
    width:100%;
}
.logo{
    transition:.5s;
    cursor:pointer;
}
.logo:hover{
    transform:rotate(-5deg) scale(1.08);
}
/* Animación al cargar */

@keyframes aparecer{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

.banner,
.postre,
.resena,
.destacados{

animation:aparecer 1s ease;

}
.postre{

transition:0.4s;

}

.postre:hover{

transform:translateY(-10px);

box-shadow:0px 12px 25px rgba(0,0,0,.20);

}
button{

transition:.4s;

}

button:hover{

transform:scale(1.08);

background:#ff5fa2;

}
.carrito{

transition:.4s;

cursor:pointer;

}

.carrito:hover{

transform:scale(1.3);

color:#ff5fa2;

}
.foto{

transition:.5s;

}

.foto:hover{

transform:scale(1.05);

border:2px solid hotpink;

}
.banner{

transition:.5s;

}

.banner:hover{

transform:scale(1.01);

}
@keyframes flotar{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

.caja-imagen{

animation:flotar 3s infinite;

}/* ==========================
      CONTACTO
========================== */

.contacto-contenedor{

display:flex;

justify-content:space-between;

gap:30px;

margin-top:30px;

}

.formulario{

width:60%;

background:white;

padding:30px;

border-radius:20px;

box-shadow:0 5px 15px rgba(0,0,0,.1);

}

.formulario input,
.formulario textarea{

width:100%;

padding:12px;

border:2px solid #FFD6E7;

border-radius:10px;

margin-top:5px;

font-size:15px;

}

.formulario button{

background:#ff7eb6;

color:white;

padding:12px 30px;

border:none;

border-radius:25px;

cursor:pointer;

font-size:16px;

}

.mapa{

width:35%;

background:white;

padding:30px;

border-radius:20px;

text-align:center;

box-shadow:0 5px 15px rgba(0,0,0,.1);

}

.caja-mapa{

height:300px;

border:3px dashed #ff9cc5;

border-radius:20px;

display:flex;

justify-content:center;

align-items:center;

margin:20px 0;

background:#fff8fb;

font-size:22px;

color:#999;

}
/*========== MISION Y VISION ==========*/

.mision-vision{

    width:90%;
    margin:60px auto;
    background:#FFF1F7;
    padding:50px;
    border-radius:30px;

}

.mision-vision h2{

    text-align:center;
    color:#D94F8A;
    font-size:35px;
    margin-bottom:40px;

}

.contenedor-mv{

    display:flex;
    justify-content:space-between;
    align-items: stretch;
    gap: 25px;
    width: 100%;

}

.tarjeta-mv{
    flex: 1;
    max-width: 48%;
    background: white;
    border-radius: 25px;
    padding: 35px;
    min-height: 380px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    transition: 4s;
}

.tarjeta-mv:hover{

    transform:translateY(-10px);

}

.tarjeta-mv i{

    font-size:50px;
    color:#FF7EB6;
    margin-bottom:20px;

}

.tarjeta-mv h3{

    color:#D94F8A;
    margin-bottom:20px;
    font-size:28px;

}

.tarjeta-mv p{

    text-align:justify;
    line-height:32px;
    color:#666;
    font-size:17px;

}/*========== HISTORIA ==========*/

.historia{

    width:90%;
    margin:60px auto;

}

.historia h2{

    text-align:center;
    color:#D94F8A;
    font-size:38px;
    margin-bottom:35px;

}

.historia-contenedor{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

    background:white;

    border-radius:30px;

    padding:35px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.historia-imagen{

    width:40%;

}

.foto-historia{

    height:320px;

    background:#FFF8FB;

    border:3px dashed #FF7EB6;

    border-radius:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    color:#999;

    transition:.4s;

}

.foto-historia:hover{

    transform:scale(1.03);

}

.historia-texto{

    width:60%;

}

.historia-texto h3{

    color:#D94F8A;

    font-size:30px;

    margin-bottom:20px;

}

.historia-texto p{

    text-align:justify;

    line-height:30px;

    color:#555;

    margin-bottom:18px;

}

.historia-texto button{

    background:#FF7EB6;

    color:white;

    border:none;

    padding:14px 28px;

    border-radius:30px;

    cursor:pointer;

    font-size:16px;

    transition:.4s;

}

.historia-texto button:hover{

    background:#D94F8A;

    transform:scale(1.05);

}
.foto img,
.foto-historia img,
.caja-imagen img{

    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;

}
.caja-mapa{

    height:300px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1);

}

.caja-mapa iframe{

    width:100%;
    height:100%;
    border:none;

}