﻿/* PROJETO WEB - ESTRUTURA DA MASTER PAGE */

body {
    background-image: url("../Images/background.jpg");
    background-size: auto;
}

.barra-fixa {
    position: fixed;
    width: 100%;
    height: 81px;
    background-color: #ffffffdb;
    z-index: 100;
}

.content-wrap {
    max-width: 1024px;
    margin: auto;
    /* permite que elementos tenham posições ABSOLUTAS dentro do cabeçalho */
    position: relative;
}

/* CABEÇALHO  */
.cabecalho {
    padding: 10px;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    margin-bottom: 5vh;
    background-color: rgb(235 187 114 / 75%);
    /* border-bottom: 1px solid #808080; */
}

#logomarca {
    width: 80px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.barra-titulo {
    position: absolute;
    top: 0;
    left: 81px;
    bottom: 40px;
    height: 40px;
    padding: 8px;
    width: 100%;
    text-align: center;
    font-size: 20px;
}

.barra-menu {
    margin-left: 30vw;
}

#titulo {
    margin-left: 42.3vw;
}

.barra-menu a {
    color: #333333;
    font-size: 14px;
    margin-left: 4px;
    margin-right: 4px;
    padding-bottom: 2px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
}

        .barra-menu a:hover {
            color: black;
            border-bottom: 3px solid black;
        }

/* MENU PARA CELULAR **************************/
/* botões exibidos no menu mobile */

.menu-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: 0px;
    bottom: 0px;
    background-color: #ffffff;
    width: 70%;
    border-right: 1px solid #e2e2e2;
    z-index: 102 !important;
}

    .menu-mobile a {
        width: 100%;
        display: inline-block;
        line-height: 40px;
        color: inherit !important;
        text-align: left;
        padding-left: 24px;
        text-decoration: none;
        font-size: 0.875em; /* 14px */
        font-weight: 600;
    }

        .menu-mobile a:hover {
            background-color: #e2e2e2;
        }

    .menu-mobile i {
        width: 26px;
        overflow: hidden;
        padding-right: 10px;
    }

.menu-mobile-buttons {
    display: none;
    overflow: hidden;
    font-size: 1.3em;
    float: left;
}

    .menu-mobile-buttons i {
        line-height: 150%;
        cursor: pointer;
        padding-left: 10px;
        padding-right: 10px;
    }

/* botão para fechar o menu mobile */
.menu-mobile-close {
    font-size: 1.4em;
    text-align: left;
    padding-left: 24px;
    border-bottom: 1px solid;
    border-bottom-color: black;
    height: var(--header-height);
}

    .menu-mobile-close i {
        line-height: 150%;
        cursor: pointer;
    }

.conteudo {
    min-height: 1300px;
}

.rodape {
    background-color: rgb(235 187 114 / 75%);
    padding: 10px 0;
    text-align: center;
}

.rodape h3 {
    margin: 10px 0;
}

.descricao {
    text-align: center;
    background-color: rgb(235 187 114 / 75%);
    margin-bottom: 10vh;
    padding: 15px;
    -moz-border-radius: 0.4rem;
    -webkit-border-radius: 0.4rem;
    border-radius: 0.4rem;
}

.descricao img {
    width: 12vw;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.descricao p {
    text-align: left;
    font-size: 1.2pc;
}

.descricao table {
    margin: 0 auto;
}