/* ============================== RESET ==================================*/
*, 
*:after,
*:before { 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body{
    color: #747678;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    list-style-type: none;
}

h1 {
    font-weight: 800;
}

/* ############################### AJUSTES EM GERAL #################### */
/* ============================= CORES SESC =============================*/

.txt-cor-primaria_100 {
    color: #004c99;
}

.bg-cor-primaria_100 {
    background-color: #004c99;
}

.bg-cor-primaria_10 {
    background-color: #CCDBEB;
}

/* ==================================== BOTÕES ======================= */

.btn-outline-primaria-100 {
    border: 1px solid #004c99;
    color: #004c99;
}

.btn-outline-primaria-100:hover {
    background-color: #004c99;
    border: 1px solid #004c99;
    color: #fff;
}

.btn-outline-primaria-100:hover .icone-pq {
    filter: invert(100%) sepia(93%) saturate(0%) hue-rotate(163deg) brightness(102%) contrast(102%); /* https://codepen.io/sosuke/pen/Pjoqqp */    
}

.btn-cor-primaria_100 {
    background-color: #004c99;
    color: #fff;
}

.btn-cor-primaria_100:hover {
    background-color: #003c78;
}

.btn-responsivo {
    margin: 0 auto;
    width: 92%;
}

.icone-pq { /* ---------- ícone do botão Validar Documento ---------- */
    width: 20px;
    filter: invert(14%) sepia(91%) saturate(3269%) hue-rotate(196deg) brightness(95%) contrast(107%); /* https://codepen.io/sosuke/pen/Pjoqqp */
}

.icone-faq {
    position: relative;
    top: 6px;
}

.icone-faq-material {
    position: relative;
    top: 6px;
    width: 24px;
    filter: invert(50%) sepia(5%) saturate(190%) hue-rotate(169deg) brightness(90%) contrast(84%); /*https://codepen.io/sosuke/pen/Pjoqqp */
}

/* ##################################### SEÇÕES DO SITE ############################# */
/* ============================================= MENU NAVBAR ======================== */

#menu-topo {
    box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.54);
    -webkit-box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.54); 
}

#navbar-logo-sesc img{
    height: 50px;
}

#navbar-logo-sesc-mobile img{
    height: 60px;
}

.navbar-toggler {
    background-color: #F6BE00;
}

.navbar-toggler:hover, .navbar-toggler:active {
    background-color: #c69802;
}

#overlay { /* Overlay que abre quando o menu responsivo é acionado pelo toggler */
    background-color: rgba(0,0,0,0.5);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}

/* ============================================ DESTAQUE CAPA ======================= */

#imagem-destaque img {
    width: 70%;
}

#chamada-titulo { /* Frase principal */
    color: #004c99;
}

#chamada-texto { /* Segunda frase */
    font-size: 1.4em;
    line-height: 1.6em;
}

/* ============================================= RODAPÉ ==============================*/

#rodape {
    border-top: 8px solid #F6BE00; /* linha amarela decorativa sobre o rodapé */
}

#rodape img {
    height: 96px ;
}

/* ################################ COMPONENTES DO SITE ############################ */
/* =========================================== CARDS ================================*/

.card {
    -webkit-box-shadow: 7px 7px 9px 0px rgba(0,0,0,0.2); 
    box-shadow: 7px 7px 9px 0px rgba(0,0,0,0.2);
}

.card-icone {
    width: 90px;
    filter: invert(14%) sepia(91%) saturate(3269%) hue-rotate(196deg) brightness(95%) contrast(107%); /* https://codepen.io/sosuke/pen/Pjoqqp */
}

.card-title {
    font-size: 1.4rem;;
}

/* ====================================== ACCORDION COLLAPSE =========================*/

.accordion .card-header {
    cursor: pointer;
}

.accordion .btn-link {
    color: #515151;
    font-size: 1.2rem;
}

.accordion .btn-link:hover, .btn-link:active, btn-link:visited {
    text-decoration: none;
}

.accordion p {
    line-height: 28px;
}

/* =============================== SIDEBAR DRAWER RESPONSIVO MENU MOBILE =============*/

.sidenav {
    background-color: #FFF;
    height: 100%; 
    width: 0; /* 0 width - mudar com JavaScript */
    position: fixed; 
    top: 0; 
    left: 0;
    overflow-x: hidden; /* Desabilitar scroll horizontal */
    padding-top: 6px; 
    transition: 0.5s; /* 0.5 segundos de transição do slide */
    box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.54);
    -webkit-box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.54); 
    z-index: 99; 
}

.sidenav li {
    list-style: none;;
}

/* Botão fechar */
.sidenav .closebtn {
    color: #003c78;
    font-size: 4rem;
    margin-left: 50px;
    position: absolute;
    top: -20px;
    right: 20px;
}

  /* ######################### AJUSTES RESPONSIVOS ########################  */

@media screen and (max-width: 994px) {
    .card .card-title {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) { /* Apenas para tomar 90% da tela e aumentar um pouco */
    .chamada-btn {
        width: 90%;
        margin-bottom: 16px;
        padding: 12px 0;
    }

}