html, body{
    width: 100%;
    height: 100%;
}
body{
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}
p, a, h1, h2, h3, h4, h5, h6, li, small, div, span, label, font, input, button, textarea, select, button{
    margin: 0px;
    padding: 0px;
    font-family: "Arial", serif;
    letter-spacing: 0.02em;
    line-height: 1.2em;
}


main{
    height: 100%;
}

main section.principal{
    display: flex;
    height: 100%;
}

main section.principal > div{
    width: 33.3%;
    height: 100%;
}
main section.principal .bloco-1{
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
}
main section.principal .bloco-1 .svg.logo{
    width: 280px;
    max-width: 90%;
}
main section.principal .bloco-2{
    background-color: #00192D;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 70px;
    box-sizing: border-box;
}
main section.principal .bloco-2 .conteudo{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
main section.principal .bloco-2 .conteudo h2{
    color: #fff;
    padding-right: 55px;
    font-size: 32px;
    font-weight: bold;
}
main section.principal .bloco-2 .conteudo .informacoes{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
main section.principal .bloco-2 .conteudo .informacoes > a,
main section.principal .bloco-2 .conteudo .informacoes > div{
    display: flex;
    gap: 8px;
    text-decoration: none;
    transition: .2s;
}
main section.principal .bloco-2 .conteudo .informacoes > a:hover{
    opacity: .8;
    transition: .2s;
}
main section.principal .bloco-2 .conteudo .informacoes .icone{
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
}
main section.principal .bloco-2 .conteudo .informacoes .icone .svg{
    max-width: 100%;
    max-height: 100%;
}
main section.principal .bloco-2 .conteudo .informacoes span{
    color: #fff;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    margin-top: 3px;
    flex: 1;
    line-height: 1.3em;
}
main section.principal .bloco-3{
    background-image: url('../img/bg-predios-vertical.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}



.link-whatsapp-flutuante{
    position: fixed;
    right: 25px;
    bottom: 20px;
}
.link-whatsapp-flutuante a{
    background: none;
    border-radius: 100%;
    cursor: pointer;
    transition: .2s;
    display: inline-block;
}
.link-whatsapp-flutuante a:hover{
    opacity: .8;
    transition: .2s;
    transform: scale(1.08);
}
.link-whatsapp-flutuante a .svg{
    width: 56px;
    transform: translate(1%,0%);
}


section#screen-loading{
    background: #00192D;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
section#screen-loading .svg.logo{
    width: 120px;
    animation: pulse 1.5s ease-in-out infinite; /* AnimaÃ§Ã£o de pulsaÃ§Ã£o */
}
section#screen-loading .loading-bar{
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background-color: #BF7F2A;
    width: 100%;
    animation: loading 1s linear; /* AnimaÃ§Ã£o da barra de carregamento */
}


/* AnimaÃ§Ã£o de piscada do logo */
@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* AnimaÃ§Ã£o da barra de carregamento */
@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

