/*
color letras: #2C3E50;
*/

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html, body{
    width: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #F7F7F7;
    color: #2C3E50;
}

hr{
    border: 0px;
    border-bottom: 1px #e5e5e5 solid;
}
ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: #2C3E50;
}

img, iframe, video, audio{
    max-width: 100%;
}


/* ============ ELEMENTOS  =============*/

.container-full{
    position: relative;
    width: 100%;
}

.container{
    display: table;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}


.container-slide{
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}





/*======= HEADER =========*/
.header{
    padding: 10px 0px 20px 10px;
}
.header-background{
    background-image: url(../imagens/header-background-new.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
.empresa-info > li{
    display: inline-block;
    vertical-align: bottom;
    font-weight: 700;
    margin-right: 10px;
}
.empresa-nome li:nth-child(1){/*paroquia*/
    font-size: 18px;
}
.empresa-nome li:nth-child(2){/* nome*/
    font-size: 34px;
}




.header-contact{
    position: absolute;
    right: 0px;
    font-size: 14px;
}


.header-social{
    position: absolute;
    right: 0px;
    margin-top: 25px;
}

.header-social li{
    display: inline-block;
}





.header-search{
    float: right;
    margin-top: -40px;
}

.header-search a{
    position: relative;
    background-color: #7F3D23;
    display: block;
    width: 38px; 
    height: 38px;
    display: inline-block;
    vertical-align: top;
    margin-left: -10px;

    text-align: center;
    line-height: 38px;
}

.header-search i{
    color: #fff;
    font-size: 24px;
    vertical-align: middle;
}


.header-search input[type='text']{
    border: 1px #CCCCCC solid;
    outline: none;
    padding: 7px;
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: italic;
}


.header-search input[type='submit']{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%; 
    height: 100%;
    opacity: 0;
}




/*============ MENU =============*/

#icon-menu{
    display: none;
    color: #fff;
    font-size: 36px;
    margin-left: 5px;
}
#icon-menu:before{
    vertical-align: bottom;
}



.menu-container{
    background-color: #3C2100;
    border-bottom: 3px #572F00 solid;
}
.menu {
    width: 100%;
    padding-bottom: 0px;
    display: table;
}
.menu > li{
    float: left;
    display: block;
    cursor: pointer;
    width: 14%;
}
.menu > li:hover > a{
    box-shadow: inset 0px 4px 0px #8F2719;
    background-color: #CE3B16;
    color: #fff;
}

.menu > li > a{
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    padding: 15px;
    font-weight: 700;
    /*border-right: 1px #305da2 solid;*/
}

/**/

.menu > li:hover .sub-menu{
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
}

.sub-menu{
    margin-top: 30px;
    position: absolute;
    padding: 3px 3px 3px 0px;
    background-color: #fefefe;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    border-bottom: 3px #8F2719 solid;
}
.sub-menu li{
    float: none;
}

.sub-menu li a{
    border-bottom: 1px #f8f8f8 solid;
    color: #3a3a46;
    display: block;
    padding: 15px 10px;
    min-width: 160px;
    transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
}
.sub-menu li:hover a{
    min-width: 155px;
    margin-left: 5px;
    box-shadow: -5px 0px 0px #CE3B16;
}
.sub-menu li:hover{
    background-color: #f1f1f1;
}


.sub-sub-menu{
    margin-left: 170px;
    position: absolute;
    padding: 3px 3px 3px 0px;
    background-color: #fefefe;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: 9999;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.sub-menu > li:hover .sub-sub-menu{
    opacity: 1;
    visibility: visible;
    margin-top: -52px;
}






/*========== SLIDE PRINCIPAL ==============*/

#slide-principal .item img{
    display: block;
    width: 100%;
    height: auto;
}





/* ========= COMUM ========*/

.titulo-categoria{
    position: relative;
    margin-bottom: 20px;
}

.titulo-categoria:before{
    content: "";
    width: 20px;
    height: 4px;
    background-color: #D61214;
    position: absolute;
    bottom: -3px;
}


