
/* geral */


.hidden{
    display: none !important;
}
.show{
    display: block !important;
}

input,
select,
button,
body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
body{
    background: #1c1b21;
    color: #FFF;
}
img{
    max-width: 100%;
}
.in{
    max-width: 1400px;
    padding: 0px 15px;
}
.in_med{
    max-width: 1100px;
}
/* headings */
h1{
    font-size: 80px;
    font-weight: 900;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}
h2{
    font-size: 45px;
    font-weight: 900;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}
h3{
    font-size: 30px;
    font-weight: 900;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
    padding-top: 20px;
}
h4{
    font-size: 30px;
}
h5{
    font-size: 25px;
    font-weight: 900;
}
h6{
    font-size: 25px;
}

/* texto */
.txt{
    color: #000;
}
.txt p{
    font-size: 18px;
    min-height: 25px;
    line-height: 25px;
    color: #333;
}
.txt p a{
    color: inherit;
    text-decoration: underline;
}
.txt p strong{
    font-weight: 700;
}
.txt p em{
    font-style: italic;
}

.txt h4{
    padding-bottom: 20px;
    font-weight: 300;
    font-size: 50px;
}

/* radio */
.radio{
    position: relative;
}
.radio input{
    display: none;
}
.radio label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.radio label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid rgba(0,0,0,0.3);
}
.radio label:after{
    content: " ";
    width: 12px;
    height: 12px;
    background: #000;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 100%;
    opacity: 0;
}
.radio input[type=radio]:checked ~ label:after{
    opacity: 1;
}

.radio{
    position: relative;
}
.radio input{
    display: none;
}
.radio label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.radio label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.3);
}
.radio label:after{
    content: " ";
    width: 9px;
    height: 5px;
    position: absolute;
    left: 4px;
    top: 4px;
    opacity: 0;
    transform: rotate(-45deg);
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    transform: scale(0,0) rotate(-45deg);
    opacity: 0;
}
.radio input[type=radio]:checked ~ label:after{
    opacity: 1;
    transform: scale(1,1) rotate(-45deg);
}
.radio input[type=radio]:checked ~ label{
    color: #fff;
}


/* checkbox */
.checkbox{
    position: relative;
}
.checkbox input{
    display: none;
}
.checkbox label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.checkbox label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    border: 2px solid rgba(0,0,0,0.3);
}
.checkbox label:after{
    content: " ";
    width: 9px;
    height: 5px;
    position: absolute;
    left: 4px;
    top: 4px;
    opacity: 0;
    transform: rotate(-45deg);
    border: 3px solid black;
    border-top: none;
    border-right: none;
}
.checkbox input[type=checkbox]:checked ~ label:after{
    opacity: 1;
}

/* select */
.select{
    background: white;
    border: 2px solid rgba(0,0,0,0.15);
    position: relative;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.select select{
    border: none;
    box-shadow: none;
    background-image: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance:  none;
    padding: 10px 40px 10px 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.select select:focus{
    outline: none;
}
.select:before{
    content: "";
    width: 10px;
    height: 10px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    position: absolute;
    transform: rotate(45deg);
    box-sizing: border-box;
    border: 3px solid rgba(0,0,0,0.15);
    border-left: none;
    border-top: none;
}
.select:hover{
    border-color: rgba(0,0,0,0.5);
}
.select:hover:before{
    border-color: rgba(0,0,0,0.5);
}

/* lightbox */
.lb.animated {
    animation-duration: .3s;
}
.lb{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0,0,0,0.5);
}
.lb_x{
    position: fixed;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    padding: 10px;
    z-index: 2;
}
.lb_in{
    z-index: 1;
}
.lb_centro .lb_in{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.lb_ct{
    position: relative;
    width: 100%;
}

/* accordion */
ul.acc{
}
ul.acc dt{
    cursor: pointer;
}
ul.acc dd{
    background: rgba(0,0,0,0.1);
    display: none;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-top: -1px;
    margin-right: -20px;
    position: relative;
    overflow: hidden;
}

ul.acc dd:after{
    content: " ";
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    top: 0;
    margin-top: -5px;
    box-shadow: 0px 0px 40px;
}
ul.acc .aberto ~ dd{
    display: block;
    height: auto;
}

.acc span,
.acc dt,
.acc a{
    display: block;
    font-size: 16px;
    color: #000;
    padding: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.acc li:last-child > dt{
    border: none;
}

.acc dd > a:first-child{
    padding-top: 20px;
}

.acc dd > a:last-child{
    padding-bottom: 20px;
}


.acc dd > a{
    border: none;
}

.acc span:hover,
.acc dt:hover,
.acc a:hover{
    color: red;
    cursor: pointer;
}

/* slider */
.owl-carousel{
    position: relative;
}
.owl-carousel .owl-nav {
    position: absolute;
    background: red;
    height: 0px;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    top: 50%;
    opacity: 0;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next{
    background: transparent;
    width: 60px;
    height: 60px;
    display: block;
    z-index: 10;
    position: absolute;
    transform: translateY(-50%);
    top: 0;
    opacity: 0.2;
}
.owl-carousel .owl-next{
    left: auto;
    right: 1px;
}
.owl-carousel .owl-prev span,
.owl-carousel .owl-next span{
    position: absolute;
    right: 35%;
    top: 25%;
    width: 50%;
    height: 50%;
    box-sizing: border-box;
    transform: rotate(-45deg);
    border: 5px solid #000;
    border-left: none;
    border-top: none;
}
.owl-carousel .owl-prev span{
    transform: rotate(135deg);
    left: 35%;
    right: auto;
}
.owl-carousel:hover > .owl-nav{
    opacity: 1;
}
.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover{
    opacity: 0.6;
}
.owl-carousel .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 100%;
    bottom: 10px;
    height: 25px;
    font-size: 0px;
}
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    background: transparent;
    width: auto;
    height: auto;
}
.owl-carousel .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.25);
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    display: block;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
    margin: 5px;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: white;
}

/*
   ██████████   ███   ███   ███   ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
   ████░░░░░░░░ ███░░ ███░░ ███░░ ████░░░░░░░░
   ██████████   ███░░ ███░░ ███░░ ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
     ░░░░████░░ ███░░ ███░░ ███░░   ░░░░████░░
   ██████████░░ ███████████████░░ ██████████░░
   ██████████░░ ███████████████░░ ██████████░░
     ░░░░░░░░░░  ░░░░░░░░░░░░░░░░   ░░░░░░░░░░
*/


.catedral{
    background: url('/data/img/bg.jpg');
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-position: top center;
    background-size: cover;
    z-index: 0;
}

.cabecalho{
    position: fixed;
    left: 20px;
    top: 20px;
    color: #000;
    font-size: 0px;
}

.logo{
    padding: 20px;
    display: inline-block;
    vertical-align: top;
    background: white;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.4);
}

.logotipo{
    width: 220px;
}

.menu{
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    background: white;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.4);
    width: 260px;
}

.menu_in{
    font-size: 20px;
    padding: 20px;
}

.homepage{
    position: relative;
    margin-left: 600px;
    margin-top: 20px;
    margin-right: 20px;
}

.historia{
    background: white;
    padding: 40px;
    max-width: 750px;
    margin-top: 50px;
    /* display: none; */
}

.historia .txt p img{
    float: right;
    padding-bottom: 20px;
    padding-left: 20px;
}







