
.desloc1{
    margin-left: 30px;
}

.button{
    font-size: 18px;
    width: 100px;
    height: 50px;
    background-color: #3963af;
    color: white;
    padding: 10px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
   
}

.buttonm{
    font-size: 18px;
    width: 150px;
    height: 50px;
    background-color: #3963af;
    color: white;
    padding: 10px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
    
}

.texthead{
    font-size: 18px ;
    padding: 20px 18px ;
    margin-right:  40px ;
    margin-left: 40px ;
}

/* 1. O container que envolve a lista e a imagem */
.container-lista {
            display: flex;         
            align-items: center;   
           
            justify-content: center;
            
            gap: 40px;             
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        /* 2. A lista de parâmetros */
        .lista-parametros {
                  
            list-style-type: none; 
            padding-left: 0;
            margin-bottom: 0;      
        }
/* 1. O container que envolve a lista e a imagem */ 
.container-lista { 
    display: flex;         
    align-items: center;   
    justify-content: center; 
    gap: 40px;             
    margin-top: 2rem; 
    margin-bottom: 2rem; 
    flex-wrap: wrap
} 

/* 2. A lista de parâmetros */ 
.lista-parametros {          
    list-style-type: none; 
    padding-left: 0; 
    margin-bottom: 0; 
    flex-shrink: 0     
} 


/* 3. Novo contêiner para as imagens */
.container-imagens-verticais {
    display: flex;              
    flex-direction: row;     
    gap: 20px;                  
               
}

.container-imagem-legenda {
    display: flex;
    flex-direction: column; 
    align-items: center;    
}

#vistaFrente {
    width: 400px;               
    height: 300px;               
    /* border: 1px solid #ccc;      */
    border: none;
    box-shadow: none;
}

/* 4. Estilo para as imagens empilhadas */
.imagem-empilhada { 
    width: 250px;
    height: auto;
    /* border: 1px solid #ccc;
    border-radius: 4px;     */
    border: none;
    box-shadow: none;
}

.imagem-legenda {
    width: 450px;               
    height: auto;                
    /* border: 1px solid #ccc;      */
    border: none;
    box-shadow: none;
    margin-top: 10px;                
    font-size: 4px;            
}

  table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  th, td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 12px;
  }

  thead th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  tbody tr:hover {
    background-color: #f1f1f1;
  }




@media (max-width: 768px) {
    .container-lista {
        flex-direction: column; 
        align-items: center;    
    }

    .container-imagens-verticais {
        flex-direction: column; 
        gap: 40px;              
    }

    .lista-parametros {
        text-align: center; 
        margin-bottom: 20px; 
    }

    .imagem-empilhada,
    .imagem-legenda {
        width: 100%; 
        max-width: 250px; 
        border: none;
    box-shadow: none;
    }
}