/* public/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.card-planta {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.status-badge {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 9999px;
}

/* Animação para o Sistema Online */
.pulse-online {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
