html {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    display: none; /* Oculta a barra de rolagem no Chrome e no Safari */
}

body{
    color: #F2F0F5;
    font-family: arial;
    background-image: linear-gradient(to right, #1C0436, #6A0572);
}

header{ 
    width: 98.7%;
    height: 100%;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
    z-index: 9999;
    text-align: center;
    
}


.logo{
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    display: flex;
      
}

#img-ortolab {
    cursor: pointer; /* Altera o cursor para um ponteiro ao passar o mouse sobre o link */
}

.logo a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#rodape{
    background-color: #3C0549; 
    color: white; 
    text-align: center; 
    padding: 10px;
    border-radius: 10px;
    border: none;
    position: fixed;
    bottom: 0;
    left: 3px;
    width: 98.7%;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
}


main {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 110px;
}

#container-search {
    text-align: center;
    margin: 20px auto;
}

#servico{
    height: 50px;
    font-size: 15px;
}


.searching {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    
    border-radius: 8px;
}

select{
    background-color: #1C0436;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

option{
    background-color: #762ccf;
    font-size: 16px;
    cursor: pointer;
}

option:last-child {
    border-bottom: none;
}

#container-search label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#container-search select {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #fff;
    width: 300px;
}

#search-button, #close-button {
    padding: 8px 15px;
    border-radius: 5px;
    background-color: #3E1F65;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 5px;
}

#search-button:hover,#close-button:hover {
    background-color: #762ccf;
}

#resultados{
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px black;
}

@media (max-width: 768px) {
    header{
        width: 97.3%;
        right: 4px;
        position: relative; 
    }

    .logo a{
        font-size: 12px;
    }

    #rodape{
        width: 96.2%;
    }

    .logo img {
        height: 50px;
    }   
}

@media screen and (max-width: 280px) and (max-height: 1354px){
    body {
        font-size: 12px; /* Reduz o tamanho da fonte para telas menores */
    }

    header {
        width: 96.3%; /* Ajuste na largura do cabeçalho */
    }

    #rodape {
        width: 95.3%; /* Ajuste na largura do rodapé */
        left: 0;
    }

    #container-search select {
        width: 200px;
    }

    .logo a {
        font-size: 10px;
    }

    #img-ortolab {
        width: 110px;
        height: 35px;
    }

}