/* Importação de fontes: Irish Grover Bebas Neue, Rubik, Oswald, Bungee Spice, Roboto Slab*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bungee+Spice&family=Irish+Grover&family=Oswald:wght@200..700&family=Roboto+Slab:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*{
    box-sizing: border-box;
    vertical-align: middle;
    padding: 0px;
    margin: 0px;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    background-image: url("Images/Cachoeira.jpeg");
    position: relative;
}
@media (min-width: 360px){
    header{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 150px;
        background-color: rgba(0, 0, 0, 0.5);
        position:sticky;
        top: 0px;
        padding: 10px;
        z-index: 1;
    }
        #logo{
            height: 100%;
        }
        #ul_nav{
            display: flex;
            flex-direction: column;
            list-style: none;
            font-family: Verdana;
            font-size: 12px;
        }
            #ul_nav li{
                background-color: rgb(51, 105, 0);
                border-radius: 20px;
                padding: 5px 15px;
                margin: 3px;
            }
                #ul_nav li a{
                    color:rgb(255, 255, 255);
                    font-weight: bold;
                    text-decoration: none;
                }
                #ul_nav li a:hover{
                    text-decoration: underline;
                    cursor: pointer;
                }
    main{
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 10px;
    }
        .marker{
            position: absolute;
            top: -150px;
            visibility: hidden;
        }
        article{
            border-bottom: solid 1px;
            position: relative;
        }
            article h3{
                width: 50%;
                font-family: Bungee Spice;
                background-color: rgb(140, 255, 111);
                border-radius: 20px;
                padding: 5px;
                margin: 10px auto;
            }
            article p{
                width: 100%;
                font-family: Rubik;
                background-color: rgba(50,50,50,0.5);
                padding: 10px;
                margin: 10px auto;
            }
            #quem_nos_somos{
                border-top: solid 1px;
            }
                #ul_locais{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    list-style: none;
                }
                    #ul_locais li{
                        width: 100%;
                        background-color: rgb(145, 115, 51);
                        border-style: double;
                        overflow: hidden;
                        margin-bottom: 20px;
                    }
                        #ul_locais li figure{
                            display: flex;
                            flex-direction: column;
                        }
                        #ul_locais li figure figcaption{
                            font-size: 20px;
                            padding: 3px;
                        }
            #div_planos{
                display: flex;
                flex-direction: row;
                justify-content: space-around;
                font-family: Georgia;
                font-size: 14px;
                margin: 20px 0px;
            }
                #div_planos div{
                    background-color: rgb(114, 106, 106);
                    padding: 10px;
                }
                #div_planos div:hover{
                    scale: 1.5;
                }
            #div_contatos figure{
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content:center;
                font-size: 12px;
            }
    footer{
        width: 100%;
        font-size: 12px;
        background-color: rgba(0, 0, 0, 0.5);
        position:sticky;
        bottom:0px;
        padding:20px;
    }
}
@media (min-width:768px){
    header{
        height: 100px;
    }
        article p{
            width: 75%;
        }
        .marker{
            top:-100px;
        }
        #ul_nav{
            flex-direction: row;
        }
        #ul_locais{
            display: grid;
            grid-template-rows: 1r;
            grid-template-columns: 1fr 1fr 1fr;
        }
        #div_planos{
            justify-content: center;
            gap: 100px;
            font-size: 24px;
        }
}
