/* style.css */
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f7f6; }
.container { max-width: 900px; margin: 0 auto; padding: 20px; }
header { text-align: center; margin-bottom: 40px; }

.grid-patios { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

.card-patio {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card-patio:hover { transform: translateY(-5px); }
.vagas-numero { font-size: 2rem; font-weight: bold; color: #333; }

.status { margin: 15px 0; font-weight: bold; text-transform: uppercase; }
.status.aberto { color: #27ae60; }

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

button:disabled { background-color: #ccc; cursor: not-allowed; }
.card-patio.lotado { border-top: 5px solid #e74c3c; }

img.home{
    display: block;
    width: 50px;
    margin: auto;
    background:#ccc;
    border-radius: 50%;
}
img.home:hover{
    width: 90px;
    background: #9e9e9e;
    transition: 2s;
}