html,
body{
    margin:0;
    padding:0;
    width:100%;
    height:100%;
    font-family:Arial, Helvetica, sans-serif;
    overflow:hidden;
}

#map{
    position:absolute;
    top:60px;
    bottom:70px;
    left:0;
    right:0;
}

.topbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:60px;
    background:#173A2B;
    color:#fff;
    display:flex;
    align-items:center;
    padding:0 20px;
    z-index:1000;
    font-size:20px;
    font-weight:bold;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.bottom-menu{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    height:70px;
    background:#fff;
    display:flex;
    justify-content:space-around;
    align-items:center;
    box-shadow:0 -2px 10px rgba(0,0,0,.2);
    z-index:1000;
}

.bottom-menu button{
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
}

#info-panel,
#roteiro-panel{
    position:fixed;
    top:0;
    right:0;
    width:380px;
    max-width:100%;
    height:100%;
    background:#fff;
    transform:translateX(100%);
    transition:.3s;
    z-index:2000;
    overflow-y:auto;
    box-shadow:-5px 0 20px rgba(0,0,0,.25);
}

#info-panel.show,
#roteiro-panel.show{
    transform:translateX(0);
}

#close-panel,
#close-roteiro{
    position:absolute;
    top:15px;
    right:15px;
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
}

#panel-content,
#roteiro-content{
    padding:25px;
    padding-top:60px;
}

#panel-content img{
    width:100%;
    border-radius:12px;
    margin-bottom:20px;
}

#panel-content button{
    background:#173A2B;
    color:#fff;
    border:none;
    padding:12px 18px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    margin-top:10px;
}

#roteiro-btn{
    position:fixed;
    bottom:90px;
    right:20px;
    background:#173A2B;
    color:#fff;
    border:none;
    border-radius:40px;
    padding:15px 20px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    z-index:1500;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
}

#roteiro-count{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:24px;
    height:24px;
    border-radius:50%;
    background:#fff;
    color:#173A2B;
    margin-left:8px;
    font-weight:bold;
}
