body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 30px;
    background-color: #668566;
}

* {
    cursor: url("Mouses/casaxeira_mouse.png") 16 16, auto !important;
}

/* CURSOR COM ÁGUA */
body.cursor-gota,
body.cursor-gota * {
    cursor: url('Mouses/agua_mouse.png') 16 16, auto !important;
}
.tela-jogo {
    display: flex;
    justify-content: flex-start; 
    align-items: center;        
    gap: 80px;                  
    max-width: 1400px;
    margin: 100px auto 0 100px;   
    padding: 0 20px;
}

#regador-container {
    flex-shrink: 0;
}

#regador {
    width: 150px;
    height: 150px;
}

.jardim {
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex-grow: 1;
}

.canteiro {
   background-image: url('Img/meu_canteiro.png');
   border: 4px solid #250b03;
   padding: 10px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
   background-image: url('Img/terra.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
       border-radius: 15px;
       image-rendering: pixelated;
    padding: 30px;
    width: 900px;               
    max-width: 100%;
    background-color: transparent;
    
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    box-sizing: border-box;
}

.canteiro h2 {
    margin: 0;
    color: #5d4037;
}

.plantas-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-end; 
    width: 100%;
}

.planta {
    width: 160px !important;    
    height: 128px !important;     
}

.item {
    transition: transform 0.2s ease;
    image-rendering: pixelated;
}

.item:hover {
    transform: scale(1.08);
    transition: transform 0.3s ease;
    filter: drop-shadow(4px 0 0 rgb(223, 237, 255)) 
            drop-shadow(0 4px 0 rgb(223, 237, 255)) 
            drop-shadow(-4px 0 0 rgb(223, 237, 255)) 
            drop-shadow(0 -4px 0 rgb(223, 237, 255));
}

.aviso-flutuante {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(93, 64, 55, 0.95);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    display: none;
    z-index: 9999;
    font-size: 16px;
    border: 2px solid #8d6e63;
}