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

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f8f8;
    font-family:'Poppins',sans-serif;
    color:#333;
}

.hero{
    text-align:center;
    padding:80px 20px 40px;
}

.logo{
    font-size:3rem;
    color:#d63384;
    font-family:'Playfair Display',serif;
    font-weight:700;
}

.subtitulo{
    letter-spacing:4px;
    color:#777;
    margin-top:10px;
}

.hero h1{
    margin-top:30px;
    font-size:3rem;
    font-family:'Playfair Display',serif;
}

.descripcion{
    max-width:700px;
    margin:20px auto;
    color:#666;
}

.menu-categorias{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    padding:20px;
}

.menu-categorias a{
    text-decoration:none;
    color:#d63384;
    border:1px solid #d63384;
    padding:10px 20px;
    border-radius:30px;
    transition:.3s;
}

.menu-categorias a:hover{
    background:#d63384;
    color:white;
}

.categoria{
    max-width:1400px;
    margin:auto;
    padding:70px 30px;
}

.titulo-categoria{
    font-size:2rem;
    margin-bottom:30px;
    color:#d63384;
    font-family:'Playfair Display',serif;
}

.slider-wrapper{
    position:relative;
}

.slider{
    overflow:hidden;
}

.track{
    display:flex;
    gap:25px;
    transition:0.5s;
}

.card{
    min-width:320px;
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-8px);
}

.card-img{
    height:330px;
    overflow:hidden;
    position:relative;
}

.card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.card:hover img{
    transform:scale(1.08);
}

.badge{
    position:absolute;
    top:15px;
    left:15px;

    background:#d63384;
    color:white;

    padding:8px 16px;
    border-radius:30px;
    font-size:.8rem;
}

.card-body{
    padding:25px;
}

.card-body h3{
    font-family:'Playfair Display',serif;
    font-size:1.8rem;
    margin-bottom:10px;
}

.card-body p{
    color:#666;
    line-height:1.7;
}

.botonera{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.btn{
    flex:1;
    border:none;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    text-decoration:none;
    text-align:center;
}

.btn-detalle{
    background:#f1f1f1;
    color:#333;
}

.btn-whatsapp{
    background:#25D366;
    color:white;
}

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:white;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    z-index:10;
}

.prev{
    left:-20px;
}

.next{
    right:-20px;
}

@media(max-width:768px){

    .hero h1{
        font-size:2rem;
    }

    .logo{
        font-size:2.2rem;
    }

    .card{
        min-width:280px;
    }

    .arrow{
        display:none;
    }

}

.btn-regresar{

    position:fixed;

    bottom:25px;
    left:25px;

    background:#d63384;
    color:white;

    text-decoration:none;

    padding:14px 22px;

    border-radius:50px;

    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    z-index:9999;

    transition:.3s;
}

.btn-regresar:hover{

    transform:translateY(-3px);

    background:#bf2d74;
}