@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

#nav-bar {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    background-color: white;
    align-items: center;
    z-index: 10;
  }

#nav-list{
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    list-style: none;
    width: 90%;
    height: 80%;
    padding-right: 75%;
    
}

#doctor-logo{
    display: flex;
    position: relative; 
    width: 10%;
    height: 90%;
    
}

#house-icon{
    display: flex;
    position: relative;
    padding-right: 0%;
    height: 35px;
    width: 50px;
    margin-bottom: 3px;
}

#calculator-icon{
    display: flex;
    position: relative;
    padding-right: 0%;
    height: 38px;
    width: 50px;
    margin-bottom: 3px;
}

#login-btn{
    display: flex;
    position: absolute;
    width: 130px;
    height: 30px;
    border-radius: 40px;
    margin-left: 80%;
    margin-top: 9px;
    padding: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.5s ease-in-out;
    justify-items: flex-end;
    
}

#login-btn:hover{
    background-color: #d6daddde;
}

/* Media Queries para Responsividade */

/* Tablet - 768px a 1024px */
@media screen and (max-width: 1024px) {
    #nav-bar {
        height: 12vh;
        background-color: #ffffff;;
    }
    
    #doctor-logo {
        width: 12%;
    }
    
    #login-btn {
        margin-left: 70%;
        width: 140px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Mobile - até 768px */
@media screen and (max-width: 768px) {
    #nav-bar {
        flex-direction: column;
        height: auto;
        min-height: 15vh;
        
        position: relative;
        justify-content: center;
        align-items: center;
    }
    
    #doctor-logo {
        width: 15%;
        max-width: 60px;
        height: auto;
        margin-bottom: 1rem;
    }
    
    #titulo_site {
        font-size: 1.5rem;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    #nav-list {
        width: 100%;
        padding: 0;
        justify-content: center;
        margin-top: 1rem;
    }
    
    #login-btn {
        position: relative;
        margin: 0;
        width: 150px;
        height: 40px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile pequeno - até 480px */
@media screen and (max-width: 480px) {
    #nav-bar {
        
        min-height: 12vh;
    }
    
    #doctor-logo {
        width: 20%;
        max-width: 50px;
    }
    
    #titulo_site {
        font-size: 1.3rem;
    }
    
    #login-btn {
        width: 130px;
        height: 35px;
        font-size: 0.9rem;
    }
}