.titulo-categoria h1{
    font-size: 18px;
    font-style: italic;
    display: inline;
}

.titulo-categoria i{
    font-size: 12px;
}

.titulo-categoria span{
    font-size: 14px;
    color: #D61214;
    margin-left: 10px;
    font-weight: 700;
    font-style: italic;
    transition: all 0.2s ease-out;
}

.titulo-categoria:hover span{
    margin-left: 15px;
    display: inline;
}



.pd-10{
    padding: 10px;
}

.pd-5{
    padding: 5px;
}

.clear{
    width: 100%;
    display: block;
    clear: both;
    height: 1px;
}

.clear-10{
    width: 100%;
    display: block;
    clear: both;
    height: 10px;
}
.clear-20{
    width: 100%;
    display: block;
    clear: both;
    height: 20px;
}


.float-r{
    float: right;
    display: table;
}

.float-l{
    float: left;
    display: table;
}

.btn-contrast{
    display: block;
    float: right;
    display: table;
    border-radius: 3px;
    background-color: #fff;
    color: #572F00;
    font-size: 14px;
    font-style: italic;
    padding: 5px;
    text-align: center;
    border: 1px rgba(255,255,255,0) solid;
    transition: all 0.2s ease-out;
}

.btn-contrast:hover{
    background-color: #572F00;
    color: #fff;
    border: 1px #fff solid;
}


.btn-contrast-2{
    position: relative;
    display: block;
    display: table;
    border-radius: 3px;
    background-color: #A22E19;
    color: #fff;
    font-size: 14px;
    font-style: italic;
    padding: 10px;
    text-align: center;
    border: 1px rgba(255,255,255,0) solid;
    transition: all 0.2s ease-out;
}

.btn-contrast-2:hover{
    background-color: #572F00;
    color: #fff;
    border: 1px #fff solid;
}


.btn-filtro{
    display: inline-block;
    border-radius: 3px;
    background-color: #A22E19;
    color: #fff;
    font-size: 14px;
    font-style: italic;
    padding: 10px;
    text-align: center;
    border: 1px rgba(255,255,255,0) solid;
    transition: all 0.2s ease-out;
}

.btn-filtro:hover{
    background-color: #572F00;
    color: #fff;
    border: 1px #fff solid;
}


.btn-download{
    display: block;
    padding: 5px 0px;
    width: 80px;
    text-align: center;
    background-color: #A22E19;
    color: #fff;
    border-radius: 3px;
    transition: all 0.2s ease-out;
}
.btn-download:hover{
    background-color: #8F2719;
}



/*======== NOTICIAS PARÓQUIA =========*/

.noticias-paroquia-container-index{
    width: 100%;
    max-width: 650px;
    display: table;
    float: left;
}



.noticia-paroquia-item-index{
    width: 100%;
    max-width: 300px;
    float: left;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
    margin-bottom: 30px;
}

.noticia-paroquia-item-index:nth-child(odd){
    float: right;
}


