* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
    padding: 20px;
}

/* Grid automático responsivo */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}



/* Card */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Imagem */
.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Conteúdo */
.card-body {
    padding: 15px;
}

.title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.card-body p {
    font-size: 14px;
    color: #555;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.price {
    color: #0a8f4e;
    font-weight: 600;
    font-size: 16px;
    margin: 8px 0;
}

/* Descrição */
.description {
    font-size: 13px;
    margin: 10px 0;
    line-height: 1.4;
}

/* Rodapé */
.footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 13px;
    color: #444;
}

/* MODAL ZOOM */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    animation: fade .3s;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    animation: zoom .3s;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

/* Animações */
@keyframes zoom {
    from {transform: scale(.7)}
    to {transform: scale(1)}
}

@keyframes fade {
    from {opacity: 0}
    to {opacity: 1}
}

/* Cursor na imagem */
.card-img img {
    cursor: zoom-in;
}


.footer i {
    color: #0d6efd;
}

/* Ícones */
i {
    color: #0d6efd;
}


/* Mobile */
@media(max-width: 480px) {
    .card-img img {
        height: 180px;
    }
}
