body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
}

/* CARTES */
.card {
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* SERVICES */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card img {
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: rgba(0,0,0,0.6);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    opacity:0;
    transition:0.3s;
}

.service-card:hover .overlay {
    opacity:1;
}

/* IMAGE PIZZA (sans zoom) */
.pizza-img {
    height:150px;
    object-fit:cover;
    border-radius:10px;
}
