/* CONFIGURAÇÕES GERAIS */

@font-face {
    font-family: 'Apple Garamond';
    src: url('../fonts/AppleGaramond-Bold.woff2') format('woff2'),
        url('../fonts/AppleGaramond-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apple Garamond';
    src: url('../fonts/AppleGaramond.woff2') format('woff2'),
        url('../fonts/AppleGaramond.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apple Garamond';
    src: url('../fonts/AppleGaramond-Italic.woff2') format('woff2'),
        url('../fonts/AppleGaramond-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Adelia';
    src: url('../fonts/Adelia.woff2') format('woff2'),
        url('../fonts/Adelia.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.fonte-personalizada {
  font-family: 'Apple Garamond', sans-serif;
}


html {
    font-family: "Apple Garamond";
    font-size: 20px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


:root {
  --vermelho-p: #aa0000; 
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../img/back-pg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -100;    
}

hr {
    border: none !important;
    border-top: none !important;
    background: none !important;
    box-shadow: none !important;
    border: none;    
    margin: 3em 0;
    position: relative;
}

hr::before {
    content: "";
    display: block;
    height: 15px;
    width: 100%;
    background-image: url(../../img/hr_1.png);    
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
}

p {
    text-indent: 2em;    
}

p.has-text-align-center,
p.has-text-align-right,
p.aligncenter,
p.alignright {
    text-indent: 0em;
}

/* GERAL POSTAGENS */
figure {
    border: solid 4px var(--vermelho-p);
}

figcaption {
    font-style: italic;
    font-size: 0.8rem;
    color: var(--vermelho-p);
    text-align: center;
}


/* CABEÇALHO */

#header-pg {        
    width: 100vw;
    height: calc(100vw * 0.4);
    max-height: 85vh;
    transition: height 0.3s ease;    
    position:fixed;    
    top:0;
    z-index: 20;    
}

#header-pg.shrink {
  height: 200px;
}

#header-pg .conteudo-header {
    width: 100%;
    height: 100%;
    background-color: #fffbf7;
    background-image: url(../../img/back_header.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

#header-pg.shrink .conteudo-header {
    background-size: contain;
}

#header-pg .conteudo-header .brasao {
    height:30vw;
}

#header-pg.shrink .conteudo-header .brasao {
    height: 170px;
}

#header-pg .conteudo-header .laterais {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; 
    padding: 20px; 
    justify-content: center;
}

#header-pg .conteudo-header .laterais .nse {
    height: 40%;
}

#header-pg.shrink .conteudo-header .laterais .nse {
    height: 70%;    
}

#header-pg .menu { 
    position: relative;
    top: -30px;
    width: 100vw;
    height: 100px;
    background-image: url(../../img/faixa-fundo-menu.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: normal;
    text-transform: uppercase;
}

#header-pg .menu ul {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

#header-pg .menu ul li {
    position: relative;
}

#header-pg .menu ul li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: var(--vermelho-p);
    border-radius: 50%;
    margin: 0 0.75rem;
    position: relative;
    top:-2px;
    left:7px;
}

#header-pg .menu ul li a {
    position: relative;
    text-decoration: none;    
    color: inherit;
}

#header-pg .menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: currentColor;
    transition: width 0.3s ease;
}

#header-pg .menu ul li a:hover::after {
    width: 100%;
}

#header-pg .menu #btn-menu {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.5s ease;
}

#header-pg .menu #btn-menu:active {
    transform: rotate(90deg);
}

#menu-mobile {
    position: fixed;
    top: 0;
    left: -250px; /* escondido fora da tela */
    width: 250px;
    height: 100%;
    background: #fff;
    background-image: url(../../img/back-pg.jpg);
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;    
}

#menu-mobile ul {
    margin-top: 50px;
    list-style: none;
    line-height: 2rem;
}

#menu-mobile ul li a {
    position: relative;
    text-decoration: none;    
    color: black;
}

#menu-mobile ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: currentColor;
    transition: width 0.3s ease;
}

#menu-mobile ul li a:hover::after {
    width:100%
}

#menu-mobile #btn-fechar {
    width: 35px;
    height: 35px;    
    border: solid 3px var(--vermelho-p);
    background-color: rgb(206, 206, 206);
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--vermelho-p);
    border-radius: 5px;
    float:right;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#menu-mobile #btn-fechar:hover {
    transform: rotate(90deg);
}



/* INDEX NOTÍCIAS */
.home-noticias {
    position: relative;
    top: 400px;
    z-index: 1;
    width: 100vw;
    height: 940px;    
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;  
}

