/* Estilos para o Pop-up de Informações */
.popup.hidden {
    display: none;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fundo escuro semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Certifique-se de que está acima de outros elementos */
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.popup-content h3 {
    color: #297e43;
}

.popup-content img {
    margin-top: 10px;
    max-width: 100%;
    border-radius: 5px;
}

/* Ícone de Praga - Efeito de Hover */
.praga-item {
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

/* Muda a cor do ícone e aplica o efeito de aumento */
.praga-item:hover .praga-icon {
    color: #FF5733 !important; /* Cor nova*/
    transform: scale(1.2); /* Aumenta o ícone no hover */
}

.card {
    background-color: #f5f5f5; /* Cinza suave */
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
