*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f8f5f2;
    color:#333;
}

/* NAVBAR */
.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 60px;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo img{
    height:55px;
}

.navbar nav{
    display:flex;
    gap:25px;
    align-items:center;
}

.navbar a{
    text-decoration:none;
    color:#444;
    font-weight:500;
}

.btn-login{
    background:#d4af7f;
    padding:8px 18px;
    border-radius:25px;
    color:white !important;
    transition:0.3s;
}

.btn-login:hover{
    background:#b99666;
}

/* HERO */
.hero{
    height:100vh;
    background:url('../img/imagenp1.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    text-align:center;
    color:white;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    animation:fadeUp 1.5s ease;
}

.hero h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:25px;
}

.btn-primary{
    background:white;
    color:#333;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.btn-primary:hover{
    background:#d4af7f;
    color:white;
}

/* CATALOGO */
.catalogo{
    padding:140px 60px 80px;
}

.catalogo h2{
    text-align:center;
    font-size:2.5rem;
    margin-bottom:70px;
}

.categoria{
    margin-bottom:90px;
}

.categoria h3{
    font-size:1.8rem;
    margin-bottom:35px;
    color:#b99666;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.item{
    text-align:center;
    cursor:pointer;
}

.item img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
    transition:0.4s;
}

.item img:hover{
    transform:scale(1.05);
}

.item p{
    margin-top:15px;
    font-weight:500;
}

/* MODAL */
.modal{
    display:none;
    position:fixed;
    z-index:9999;
    padding-top:40px;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    backdrop-filter:blur(6px);
}

.modal img{
    display:block;
    margin:auto;
    max-width:90%;
    max-height:90%;
    border-radius:20px;
    animation:zoomIn 0.4s ease;
}

.close{
    position:absolute;
    top:25px;
    right:40px;
    font-size:45px;
    color:white;
    cursor:pointer;
}

@keyframes fadeUp{
    from{opacity:0;transform:translateY(40px);}
    to{opacity:1;transform:translateY(0);}
}

@keyframes zoomIn{
    from{transform:scale(0.7);opacity:0;}
    to{transform:scale(1);opacity:1;}
}