.noticia-paroquia-item-index figure{
    height: 200px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.noticia-paroquia-item-index img{
    width: 100%;
}

.noticia-paroquia-item-index h2{
    font-size: 20px;
    margin-bottom: 5px;
}

.noticia-paroquia-item-index time{
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.noticia-paroquia-item-index article{
    text-align: justify;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 300;
}










/*============= NOTÍCIAS DA ARQUIDIOCESE  ==================*/


.noticias-mundo-container-index{
    width: 100%;
    max-width: 300px;
    display: table;
    float: right;
}

.noticia-mundo-item-index{
    width: 100%;
    max-width: 300px;
    display: table;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
    margin-bottom: 30px;
}

.noticia-mundo-item-index figure{
    float: left;
    margin-right: 5px;
    height: 100px;
    width: 120px;
    overflow: hidden;
}

.noticia-mundo-item-index img{
    height: 120%;
    max-width: none;
}

.noticia-mundo-item-index h2{
    font-size: 18px;
}

.noticia-mundo-item-index time{
    font-size: 14px;
}








/*============= AGENDA ==================*/

.agenda-container-index{
    width: 100%;
    max-width: 300px;
    display: table;
    float: left;
    margin-bottom: 30px;
    margin-right: 5%; /*----------------------------*/
}

.agenda-item-index{
    width: 100%;
    max-width: 300px;
    display: table;
    margin-bottom: 10px;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}

.agenda-item-index span{
    display: block;
    width: 90px;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: #D61214;
    float: left;
    margin-right: 5px;
}

.agenda-item-index h2{
    font-size: 18px;
    padding: 3px;
}









/*============= MISSA ==================*/


.missa-container-index{
    width: 100%;
    max-width: 300px;
    display: table;
    float: left;
    margin-bottom: 30px;
    margin-right: 5%; /*----------------------------*/
}

.missa-container-index ul{
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}

.missa-container-index ul li:nth-child(1){
    display: block;
    padding: 12px;
    text-align: center;
    color: #fff;
    background-color: #572F00;
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
}

.missa-container-index ul li{
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    padding: 10px;
    text-align: center;
    border-bottom: 1px #efefef solid;
}





/*============= ATENDIMENTO ==================*/


.atendimento-container-index{
    width: 100%;
    max-width: 300px;
    display: table;
    float: left;
    margin-bottom: 30px;
}


.atendimento-container-index ul{
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}

.atendimento-container-index ul .dia{
    display: block;
    padding: 5px;
    text-align: center;
    color: #fff;
    background-color: #572F00;
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
}

.atendimento-container-index ul li:not(.dia){
    font-size: 22px;
    font-style: italic;
    padding: 10px;
    text-align: center;
}









/*============= PALAVRA PÁROCO ==================*/

.palavra-paroco-background{
    background-image: url(../imagens/palavra-background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}


.palavra-paroco-color{
    background-color: rgba(110, 39, 0, 0.9);
}

.palavra-padre-index{
    color: #fff;
    display: table;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 10px;
}

.palavra-padre-index .padre-info{
    margin-top: -50px;
    text-align: center;
    width: 250px;
    float: left;
    display: table;
}

.palavra-padre-index .padre-info li:nth-child(1) figure{ /*imagem*/
    background-color: #F7F7F7;
    padding: 5px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 10px;
}

.palavra-padre-index .padre-info li:nth-child(1) img{
    width: 100%;
}

.palavra-padre-index .padre-info h1{ /*palavra do pároco*/
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
}

.palavra-padre-index .padre-info h2{ /*nome do pároco*/
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
}




.palavra-padre-index .palavra{
    margin-top: 15px;
}

.palavra-padre-index .palavra h2{ /* titulo da palavra */
    font-size: 26px;
    margin-bottom: 10px;
}

.palavra-padre-index .palavra time{
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.palavra-padre-index .palavra article{/* resumo da palavra */
    font-weight: 300;
    display: table; /* para não escorrer para baixo do nome do padre */
    margin-bottom: 10px;
}







/*============= SANTO DO DIA ==================*/

.santo-container-index{
    width: 100%;
    max-width: 300px;
    display: table;
    float: left;
    margin-bottom: 30px;
    margin-right: 5%; /*----------------------------*/
}

.santo-index{
    width: 100%;
    max-width: 300px;
    display: table;
    margin-bottom: 30px;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}


.santo-index figure{
    float: left;
    display: table;
    height: 130px;
    width: 100px;
    overflow: hidden;
    margin-right: 5px;
}

.santo-index img{
    width: 100%;
}

.santo-index h2{
    font-size: 24px;
    margin-bottom: 5px;
}

.santo-index span{
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}
.santo-index article{
    display: table;
    font-size: 14px;
}






/*============= SACRAMENTO ==================*/


.sacramento-container-index{
    width: 100%;
    max-width: 300px;
    display: table;
    float: left;
    margin-bottom: 30px;
    margin-right: 5%; /*----------------------------*/
}

.sacramento-container-index figure{
    padding: 3px;
    width: 300px;
    height: 133px;
    overflow: hidden;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}

.sacramento-container-index img{
    width: 100%;
}







/*============= SACRAMENTO ==================*/


.liturgia-container-index{
    width: 100%;
    max-width: 300px;
    display: table;
    float: left;
    margin-bottom: 30px;
}

.liturgia-container-index figure{
    padding: 3px;
    width: 300px;
    height: 133px;
    overflow: hidden;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}

.liturgia-container-index img{
    width: 100%;
}













/*============= FOTOS ==================*/


.fotos-container-index{
    width: 100%;
    max-width: 475px;
    display: table;
    float: left;
    margin-right: 5%;
}

.fotos-index{
    text-align: center;
    width: 100%;
    max-width: 475px;
    padding: 10px 12px;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}


.fotos-index figure{
    display: inline-block;
    vertical-align: top;
    width: 137px;
    height: 95px;
    margin: 5px;
    overflow: hidden;
    background-color: #000;
    background-image: url(../imagens/zoom.fw.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.fotos-index img{
    width: 100%;
    transition: all 0.2s ease-out;
}

.fotos-index figure:hover img{
    opacity: 0.5;
}












/*============= VÍDEOS ==================*/


.videos-container-index{
    display: table;
    float: left;
    width: 100%;
    max-width: 475px;
}


.videos-itens-container-index{
    width: 100%;
    max-width: 475px;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}


.videos-item-index{
    width: 235px;
    padding: 15px;
    display: inline-block;
    vertical-align: top;
}

.videos-item-index figure{
    width: 100%;
    height: 155px;
    overflow: hidden;
    background-color: #000;
    background-image: url(../imagens/play.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.videos-item-index img{
    width: 100%;
    opacity: 0.7;
    transition: all 0.2s ease-out;
}

.videos-item-index figure:hover img{
    opacity: 0.4;
}

.videos-item-index h2{
    font-size: 18px;
}

.videos-item-index time{
    font-size: 14px;
}








/*============= BANNERS - index ==================*/


#banners .item{
    position: relative;
    margin: 5px;
    text-align: center;
}

#banners figure{
    position: relative;
    width: 200px;
    height: 150px;
    overflow: hidden;
    margin: auto;
}

#banners img{
    width: 100%;
}


#banners figure span{
    position: absolute;
    width: 100%;
    bottom: 0px;
    display: block;
    padding: 5px;
    font-size: 14px;
    color: #fff;
    background-color: rgba(0,0,0, 0.8);
}






/*============= ANIVERSARIANTES ==================*/

#h1-aniversario:after{
    content: url(../imagens/aniversario.png);
}

#aniversariantes .item{
    background: #3498DB;
    padding: 20px 5px;
    height: 100px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}

#aniversariantes .item span:first-child{
    font-size: 18px;
    display: block;
    font-weight: 300;
}






/*============= FOOTER ==================*/

.footer{
    background-color: #572F00;
    padding: 20px 0px;
}


.footerNews{
    float: left;
    color: #fff;
    font-weight: 300;
}
.footerNews li{
    margin-bottom: 5px;
}
.footerNews input[type="email"]{
    width: 300px;
    padding: 10px;
    border: 0px;
    outline: none;



    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: italic;
}
.footerNews li:nth-child(1){/* titulo newsletter */
    font-weight: 700;
    font-size: 28px;
    font-style: italic;
}
.footerNews li:nth-child(2){/* informaÃ§Ã£o */
    font-size: 16px;
}
.footerNews li:nth-child(4){ /* chkbox */
    font-size: 14px;
}




.footer-info{
    color: #fff;
    float: right;
    font-weight: 300;
}
.footer-info li{
    margin-bottom: 5px;
}
.footer-info li:nth-child(1){/* Nome */
    font-size: 26px;
    font-weight: 700;
}
.footer-info li:nth-child(2){/* mitra */
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
}
.footer-info li:nth-child(3){/* cep */

}
.footer-info li:nth-child(4){/* caixa posta */

}
.footer-info li:nth-child(5){/* email */

}
.footer-info li:nth-child(1){/* fone */

}



.desenvolvido{
    padding: 5px 0px;
    text-align: center;
}







/*   ==========================================================================
                        ELEMENTOS DAS OUTRAS PÁGINAS
===============================================================================*/

/* CONTENT */
.txt-left{
    text-align: left;
}
.txt-justify{
    text-align: justify;
}
.txt-center{
    text-align: center;
}

.content{
    font-weight: 300;
    line-height: 140%;
    position: relative;
    width: 100%;
    max-width: 730px;
    padding: 10px;
    padding-bottom: 50px;
    float: left;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}

.content header ~ img,
.content header ~ video,
.content header ~ iframe,
.content header ~ audio{
    max-width: 100% !important;
    padding: 5px;
}

/* SIDE-BAR */
.side-bar{
    width: 100%;
    max-width: 240px;
    float: right;
}



.side-bar .item-banner{
    margin-bottom: 30px;    
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}

.side-bar .item-banner .titulo-banner{
    padding: 5px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    background-color: #572F00;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

/*------------------------------------------------------------------------------*/


/* TABELA */
.td-5 td{
    padding: 5px;
}
.td-10 td{
    padding: 10px;
}

.zebra-y{
    width: 100%;
}

.zebra-y tr td:first-child{
    background-color: #F6BB42;
    font-weight: 400;
    color: #fff;
}
.zebra-y tr:nth-child(odd) td:not(:first-child){
    background-color: #f4f4f4;
}

.zebra-x th{
    color: #fff;
    background-color: #572F00;
    padding: 10px;
    text-align: left;
}

.zebra-x tr:not(:first-child):nth-child(odd){
    background-color: #f4f4f4;
}

.zebra-x tr:not(:first-child):hover{
    background-color: #e5e5e5;
}


.table-contato{
    width: 100%;
}
.table-contato label{
    font-weight: 700;
}
.table-contato input[type="text"], textarea{
    border: 1px #D4D4D4 solid;
    outline: 0px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    font-family: 'Roboto', sans-serif;
}

.table-contato input[type="text"]:focus, textarea:focus{
    box-shadow: 0px 0px 1px #f00;
}

/* FIM TABELA*/








.breadcrumb{
    margin-bottom: 30px;
    text-align: left;
}
.breadcrumb li{
    display: inline-block;
    vertical-align: top;
}
.breadcrumb li,
.breadcrumb a{
    color: #aaa;
    font-weight: 300;
}
.breadcrumb a:hover{
    text-decoration: underline;
}


.header-article{
    text-align: left;
}

.header-article h1{
    font-size: 34px;
    margin-bottom: 25px;
    line-height: 110%;
}

.header-article time{
    font-size: 14px;
    vertical-align: sub;
}

.social-share{
    float: right;
    display: table;
}
.social-share li{
    display: inline-block;
    vertical-align: top;
    margin: 0px 3px;
}







/*  TABS  */

/*----- Tab Links -----*/
/* Clearfix */
.tab-links:after {
    display:block;
    clear:both;
    content:'';
}

.tab-links li {
    margin:0px 4px 0px 0px;
    float:left;
    list-style:none;
}

.tab-links a {
    color: #fff;
    font-family: 'Open Sans Condensed', sans-serif;
    padding:10px 0px;
    display:inline-block;
    background-color: #FFCE54;
    font-size:16px;
    font-weight:600;
    transition:all linear 0.15s;
    text-decoration: none;
    width: 90px;
    text-align: center;
}

@media screen and (max-width: 694px){

    .tab-links a{
        margin-bottom: 10px;
    }

}

.tab-links a:hover {
    background:#F6BB42;
    text-decoration:none;
}
li.active a{
    background-color: #F6BB42;
}
li.active a, li.active a:hover {
    box-shadow: 0 -4px 0px #e6aa31;
}

/*----- Content of Tabs -----*/
.tab-content {
    padding:15px;
    border-radius:0px;
    border: 1px #D4D4D4 solid;
    background-color: #f0f0f0;
}

.tab {
    display:none;
}

.tab.active {
    display:block;
}


/* FIM TABS */






/* CLERO - ITEM */


.clero-item{
    text-align: center;
    width: 100%;
    max-width: 200px;
    display: inline-block;
    vertical-align: top;
    margin: 0px 10px;
    margin-bottom: 30px;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}


.clero-item figure{
    width: 100%;
    max-width: 200px;
    height: 230px;
    overflow: hidden;
}


.clero-item img{
    width: 100%;
}

.clero-item h2{
    font-size: 20px;
    padding-bottom: 10px;
}

.mais-detalhes{
    display: block;
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    background-color: #F6BB42;
    color: #fff;
    transition: all 0.2s ease-out;
}

.mais-detalhes:hover{
    background-color: #e5aa31;
}

/* FIM CLERO - ITEM */




/* GRUPO - ITEM */

.grupo-item{
    text-align: center;
    width: 100%;
    max-width: 200px;
    display: inline-block;
    vertical-align: top;
    margin: 0px 10px;
    margin-bottom: 30px;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
}


.grupo-item figure{
    width: 100%;
    max-width: 200px;
    height: 150px;
    overflow: hidden;
}


.grupo-item img{
    width: 100%;
}

.grupo-item h2{
    min-height: 50px;
    display: table;
    font-size: 20px;
    padding-bottom: 10px;
}

/* FIM GRUPO - ITEM */




/* PÁGINA AGENDA */

.agenda-item{
    display: inline-block;

    width: 100%;
}
.agenda-item span{
    float: left;
    margin-right: 10px;
    line-height: 110%;
    display: block;
    padding: 10px 0px;
    width: 100px;
    background-color: #D61214;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.agenda-item h2{
    margin-bottom: 10px;
}

/* FIM PÁGINA AGENDA */





/* PÁGINA NOTÍCIAS */


.titulo-grande h1{
    font-size: 26px;
}

/*======== NOTICIAS PRINCIPAIS =========*/



.noticia-paroquia-item{
    margin: 0px 20px;
    width: 100%;
    max-width: 300px;
    display: inline-block;
    vertical-align: top;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
    margin-bottom: 30px;
}



.noticia-paroquia-item figure{
    height: 200px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.noticia-paroquia-item img{
    width: 100%;
}

.noticia-paroquia-item h2{
    font-size: 20px;
    margin-bottom: 5px;
}

.noticia-paroquia-item time{
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.noticia-paroquia-item article{
    text-align: justify;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 300;
}




/*============= NOTÍCIAS MINIATURA  ==================*/



.noticia-mundo-item{
    margin: 0px 20px;
    width: 100%;
    max-width: 300px;
    display: inline-block;
    vertical-align: top;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
    margin-bottom: 30px;
}

.noticia-mundo-item figure{
    float: left;
    margin-right: 5px;
    height: 100px;
    width: 120px;
    overflow: hidden;
}

.noticia-mundo-item img{
    width: 120%;
}

.noticia-mundo-item h2{
    font-size: 18px;
}

.noticia-mundo-item time{
    font-size: 14px;
}



/* FIM PÁGINA NOTÍCIAS */



.noticia-horizontal-item{
    width: 100%;
    display: table;
    background-color: #fbfbfb;
    box-shadow: 0px 1px 3px #ddd;
    margin-bottom: 30px;
}

.noticia-horizontal-item figure{
    width: 100%;
    max-width: 200px;
    height: 130px;
    margin-right: 10px;
    overflow: hidden;
    float: left;
}

.noticia-horizontal-item article{
    display: table;
}

.noticia-horizontal-item h2{
    font-size: 20px;
    margin-bottom: 5px;
}

.noticia-horizontal-item time{
    font-size: 14px;
}




/* PAGINAÇÃO */
.paginacao{
    display: table;
    margin: auto;
}
.paginacao li{
    display: inline-block;
    vertical-align: top;
    margin: 0px 2px;
}

.paginacao a{
    text-align: center;
    display: block;
    padding: 5px 0px;
    width: 30px;
    background-color: #D61214;
    color: #fff;
    border-radius: 3px;
    border: 1px #b61b1b solid;
    transition: all 0.2s ease-out;
}

.paginacao a:hover{
    background-color: #fff;
    color: #D61214;
}


/* FIM PAGINAÇÃO */



/* PALAVRA DO PÁROCO */
.palavra-padre{
    border-left: 3px #D61214 solid;
}
.palavra-padre h2{
    font-size: 24px !important;
}

/* FIM PALAVRA DO PÁROCO */



/* SANTO DO DIA */

.santo-data{
    font-weight: 700;
    font-size: 22px !important;
}

/* FIM SANTO DO DIA */



/* GALERIA DE FOTOS */

.galeria-fotos{}

.galeria-fotos figure{
    display: inline-block;
    width: 165px;
    height: 110px;
    overflow: hidden;
    margin: 5px;
    transition: all 0.2s ease-out;
    background-color: #000;
    background-image: url(../imagens/zoom.fw.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.galeria-fotos img{
    width: 100%;
    transition: all 0.2s ease-out;
}

.galeria-fotos figure:hover img{
    transform: scale(1.05);
}
.galeria-fotos figure:hover img{
    opacity: 0.6;
}
/* GALERIA DE FOTOS */





/* GALERIA DE VÍDEOS */


.videos-item{
    width: 230px;
    padding: 15px;
    display: inline-block;
    vertical-align: top;
}

.videos-item figure{
    width: 100%;
    height: 155px;
    overflow: hidden;
    background-color: #000;
    background-image: url(../imagens/play.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.videos-item img{
    width: 100%;
    opacity: 0.7;
    transition: all 0.2s ease-out;
}

.videos-item figure:hover img{
    opacity: 0.4;
}

.videos-item h2{
    font-size: 18px;
}

.videos-item time{
    font-size: 14px;
}


/* FIM GALERIA DE VÍDEOS */





/* JORNAL */

.jornal-iframe{
    width: 95%;
    border: none;
    height: 600px;
}

/* FIM JORNAL */











/* ACORDION */

.heading-primary {
    font-size:2em;
    padding:2em;
    text-align:center;
}
.accordion dl {
    border:1px solid #ddd;
    &:after {
        content: "";
        display:block;
        height:1em;
        width:100%;
        background-color:darken(#38cc70, 10%);
    }
}
.accordion dd {
    background-color:#eee;
    font-size:1em;
    line-height:1.5em; 
}
.accordion p {
    padding:1em 2em 1em 2em;
}

.accordion {
    position:relative;
    background-color:#eee;
}

.accordionTitle {
    background-color:#38cc70; 
    font-size: 24px;
    text-align:center;
    font-weight:700; 
    padding:1em;
    display:block;
    text-decoration:none;
    color:#fff;
    transition:background-color 0.5s ease-in-out;
    border-bottom:1px solid darken(#38cc70, 5%);
    &:before {
        content: "+";
        font-size:1.5em;
        line-height:0.5em;
        float:left; 
        transition: transform 0.3s ease-in-out;
    }
    &:hover {
        background-color:darken(#38cc70, 10%);
    }
}
.accordionTitleActive, 
.accordionTitle.is-expanded {
    background-color:darken(#38cc70, 10%);
    &:before {

        transform:rotate(-225deg);
    }
}
.accordionItem {
    height:auto;
    overflow:hidden; 
    //SHAME: magic number to allow the accordion to animate

    max-height:50em;
    transition:max-height 1s;   


    /*    @media screen and (min-width:48em) {
             max-height:15em;
            transition:max-height 0.5s
            
        }*/


}
.accordionItemCollapsed, 
.accordionItem.is-collapsed {
    max-height:0;
}
.animateIn {
    animation: accordionIn 0.65s normal ease-in-out both 1; 
}
.animateOut {
    animation: accordionOut 0.75s alternate ease-in-out both 1;
}
@keyframes accordionIn {
    0% {
        opacity: 0;
        transform:scale(0.9) rotateX(-60deg);
        transform-origin: 50% 0;
    }
    100% {
        opacity:1;
        transform:scale(1);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        transform:scale(1);
    }
    100% {
        opacity:0;
        transform:scale(0.9) rotateX(-60deg);
    }
}