.home-noticias::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4); /* preto com 40% de opacidade */
    z-index: 1; /* atrás do conteúdo, mas acima da imagem de fundo */
}

.home-noticias .bg1,
.home-noticias .bg2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
    opacity: 0;
}

.home-noticias .bg1.active,
.home-noticias .bg2.active {
    opacity: 1;
}

.home-noticias > *:not(.bg1):not(.bg2) {
    position: relative;
    z-index: 1;
}






.home-noticias .box-noticias {
    width: 300px;    
    position: relative;
    top: 200px;
    left: 20%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 25px 10px;
    z-index: 2000;
    border-radius: 30px;
}

.home-noticias .box-noticias .home-noticia a {
    text-decoration: none;
}

.home-noticias .box-noticias .home-noticia {
    background-color: rgba(255, 255, 255, 0);
    transition:all 0.5s ease;
    padding: 5px 10px 5px 0;
}

.home-noticias .box-noticias .home-noticia:hover {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: rgb(255, 255, 255) 0px 2px 4px 0px, rgb(255, 255, 255) 0px 2px 16px 0px;    
}

.home-noticias .box-noticias h2 {
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    background-color: var(--vermelho-p);
    color:white;
    padding: 3px;
    border-radius:50px;
    margin-bottom: 25px;
}

.home-noticias .box-noticias .titulo-noticias {
    font-size: 0.9rem;
    color: var(--vermelho-p);    
}

.home-noticias .box-noticias .corpo-noticias {
    font-size: 1.2rem;
    color: black;    
}

.home-noticias .box-noticias span {
    position:relative;
    left: 15px;
}

.home-noticias .box-noticias .saiba {
    font-style: italic;
    font-size: 0.8rem;
    color: var(--vermelho-p);
    text-align: right;
    border-bottom: solid 1px var(--vermelho-p);
    margin: 10px 15px; 
}

.home-noticias .box-noticias .saiba a {
    text-decoration: none;
    color: var(--vermelho-p);    
}

.home-noticias .box-noticias .saiba a:hover {
    color:black;
}

.home-noticias .box-noticias .veja-todas {
    width:100%;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--vermelho-p);
    text-align: center;    
    margin-top: 25px; 
    text-indent: 0;
}

.home-noticias .box-noticias .veja-todas a {
    text-decoration: none;
    color: var(--vermelho-p);
}

.home-noticias .box-noticias .veja-todas a:hover {
    text-decoration: none;
    color:black;
}

/* CONTEÚDO POSTS */
.corpo-noticias {
    margin-top: 40px;
}

.corpo-noticias figure {
    display: flex;
    justify-content: center;
    padding: 0
}

.corpo-noticias p, em {
    margin-bottom: 1.2em;    
    line-height: 1.6;
}

.corpo-noticias ul, ol {
  list-style-position: outside; /* padrão, mas importante garantir */
  padding-left: 2em; /* espaço antes do texto */
  line-height: 1.6;
}

.corpo-noticias ul li, ol li {
  text-indent: -1em;   /* recua a primeira linha para alinhar com as outras */
  padding-left: 1em;   /* empurra o texto para frente após o marcador */
}

.conteudo-post {
    margin: 300px 20% 0 20%;
    min-width: 50%;
}

.conteudo-post img {
    float: left;
    margin: 10px;
}

.conteudo-post .titulo-post {
    font-size: 2rem;
    color: var(--vermelho-p);
}

.conteudo-post .categorias-post {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(88, 88, 88);
    margin-bottom: 30px;
}

.conteudo-post .data-post {
    font-size: 0.8rem;
    font-style: italic;
}


/* CONTEÚDO PÁGINAS */
.corpo-pagina {
    margin-top: 120px;
}

.corpo-pagina p, em {
    margin-bottom: 1.2em;    
    line-height: 1.6;
}

.corpo-pagina ul, ol {
  list-style-position: outside; /* padrão, mas importante garantir */
  padding-left: 2em; /* espaço antes do texto */
  line-height: 1.6;
}

.corpo-pagina ul li, ol li {
  text-indent: -1em;   /* recua a primeira linha para alinhar com as outras */
  padding-left: 1em;   /* empurra o texto para frente após o marcador */
}

.conteudo-pagina {
    margin: 300px 20% 0 20%;
    min-width: 50%;
}

.conteudo-pagina .titulo-p{
    width: 100%;
    text-align: center;
}

