*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body{
    background:#fffaf3;
    color:#333;
    padding-top:90px;
}

/* NAVBAR */
header{
    background:#5a2d0c;
    padding:15px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    animation:slideDown .8s ease;
}

@keyframes slideDown{
    from{transform:translateY(-100%);}
    to{transform:translateY(0);}
}

.logo{
    height:60px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#f4b400;
}

/* HERO */
.hero{
    height:75vh;
    padding:150px 20px;
    background: 
        linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
        url(img/montado.jpeg);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero div{
    animation:fadeUp 1.2s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero h1{
    font-size:3rem;
    font-weight:800;
}

.hero p{
    margin-top:10px;
    font-size:1.2rem;
}

/* BOTONES */
.btn{
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    margin:10px;
    display:inline-block;
    transition:.3s;
}

.whatsapp{
    background:#25D366;
    color:white;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

.whatsapp:hover{
    transform:translateY(-3px);
}

.maps{
    background:white;
    color:#333;
    display:inline-flex;
    align-items:center;
    gap:8px;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

.maps img{
    height:20px;
}

.maps:hover{
    transform:translateY(-3px);
}

/* GALERÍA */
.gallery{
    padding:120px 8% 80px;
    text-align:center;
    background:white;
}

.gallery h2{
    font-size:2.5rem;
    margin-bottom:40px;
    color:#5a2d0c;
}

    .grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:20px;
    max-width:1100px;
    margin:auto;
}


.photo-placeholder{
    height:300px;
    background:#eee;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    cursor:pointer;
}

.photo-placeholder img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.photo-placeholder:hover{
    transform:scale(1.05);
    box-shadow:0 15px 30px rgba(0,0,0,.2);
}

/* REDES */
.social{
    background:linear-gradient(45deg,#f4b400, red);
    padding:80px 10%;
    text-align:center;
    color:white;
}

/* CONTENEDOR REDES */
.social{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* BOTONES REDES */
.social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin:10px;
    padding:12px 30px;
    min-width:220px;
}

/* ICONOS */
.social a img{

    height:20px;
    width:auto;
}

.social h2{
    margin-bottom:30px;
    font-size:2.2rem;
}

.social a{
    display:inline-block;
    margin:10px 20px;
    padding:12px 28px;
    background:white;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    color:#5a2d0c;
    transition:.3s;
}

.social a:hover{
    transform:scale(1.08);
}

/* BOTÓN PEDIDO GRANDE */
.pedido-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
    background:#25D366;
    color:white !important;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:1.1rem;
    box-shadow:0 10px 25px rgba(0,0,0,.4);
    transition:.3s ease;
}

.pedido-btn img{
    height:24px;
}

.pedido-btn:hover{
    transform:scale(1.07);
    background:#1ebe5d;
}

/* FOOTER */
footer{
    background:#3b1e08;
    color:white;
    text-align:center;
    padding:25px;
}

/* BOTÓN FLOTANTE WHATSAPP */
.float-wsp{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
    z-index:1000;
    transition:.3s;
}

.float-wsp:hover{
    transform:scale(1.1);
}

.pedido-box{
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.pedido-box a{
    color:white;
    text-decoration:none;
    font-weight:700;
}

.pedido-box img{
    width:40px;
    margin-bottom:10px;
}

.pedido-box p{
    margin:0;
    font-size:1.1rem;
}

.info-box{
    background:linear-gradient(135deg,#5a2d0c,#8b4513);
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px;
    height:300px; /* mismo tamaño que las fotos */
    border-radius:20px;
    transition:.4s;
}

.info-box:hover{
    transform:scale(1.05);
    box-shadow:0 15px 30px rgba(0,0,0,.3);
}

.info-content{
    max-width:90%;
}

.info-content h3{
    font-size:1.3rem;
    margin:10px 0;
}

.info-content p{
    font-size:0.9rem;
    line-height:1.5;
}

.badge{
    background:#f4b400;
    color:#5a2d0c;
    padding:5px 12px;
    border-radius:20px;
    font-size:0.7rem;
    font-weight:600;
}

/* SECCIÓN POSTRES */
.postres{
    padding:100px 8%;
    background:#fffaf3;
    text-align:center;
}

.postres h2{
    font-size:2.3rem;
    margin-bottom:50px;
    color:#5a2d0c;
}

.postres-grid{
    display:grid;
     grid-template-columns:repeat(auto-fit, minmax(300px,1fr));  
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.postre-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:.3s;
}

.postre-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.postre-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.postre-card h3{
    margin:15px 0 10px;
    color:#5a2d0c;
}

.postre-card p{
    padding:0 20px 20px;
    font-size:.9rem;
}

.social a,
.whatsapp{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.social a img,
.whatsapp img{
    height:18px;
}