/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 03/02/2021, 17:27:37
    Author     : wellington
*/

body {
    margin: 0;
    margin: 0px;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--surface-a);
    font-family: var(--font-family);
    font-weight: normal;
    font-size: 14px;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --primary-color: #1d4d49;
}



/* Mudancas para o THEME */
body .ui-tabmenu .ui-tabmenu-nav .ui-tabmenuitem.ui-state-active {
    background: #1c4b43;
    border-color: #1c4b43;
}

/* FIM - Mudancas para o THEME*/

.layout-topbar {
    background-color: #f4f4f4;
    padding: 0;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 997;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--surface-d);
    align-items: center;
    padding: 0 35px;
}
.menu-topo{
    width: 85%;
    /*height: 100%;*/
    max-width: 1366px;
    margin: 0 auto;
}

.menu-topo-left{
    text-align: left;
    /*display: flex;*/
    padding-top: 12px;
}
.menu-topo-right{
    text-align: right;
    /*background-color: #1b5141;
    color: #fff;*/
    /*font-size: 18px;*/
}

.link-logo{
    text-decoration: none !important;
}

.texto-logo{
    font-size: 2.0rem;
    color: #607274;
    border: 3px solid #1d5047;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.50);
    /*padding: 3px;*/
    background-color: #fff;

}

.layout-content {
    background-color: var(--surface-b);
    color: var(--text-color);
    padding: 50px 0 0 0;

}
.content-section {
    padding: 2rem;
}

.layout-footer {
    font-size: 1rem;
    padding: 2rem;
    background-color: #ff5656;
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    color: #fff;
}
.link-footer{
    text-decoration: none;
    color: #333333 !important;
}



.banner-img{
    max-width: 100%;
    height: auto;
}

.content-text-banner{

}
#tab-menu-topo{
    font-size: 1.5rem;
}
#tab-menu-topo .ui-icon {
    font-size: 1.5rem;
}    

.h1-padrao{
    text-align: center;
    color: #808080;
}
.h5-padrao{
    text-align: center;
    color: #808080;
    width: 80%;
    font-weight: 550;
}

.div-whatsapp{
    position:fixed;
    right:7px;
    bottom:125px;
    z-index: 12000;

}
.div-whatsapp ul {
    padding:0px;
    margin:0px;
    background-color:transparent;
    list-style:none;
}
.div-whatsapp ul li { 
    display: inline; 
}

.link-whatsapp-texto{
    background-color: #00c537;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 1em 2em -.5em rgba(0,0,0,.35);
    padding: 6px 8px 6px 7px;
    text-decoration: none;
}

.link-whatsapp-icone{
    color: #ffffff;
    background-color: #00c537;    
    border-radius: 25px;
    box-shadow: 0 1em 2em -.5em rgba(0,0,0,.35);
    padding: 6px 8px 6px 7px;
    text-decoration: none;
    font-size: 2rem;
    color: #ffffff;
}
.link-whatsapp:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);

}

.divider-mobile{
    display: none !important;
}


@media(max-width: 576px){
    .menu-topo {
        width: 100%;
    }
    .content-section {
        padding: 0.5rem;
    }

    #tab-menu-topo{
        display: none;
    }
    .layout-content {
        padding: 70px 0 0 0;
    }    

    .divider-desktop{
        display: none !important;
    }

    .divider-mobile{
        display: block !important;
    }
}