.conteudo-pagina .titulo-pagina {
    font-family: Adelia;
    font-size: 2rem;
    color: var(--vermelho-p);    
    position: relative;
    display: inline-block;
}

.conteudo-pagina .titulo-pagina::after {
  content: "";
  position: absolute;
  left: 5%;
  bottom: -10px;
  width: 90%;
  height: 10px;
  background-image: url('../../img/sublinhado.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}


/* ---- CONTEÚDO PÁGINAS NOTÍCIAS */
.pg-not {
    color:black;
}

.pg-not a {
    text-decoration: none; 
    color:black;      
}


.pg-not .home-noticia {    
    border:solid 3px var(--vermelho-p);
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0) 0px 3px 8px;
    transition: all 0.3s ease;
}

.pg-not .home-noticia:hover {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.pg-not .corpo-noticias {
    font-weight: bold;
    color: var(--vermelho-p);
    font-size: 1.5rem;    
}

.pg-not .home-noticia:hover .corpo-noticias {
    text-decoration: underline;
}

.pg-not .data-post {
    font-size: 0.7rem;
    color: rgb(92, 92, 92);
    
}

.pg-not .veja {
    font-style: italic;
    font-size: 0.9rem;
    color:var(--vermelho-p);
}

.pg-not .veja:hover {
    text-decoration: underline;
}

.pg-not .titulo-noticias {
    width:100%;
    font-size: 0.7rem;
    font-weight: bold;
    background-color: var(--vermelho-p);
    padding:3px;
    color:white;
    border-radius: 5px;
    text-transform: uppercase;
    text-align: center;
}

.pg-not .resumo {
    text-indent: 0;
}


.pg-not .paginacao {
    text-align: center;
    margin: 30px 0;
}

.pg-not .paginacao .page-numbers {
    margin: 0 5px;
    padding: 8px 12px;
    background: #eee;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.pg-not .paginacao .current {
    background: #333;
    color: #fff;
}

/* buscador */
.pg-not .searchform {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
    padding: 0 30%;
}

.pg-not .searchform input[type="search"] {
    font-size: 1.2rem;
    font-family: 'Apple Garamond';
    padding: 10px;
    flex: 1;
    border: solid 2px var(--vermelho-p);
    border-radius: 30px;
}

.pg-not .searchform input[type="search"]:focus {    
    outline: 3px solid var(--vermelho-p);      
}

.pg-not .searchform button {
    width: 50px;
    height: 50px;
    padding: 0;
    color: white;
    border: solid 2px var(--vermelho-p);
    cursor: pointer;
    border-radius: 25px;
}

.pg-not .subtitulo-busca {
    margin-top: 30px;
    text-align: left;
    font-size: 1.3rem;
    font-family: normal;
    font-weight: normal;
}

/* INDEX BANNERS */
.home-banners {
    position: relative;
    top:450px;
    display: flex;
    justify-content: center;  
    flex-wrap: wrap;  
}

.home-banners img {
    border: solid 4px;
    border-color: var(--vermelho-p);
    margin: 0 20px;
    height: 250px;
    transition: all 0.5s ease;
}

.home-banners a:hover img{
    border-color:black;
    filter: grayscale(50%);
    filter: brightness(200%);
}

/*FORMULÁRIO DE ORAÇÕES*/
.conteudo-oracoes {
    width: 100%;    
    display:flex;    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;    
    margin-top: 300px;
}

.conteudo-oracoes article {
    width: 100%;    
    display:flex;    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;    
}

.conteudo-oracoes .titulo-p{
    width: 100%;
    text-align: center;
}

.conteudo-oracoes .titulo-pagina {
    font-family: Adelia;
    font-size: 2rem;
    color: var(--vermelho-p);    
    position: relative;
    display: inline-block;
}

.conteudo-oracoes .texto {
    width: 40%;
    margin-top: 50px;
    text-align: center;
}

.conteudo-oracoes .titulo-pagina::after {
  content: "";
  position: absolute;
  left: 5%;
  bottom: -10px;
  width: 90%;
  height: 10px;
  background-image: url('../../img/sublinhado.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.conteudo-oracoes .corpo-pagina {
    margin-top: 30px;
}

.oracoes {
    width: 100%;
    display:flex;    
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.oracoes input {
    width: 100%;
    padding: 9px;
    font-family:Apple Garamond;
    font-size: 0.9rem;
    border-radius: 20px;
    border: solid 2px var(--vermelho-p);    
}

.oracoes select {
    width: 100%;
    padding: 9px;
    font-family:Apple Garamond;
    font-size: 0.9rem;
    border-radius: 20px;
    border: solid 2px var(--vermelho-p);
    margin-bottom: 30px;
}

.oracoes input:focus {
    outline: 3px solid var(--vermelho-p); 
}

.oracoes textarea {
    width: 100%;
    padding: 9px;
    font-family:Apple Garamond;
    font-size: 0.9rem;
    border-radius: 20px;
    border: solid 2px var(--vermelho-p);    
}

.oracoes textarea:focus {
    outline: 0;
    box-shadow: inset 0 0 0 3px var(--vermelho-p); 
}

.oracoes .botao-seletor {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid var(--vermelho-p);
  padding: 8px 16px;
  cursor: pointer;
}

.oracoes .botao-seletor.ativo {
  background-color: var(--vermelho-p);
  color: white;
  border-color: var(--vermelho-p);
}

.oracoes .baixo {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.oracoes .ident {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    display:flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;    
}

.oracoes .escolha-ora {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.oracoes .escolha-ora span {
    font-size: 0.9rem;
    color:#000000;
    margin-left:20px;
    position:relative;
    top: 6px;
}

.oracoes .escolha-ora button {    
    padding: 5px;
    background-color: white;
    border: solid 1px var(--vermelho-p);
    font-family:Apple Garamond;
    font-size: 0.9rem;
    max-width: 200px;
    min-width: 150px;
    cursor: pointer;
}

.oracoes .escolha-ora button:hover {    
    outline: 3px solid var(--vermelho-p);
}

.oracoes .bloco {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;    
    flex-direction: column;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.oracoes .bloco.ativo {
  max-height: 1000px;
  opacity: 1;
}

.oracoes label {
    font-size: 0.8rem;
    color:#8d8d8d;
    margin-left:20px;
    position:relative;
    top: 2px;
}

.oracoes .baixo .btn-submit {
    width: 30%;
    min-width: 80px;
    padding: 9px;
    font-family:Apple Garamond;
    font-size: 0.9rem;
    background-color: var(--vermelho-p);
    color: white;
    font-weight: bold;
    border-radius: 20px;
    border: solid 2px var(--vermelho-p); 
    margin-top: 20px;
    cursor: pointer;
}

.oracoes .baixo .btn-submit:hover {
    outline: 3px solid var(--vermelho-p); 
}


/* VELAS VIRTUAIS */

.content-velas {
    width: 100%;    
    display:flex;    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;    
    margin-top: 300px;    
}

.content-velas .titulo-pagina {
    font-family: Adelia;
    font-size: 2rem;
    color: var(--vermelho-p);    
    position: relative;    
}

.content-velas .texto {
    width: 40%;
    margin-top: 30px;
    text-align: center;
}

.content-velas .texto button {
    width: 50%;
    min-width: 100px;
    padding: 9px;
    font-family:Apple Garamond;
    font-size: 0.9rem;
    background-color: var(--vermelho-p);
    color: white;
    font-weight: bold;
    border-radius: 20px;
    border: solid 2px var(--vermelho-p); 
    margin-top: 40px;
    cursor: pointer;
}

.content-velas .texto button:focus {
    outline: 3px solid var(--vermelho-p); 
}

.content-velas #formContainer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.content-velas #formContainer.mostrar {
    max-height: 1000px; /* valor alto o suficiente para o conteúdo */
    opacity: 1;
}

.form-velas {
    width: 100%;
    display: none;
    display:flex;    
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 20px; 
}

.form-velas .bloco {
    width: 100%;
    min-width: 300px;    
    padding: 0 150px;
}

.form-velas input {
    width: 100%;
    padding: 9px;
    font-family:Apple Garamond;
    font-size: 0.9rem;
    border-radius: 20px;
    border: solid 2px var(--vermelho-p);    
    margin-bottom: 10px;
}

.form-velas input:focus {
    outline: 3px solid var(--vermelho-p); 
}

.form-velas textarea {
    width: 100%;
    height: 150px;
    padding: 9px;
    font-family:Apple Garamond;
    font-size: 0.9rem;
    border-radius: 20px;
    border: solid 2px var(--vermelho-p);    
    margin-bottom: 10px;
}

.form-velas textarea:focus {
    outline: 3px solid var(--vermelho-p); 
}

.form-velas input[type=submit] {
    width: 50%;
    min-width: 100px;
    padding: 9px;
    font-family:Apple Garamond;
    font-size: 0.9rem;
    background-color: var(--vermelho-p);
    color: white;
    font-weight: bold;
    border-radius: 20px;
    border: solid 2px var(--vermelho-p); 
    margin-top: 20px;
    cursor: pointer;
}

.form-velas input[type=submit]:hover {
    outline: 3px solid var(--vermelho-p); 
}

.form-velas #doacao {
    width: 80px;
    text-align: right;
    font-weight: bold;
}

.form-velas label {
    font-size: 0.8rem;
    color:#8d8d8d;
    margin-left: 20px;
    position:relative;
    top: 2px;
}

/* qr CODE */
.form-velas .qr {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top:10px;
}

.form-velas .qr img{
    width: 150px;
}
.form-velas .qr .texto-qr {
    display:flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.form-velas .qr .colabore{
    font-size: 1.2rem;
    font-weight: bold;
}

.form-velas .qr .faca{
    font-size: 0.8rem;
    font-weight: normal;
}

.form-velas .qr .chave {
    font-size: 0.6rem;
    font-weight: normal;
}
.form-velas .qr .cnpj {
    font-size: 1.7rem;
    font-weight: bold;
}

.pg-velas {
    width: 60%;
    margin-top: 70px;
    display:flex;    
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;  
    gap: 10px;  
}

.pg-velas .vela-uni {
    width: 45%;
    min-width: 300px;    
    height: 300px;    
    border: solid 2px var(--vermelho-p);
    border-radius: 10px;
    background-image: url(../../img/bg-velas.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    display: flex; 
    flex-direction: row;
    align-items: flex-end;
}

.pg-velas .vela-uni .texto-vela {
    font-weight: bold;
    font-size: 1.2rem;    
    color: white;
    margin: 0 0 50px 10px;
    display: flex;
    flex-direction: column-reverse;
}

.pg-velas .vela-uni .texto-vela span {
    font-weight: normal;
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0.1rem;
    color: white;        
    display: flex;
    flex-direction: column-reverse;
}

.image-vela {
  display: flex;
  flex-direction: column-reverse; /* inverter ordem visual */
  align-items: center;
  width: 120px;
  height: 310px;
  margin-left: 30px;
}

.topo-vela {
  width: 120px;
  height: 160px;
  background-image: url(../../img/topo-vela.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 120px 78px;
}

.video-wrapper {
  width: 120px;
  height: 120px;
  position: relative;
}

.video-blended {
  mix-blend-mode: lighten;
  width: 100%;
  height: auto;
  display: block;
}

.vela {
  width: 120px;
  background-image: url(../../img/meio-vela.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  transition: height 0.5s;
}

.bottom-vela {
  width: 120px;
  height: 30px;
  background-image: url(../../img/fundo-vela.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
}

/*--- LOJA */
.conteudo-loja {
    margin-top: 300px;
    min-width: 50%;
    display:flex;
    flex-wrap: nowrap;    
    justify-content: center;
}

.conteudo-loja .sidebar-list {
    font-weight: normal;
    font-size: 0.8rem;    
}

.conteudo-loja .sidebar-list ul {
    list-style: none;
    line-height: 1.2rem;
}

.conteudo-loja .sidebar-list ul li a {
    color: #000;
    text-decoration: none;
}

.conteudo-loja .sidebar-list ul li a:hover {
    text-decoration: underline;
}

.elementor-widget-woocommerce-cart .woocommerce a:not(.add_to_cart_button):not(.restore-item):not(.wc-backward):not(.wc-forward){
    Color: var(--vermelho-p);
}
.elementor-widget-woocommerce-cart .woocommerce button.button {
    border-color: var(--vermelho-p);
}

.woocommerce-page header img {
    all: unset;
    display: block;
    margin: 0 auto;
}
.woocommerce-page header img.brasao {
    width: auto !important;
    height: auto;
}

.widget_product_categories .count {
    display: none !important;
}

/* FOOTER */
.footer-pg {
    padding: 50px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.footer-pg .hr-footer {
    width: 30%;
    margin: 10px 20px;
}

.midias {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;    
    gap: 10px;
    margin-top: 20px;
}

.midias img {
    width: 50px;    
    transform: translateY(0px);
    filter: brightness(1) drop-shadow(0px 0px 0px #b4b4b4);
    transition: all 0.5s ease;
}

.midias img:hover {
    animation: brilhoEtapas 0.5s forwards;
}

@keyframes brilhoEtapas {
    0% {
        transform: translateY(0px);
        filter: brightness(1) drop-shadow(0px 0px 0px #b4b4b4);        
    }
    
    50% {        
        filter: brightness(1.5);        
    }

    100% {
        transform: translateY(-3px);
        filter: brightness(1) drop-shadow(0px 5px 3px #b4b4b4);        
    }


}

.footer-pg .tit-footer {
    color: var(--vermelho-p);
    font-weight: bold;
    font-size: 1.3rem;
    position: relative;
    margin-top: 40px;
}

.footer-pg .tit-footer::before {
    content: "";
    width: 100%;
    height: 2px;    
    background-color: #e2c675;
    position: absolute;
    top: -30px;
    margin: 10px 0;
}

.footer-home {
    margin-top: 500px;
}


/* Responsivo para telas pequenas */
@media (max-width: 850px) {

    /*  MENU HAMBÚRGUER */
    #header-pg .menu { 
        height: 70px;
    }
    #header-pg .menu ul {
    display: none; /* esconde o menu padrão */
    }
    #header-pg .menu #btn-menu {
    display: inline-block; /* mostra o hambúrguer */
    }

    #menu-mobile.ativo {
    left: 0;
    }

    #header-pg {
    height: calc(100vw * 0.9);
    max-height: 80vh;
    position:relative;
    }

    #header-pg .conteudo-header {
    background-size: cover;
    background-position-x: 30%;
    flex-direction: column;
    align-items: flex-end;
    }

    #header-pg .conteudo-header a {
    margin: 20px 10% 0 0;
    }

    #header-pg .conteudo-header .laterais {
    justify-content: flex-end;
    align-items: flex-start;    
    }

    #header-pg .conteudo-header .laterais:first-child {
        display: block;
    }

    #header-pg .conteudo-header .brasao {
        height: 20vw;        
    }

    #header-pg.shrink .conteudo-header {
    background-position: center left;
    height: 200px;
    flex-direction: row;
    align-items: center;        
    }

    #header-pg.shrink .conteudo-header a {
    margin: 0px 0 0 0;
    }

    #header-pg.shrink .conteudo-header .laterais {
    justify-content: center;
    align-items: center;    
    }

    .conteudo-loja {
    margin-top: 100px; 
    }

 
    /*-- INDEX */
    .home-noticias {
        top: -25px;
    }

    .home-noticias .box-noticias {
    width: 90%;
    height: 530px;
    position: absolute;    
    left: 5%;
    }

    .home-banners {
        top: 20px;
    }

    .footer-home {
        margin-top: 0px;
    }
    /*--- DIVS conteúdos */
    .conteudo-pagina, .content-velas, .conteudo-oracoes, .conteudo-post {
        margin: 300px 0 0 0;
    }
    .content-velas .texto {
        width: 90%;
    }

    .conteudo-oracoes .texto {
        width: 80%;
    }
}



/* Responsivo para telas pequenas */
@media (max-width: 650px) {

    #header-pg {
    height: 80%;
    }

    .home-noticias {
        top: -50px;
    }

    #header-pg .laterais:first-child {
        display: none;
    }

    #header-pg .laterais:last-child {
        height: 100%;
    }

    #header-pg .conteudo-header .laterais {
        padding-bottom: 30px;
    }

    #header-pg .conteudo-header .laterais .nse {
        height: 20%;
        max-width: 50%;
        margin-right: 25px;
    }

    #header-pg .conteudo-header .brasao {
        display: none;
    }

    #header-pg.shrink .laterais:first-child {
        height: 10px;
    }

    #header-pg.shrink .conteudo-header .brasao {
        display: none;
    }

    .conteudo-pagina .titulo-pagina {
    font-size: 1.2rem;
    text-align: center;     
    }

    .conteudo-oracoes .titulo-pagina  {
    font-size: 1.2rem;
    text-align: center;     
    }

    .content-velas .titulo-pagina {
    font-size: 1.2rem;
    text-align: center;     
    }

    .content-velas .texto {
        width: 90%;
    } 


}

/* Para telas com height pequeno */
@media (max-height: 700px) {

    #header-pg.shrink {
        position: relative;        
    }
    .conteudo-pagina, .content-velas, .conteudo-oracoes, .conteudo-post {
        margin-top: 100px;
    }
}


/* ESTILO PARA A LOJA */

.custom-buy-text {
	font-size: 0.8rem;
	color: #727272;
}

.loja-numero {
	font-size: 1.2rem;
	color: black;
}