body {
    font-family: Arial, sans-serif;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background: white;
    padding: 20px;
    text-align: center;
    width: 320px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.imagem {
    width: 100%;
    border-radius: 8px;
}

h1 {
    font-size: 22px;
    margin: 15px 0 10px;
}

.subtitulo {
    font-weight: bold;
}

.contato {
    margin: 10px 0;
    font-size: 14px;
}

.botoes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.zap {
    background: #25D366;
}

.pedidos {
    background: #333;
}

.btn:hover {
    opacity: 0.8;
}