/*
* Estilos para o Site do Cineasta Vincent Glen Gielen
* Organizado por seções lógicas
*/

/* ==============================================
   RESET E ESTILOS BASE
   ============================================== */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* ==============================================
     TIPOGRAFIA
     ============================================== */
/* Aplicação da fonte */
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
button,
input,
textarea,
span .geoform-text {
    font-family: 'Geoform', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    /* Medium como padrão */
}

p {
    font-family: 'Geoform', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
}
label{
    font-family: 'Geoform', sans-serif;
    font-weight: 400;
}

/* Classes de peso específico */
.font-geo-thin {
    font-weight: 100 !important;
}

.font-geo-light {
    font-weight: 300 !important;
}

.font-geo-regular {
    font-weight: 400 !important;
}

.font-geo-bold {
    font-weight: 700 !important;
}

.font-geo-extrabold {
    font-weight: 800 !important;
}

.font-geo-black {
    font-weight: 900 !important;
}


/* body, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea {
    font-family: 'Geoform', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400; 
    font-optical-sizing: auto;
} */

/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Geoform", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-optical-sizing: auto;
} */

/* a,
p {
    font-family: "Geoform", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
} */

/* ==============================================
     LAYOUT PRINCIPAL
     ============================================== */
.conteudo {
    /* height: 100%; */
    position: relative;
}

/* ==============================================
     HEADER PRINCIPAL
     ============================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 10px 0;
}

.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: auto;
}

.archive .logo .logo-texto{
    font-family: 'Geoform',serif;
    color: black;
    font-weight: 500;
}


/* ==============================================
     MENU DE NAVEGAÇÃO
     ============================================== */
.navegacao {
    display: flex;
    align-items: center;
    /* padding-left: 9% ; */
}

.menu-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    z-index: 1000;
}

.menu-icon .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-icon.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active .bar:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px);
}

#menu {
    position: fixed;
    top: 0;
    left: -550px;
    width: 350px;
    height: 100vh;
    background-color: black;
    transition: left 0.3s ease;
    z-index: 999;
}

#menu.active {
    left: 0;
}

#menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 100px;
}

#menu ul li {
    padding: 15px;
    text-align: center;
}

#menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 36px;
    text-transform: uppercase;
}

#menu ul li a:hover {
    color: antiquewhite;
}


/* ==============================================
     HEADER PÁGINAS INTERNAS
     ============================================== */
.header-paginas {
    padding: 5px;
}

.header-paginas .topo .navegacao {
    padding: 10px;
}

.header-paginas .menu-icon .bar {
    background-color: black;
}

/*.header-paginas .topo .logo .custom-logo{*/
/*    color: Black;*/
/*}*/

.header-paginas .menu-icon.active .bar {
    background-color: #fff;
}

.site-logo {
    max-height: 50px; 
    width: auto;
    display: block;
}

/* Para o header principal */
.header-paginas .topo .logo .site-logo {
    max-height: 60px; 
}

/* Para o header de páginas */
.header-paginas .logo .site-logo {
    max-height: 40px; /* Pode ser menor nas páginas internas */
}

/* ==============================================
     BANNER DESTAQUES
     ============================================== */
.banner-destaques {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-images {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.background-image.active {
    opacity: 1;
    transform: scale(1);
}

.background-image.active .dados-filmes {
    opacity: 1;
}

.dados-filmes {
    display: flex;
    flex-flow: column;
    align-items: end;
    position: absolute;
    bottom: 33%;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
}

.ano {
    text-align: right;
}

.card-description {
    color: #fff;
    margin-top: 10px;
    max-width: 600px;
    line-height: 1.4;
}

/* video home */

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

.featured-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
} 

.banner-content {
    padding: 0 5% 0 9%;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.banner-logo {
    max-height: 30%;
}


.banner-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* link de assistir ao video completo */
.link-video-home {
    display: flex;
    justify-content: center;
    padding-right: 0;
    margin: 10px 0;
}

/* Container do tooltip */
.tooltip-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    z-index: 0;
}

/* Estilo base do link */
.link-veja-filme-completo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    /* background: rgba(255, 255, 255, 0.1); */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Texto do link */
.texto-link {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    display: none; /* Escondido por padrão no mobile */
}

/* Estilo do ícone */
.icone-play {
    fill: currentColor;
    /* fill: #ff0000; */
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.icone-play:hover {
    fill: #ff0000;
}

/* Tooltip para mobile e desktop */
.tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Geoform', sans-serif;
    width: 155px;
}

/* Seta do tooltip */
.tooltip::after {
    /* content: ""; */
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.9) transparent;
}

/* Mostrar tooltip no mobile quando a classe show-tooltip estiver presente */
.tooltip-container.show-tooltip .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -45px;
}
.tooltip-container {
    -webkit-tap-highlight-color: transparent; /* Remove highlight no iOS */
    touch-action: manipulation; /* Melhora a responsividade do touch */
}

/* Ajustes para telas pequenas */

@media (max-width: 768px) {
    .icone-play {
        width: 42px;
        height: 42px;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    .link-veja-filme-completo {
        padding: 8px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .icone-play {
        width: 36px;
        height: 36px;
        animation: none;
    }
    
    .link-veja-filme-completo {
        padding: 8px 12px;
        min-width: 50px;
        min-height: 50px;
        flex-direction: column;
    }
    .tooltip {
        display: block !important; 
        opacity: 1 !important;
        position: static !important;
        transform: none !important; 
        visibility: visible !important; 
        font-size: 12px;
        color: #fff;
        text-align: center;
        margin-top: 4px;
    }
    
    /* Melhora a organização do conteúdo em mobile */
    .tooltip-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Ajustes adicionais para o conteúdo do banner se necessário */
    .video-overlay {
        justify-content: center;
        align-items: center;
    }
    
    .banner-content {
        width: 100%;
        align-items: flex-start;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
}


/* ==============================================
     NAVEGAÇÃO POR PONTOS (DOTS)
     ============================================== */
.dots-container {
    position: absolute;
    top: 70%;
    right: 33px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ==============================================
     CARDS DA HOME
     ============================================== */


/* Estilos para os cards */
.home .conteudo-geral {
    margin-top: 1rem!important;
}

.home .full-width-cards {
    width: 100%;
}

.home .full-width-card {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.home .card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.home .card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.home .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.home .card-title {
    color: white;
    font-size: 10rem;
    text-transform: uppercase;
    text-align: center;
	margin: auto;
    font-weight: 200;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.home .card-link:hover .card-image {
    transform: scale(1.05);
}

.home .card-link:hover .card-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.titulo-card.text-light {
    background-color: rgba(0, 0, 0, 0.3);
}

.titulo-card.text-dark {
    background-color: rgba(255, 255, 255, 0.3);
}


/* Melhorias para telas pequenas */
@media (max-width: 768px) {
	.home .conteudo-geral {
		margin-top: 1rem!important;
	}

    .dynamic-color-mobile,
    .card-title {
        font-size: 1.5rem;
        /* Tamanho maior para mobile */
    }
}

/* ==============================================
     PÁGINA ARCHIVE (LISTAGEM)
     ============================================== */

     
.archive .titulo-pagina{
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-size: 7rem;
    font-weight: 200;
}

.archive .card {
    border: 0px;
}

.archive .box-img-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    aspect-ratio: 16/9;
}

.archive .box-img-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.archive .card:hover .box-img-card img {
    transform: scale(1.05);
}

.archive .card-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 5px 0 5px;
    border: none;
}

/* Fallback para navegadores sem suporte a aspect-ratio */
@supports not (aspect-ratio: 16/9) {
    .archive .box-img-card::before {
        content: "";
        display: block;
        padding-top: 56.25%;
        /* 16:9 Aspect Ratio */
    }
}

/* ==============================================
     HOVER OVERLAY
     ============================================== */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 15px;
    box-sizing: border-box;
}

.box-img-card:hover .hover-overlay {
    opacity: 1;
}

.hover-content {
    width: 100%;
}

.hover-content p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.hover-content p:last-child {
    margin-bottom: 0;
}

.post-type-archive-fotografias .card-title a{
    color: black;
    text-decoration: none;
}


/* TAXONOMIAS */
.tax-colecoes .titulo-pagina {
    font-size: 5rem;
}


/* Estilos para o carrossel com setas */
.simple-gallery-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%; /* Grande área clicável */
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s, background-color 0.3s;
}

.simple-gallery-carousel:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow.prev {
    left: 0;
    justify-content: flex-start;
}

.carousel-arrow.next {
    right: 0;
    justify-content: flex-end;
}

/* Ícones das setas */
.carousel-arrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    margin: 0 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.carousel-arrow.prev::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z'/%3E%3C/svg%3E");
}

.carousel-arrow.next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E");
}

/* Efeitos de hover */
.carousel-arrow:hover::after {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Mostrar sempre em mobile */
@media (max-width: 768px) {
    .carousel-arrow {
        opacity: 1;
        width: 25%; /* Reduz um pouco a área em mobile */
    }
    
    .carousel-arrow::after {
        width: 30px;
        height: 30px;
        background-size: 15px;
        margin: 0 10px;
    }
}
/* ==============================================
     PÁGINA SINGLE (DETALHES DO FILME)
     ============================================== */
     
.single .header .logo .site-logo-secundaria {
    max-height: 60px; 
}
.single .header .logo .site-logo-secundaria{
    max-height: 60px;
}
.single .conteudo {
    height: auto;
    background-color: #fff;
}

.banner-single-filme {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 800px;
    overflow: hidden;
    margin-bottom: 40px;
}

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

.background-image-single {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.lightbox-trigger:hover .background-image-single {
    transform: scale(1.03);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.filme-header-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    padding: 0 5%;
    color: #fff;
}

.titulo-filme {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0.9;
    transition: all 0.3s ease;
    opacity: 0.8;
    z-index: 1;
}

.play-button svg {
    width: 72px;
    height: 72px;
    transition: all 0.3s ease;
}

.lightbox-trigger:hover .play-button {
    opacity: 1;
}

.lightbox-trigger:hover .play-button svg {
    transform: scale(1.1);
}

/* Informações do filme */
.single-filme-detalhes .box-informacoes-filme .info-filme {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single-filme-detalhes .box-informacoes-filme .infos {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    padding: 15px;
}

.single-filme .info-filme .infos .titulo-info-filme {
    color: #5b5b5b;
    font-weight: 500;
}

.single-filme .info-filme .infos .texto-info-filme {
    color: black;
    font-weight: 300;
}

.single-filme-detalhes .info-cartaz {
    max-width: 400px;
    height: 500px;
    padding: 15px;
}

.single-filme-detalhes .info-cartaz .imagem-cartaz {
    width: 100%;
    height: 100%;
}

/* Estilos para os frames do filme */
/* .frames-grid {
    display: grid;
    gap: 15px;
} */

.frame-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.frame-item:hover {
    transform: scale(1.03);
}

.frame-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* @media (min-width: 768px) {
    .frames-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .frames-grid {
        grid-template-columns: repeat(4, 1fr);
    }
} */


/* ==============================================
     RODAPÉ
     ============================================== */
/* Estrutura principal do rodapé */

.home .site-footer{
    margin-top: 1rem!important;
}
.archive .site-footer{
    margin-top: 3rem;
}

.single .site-footer{
    margin-top: 3rem;
}

.wp-singular .site-footer{
    margin-top: 3rem;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
    font-size: 0.9rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

/* Estilos para cada seção */
.footer-brand .footer-logo img {
    max-height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.site-title {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #ffffff;
}

.footer-description p {
    margin: 0;
    line-height: 1.6;
    color: #b3b3b3;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

/* barra embaixo do titulo */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ff0000;
    display: none;
}

/* Navegação */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.8rem;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* Redes Sociais */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #ff0000;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
}

/* Rodapé inferior */
.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    color: #b3b3b3;
    margin-bottom: 1rem;
}

.footer-copyright p{
    font-size: 0.7rem;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #ffffff;
}


.credito-dev p{
    display: flex;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    
}
.credito-dev p a{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }

    .site-title {
        text-align: center;
    }
    
    .footer-description p {
        text-align: center;
    }

    .footer-col{
        text-align: center;
    }

    .social-icons{
        justify-content: center;
    }

    .footer-heading::after {
        display: none;
    }
    
}

/* ==============================================
     PAGE
     ============================================== */

.page .box-titulo-pagina {
   margin: auto;
}

.page .titulo-pagina {
    font-weight: 200;
    font-size: 7rem;
    text-align: center;
    text-transform: uppercase;
}

.page .artigo {
    display: flex;
    justify-content: center;
}


/* ==============================================
     PÁGINA CONTATO
     ============================================== */
/* Estilos do formulário */
.vincent-contact-form {
    /* background-color: #f8f9fa; */
    padding: 2rem;
    border-radius: 8px;
    /* border: 1px solid #dee2e6; */
}

/* Validação */
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

/* Botão de loading */
.btn .loading-spinner {
    display: inline-block;
    margin-left: 8px;
}

/* Alertas */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}


/* ==============================================
     SINGLE FOTOGRAFIAS
     ============================================== */

.single-fotografia-detalhes {
    max-width: 1200px;
    margin: 0 auto;
}

.box-fotografias {
    padding: 15px;
}

.info-fotografia {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.infos,
.info-imagem {
    flex: 1;
    min-width: 300px;
}

.titulo-info-fotografia {
    color: #333;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.texto-info-fotografia {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.imagem-principal {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .info-fotografia {
        flex-direction: column;
    }

    .info-imagem {
        order: -1;
        margin-bottom: 20px;
    }

    .banner-single-filme {
        height: 60vh;
    }

    .play-button svg {
        width: 56px;
        height: 56px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .banner-single-fotografia {
        height: 50vh;
    }

    .titulo-fotografia {
        font-size: 2rem;
    }

    .fotografia-header-content {
        padding: 0 20px;
        bottom: 30px;
    }

    .galeria-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .galeria-item img {
        height: 150px;
    }

    .galeria-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .galeria-item img {
        height: 150px;
    }

    .foto-unica img {
        max-height: 60vh;
    }
}

.banner-single-fotografia {
    position: relative;
    height: 70vh;
    max-height: 800px;
    overflow: hidden;
}

.banner-container {
    height: 100%;
    position: relative;
}

.background-image-single {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.fotografia-header-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 0 40px;
    z-index: 1;
    color: white;
}

.titulo-fotografia {
    /* font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); */
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    opacity: 0.8;
}

.galeria-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
    width: fit-content;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

/* Estilos para a galeria */
.galeria-fotografias {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.titulo-galeria {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.galeria-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.galeria-item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.02);
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.galeria-item:hover img {
    opacity: 0.9;
}

/* Estilos para a visualização da fotografia */
.visualizacao-fotografia {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.titulo-galeria {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Estilo para galeria */
.galeria-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.galeria-item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.02);
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Estilo para foto única */
.foto-unica-container {
    max-width: 100%;
    margin: 0 auto;
}

.foto-unica img {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Garante que apenas um dos containers será mostrado */
.galeria-container,
.foto-unica-container {
    display: none;
}

/* Mostra o container apropriado baseado no que existe */
.has-galeria .galeria-container,
.has-single-image .foto-unica-container {
    display: block;
}




/* ==============================================

    ARCHIVE SERVIÇOS
    =============================================*/



/* Estilos para o efeito hover */
.post-type-archive-servicos .box-img-card.hover-effect {
    position: relative;
    overflow: hidden;
}

.post-type-archive-servicos .box-img-card.hover-effect img {
    transition: transform 0.3s ease;
}

.post-type-archive-servicos .box-img-card.hover-effect .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 15px;
}

.post-type-archive-servicos .box-img-card .hover-effect:hover .hover-content {
    opacity: 1;
}

.post-type-archive-servicos .box-img-card.hover-effect:hover img {
    transform: scale(1.05);
}

.post-type-archive-servicos .resumo-servico {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
}
.post-type-archive-servicos .card:hover .card-title{
    font-weight: 400;
}





/* ==============================================
     TAXONOMIA TIPO SERVIÇO
     ============================================== */

  





/* ==============================================
     BOLG, NOTÍCIAS
     ============================================== */


.blog .card-title .link-titulo {
    margin-bottom: var(--bs-card-title-spacer-y);
    color: var(--bs-card-title-color);
}

/* Single */

.box-post-imagem-destacada {
    width: 100%;
}

.box-post-imagem-destacada .img-post-destacada {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.paginacao h5 a {
    color: black;
}

.paginacao h5 a:hover {
    color: #333
}



/* Pesquisa */

/* Ícone da lupa no header */
.pesquisa-icon button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Overlay fullscreen */
.overlay-busca {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999999;
}

.overlay-busca.aberto {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.overlay-conteudo {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.search-form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.search-field {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    /* color: #fff; */
    outline: none;
    transition: all 0.3s ease;
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    color: #111;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.home .search-field{
    color: #fff;
}


/* Container principal */
/* Container principal */
.search-results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Cabeçalho */
.search-results-header {
    margin-bottom: 3rem;
    text-align: center;
}

.search-results-title {
    font-size: 2rem;
    margin: 0 0 1rem;
    color: #333;
}

.search-query {
    color: #ff0000;
    font-weight: 600;
}

.search-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

#overlayBusca.search-field {
    color: #ffff;
}

.search-submit {
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #111;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid black;
    transition: background-color 0.3s;
}

.search-submit:hover {
    background-color: #cfcfcf;
}

/* Grid de resultados */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.search-result-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.search-result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-result-thumbnail {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.search-result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-result-item:hover .search-result-thumbnail img {
    transform: scale(1.05);
}

.search-result-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.search-result-title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.search-result-title a {
    color: #1d2327;
    text-decoration: none;
}

.search-result-title a:hover {
    color: #0073aa;
    text-decoration: underline;
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: #50575e;
    margin-bottom: 0.75rem;
}

.search-result-excerpt {
    margin: 0.5rem 0 1rem;
    color: #3c434a;
    line-height: 1.6;
}

.search-result-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
}

.search-result-link:hover {
    text-decoration: underline;
}

/* Paginação */
.search-pagination {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

/* Nenhum resultado */
.no-results {
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 2rem 0;
}

.no-results-content svg {
    margin-bottom: 1rem;
    color: #a7aaad;
}

.no-results h2 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: #1d2327;
}

.no-results p {
    color: #3c434a;
}

/* Responsividade */
@media (max-width: 782px) {
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-title {
        font-size: 1.5rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-field,
    .search-submit {
        width: 100%;
    }
}


/* ==============================================
     MEDIA QUERIES
     ============================================== */

     /* Responsividade Titulos das Páginas */
     @media (min-width: 769px)and (max-width: 1024px) {
        .home .card-title {
            font-size: 6rem;
        }
    
        .archive .titulo-pagina {
            font-size: 6rem;
        }
    
        .page .titulo-pagina{
            font-size: 6rem;
        }
    }
    
    
    
    /* Tablets e dispositivos médios */
    @media (min-width: 769px) and (max-width: 993px) {
        .card {
            flex-direction: column;
            flex-wrap: wrap;
            margin-top: 30px;
            align-content: center;
        }
    
        .card-filmes {
            padding-bottom: unset;
        }
    
        .titulo-card {
            position: absolute;
            left: 1%;
            top: 65%;
            z-index: 3;
            color: #fff;
        }
    
        .box-informacoes p {
            display: none;
        }
    
        .img-card {
            object-fit: cover;
        }
    }
    
    /* Dispositivos móveis */
    @media (max-width: 767px) {
        .box-img-card {
            /* height: 400px; */
            height: 220px;
        }
    
        .card {
            flex-direction: column;
            flex-wrap: wrap;
            margin-top: 30px;
        }
    
        .titulo-card {
            font-size: 3.5rem;
            /* z-index: 3; */
        }
    
        .box-informacoes p {
            display: none;
        }
    
        .img-card {
            object-fit: cover;
        }
    
        .card-filmes {
            padding-bottom: unset;
        }
    
        /* Archive */
        .archive .box-img-card {
            max-height: 180px;
        }
    
        /* Blog  */
        .blog .box-img-card {
            max-height: 180px;
        }
    }
    
    /* Dispositivos móveis pequenos */
    @media (max-width: 390px) {
        .titulo-card {
            font-size: 2.6rem;
            /* z-index: 3; */
        }
    }
    
    @media (max-width: 575.98px) {
    
        .archive .box-img-card {
            max-height: 180px;
        }
    
        /* Blog  */
        .blog .box-img-card {
            max-height: 180px;
        }
    }
    
    @media (max-width: 350px){
        .header-paginas .topo .logo .site-logo {
          max-height: 30px!important;
        }
    }
    
    /* Dispositivos móveis grandes / tablets pequenos */
    @media (min-width: 576px) and (max-width: 767.98px) {
        .archive .box-img-card {
            max-height: 220px;
        }
    
        /* Blog  */
        .blog .box-img-card {
            max-height: 220px;
        }
    }
    
    /* Tablets */
    @media (min-width: 768px) and (max-width: 991.98px) {
        .titulo-card {
            font-size: 6rem;
            width: 100%;
        }
    
        .archive .box-img-card {
            max-height: 200px;
        }
    
        /* Blog  */
        .blog .box-img-card {
            max-height: 200px;
        }
    }
    
    /* Desktop pequeno */
    @media (min-width: 992px) and (max-width: 1199.98px) {
        .titulo-card {
            font-size: 5rem;
        }
    
        .archive .box-img-card {
            max-height: 280px;
        }
    
        /* Blog  */
        .blog .box-img-card {
            max-height: 280px;
        }
    }
    
    /* Desktop grande */
    @media (min-width: 1200px) {
        .archive .box-img-card {
            max-height: 320px;
        }
    
        /* Blog  */
        .blog .box-img-card {
            max-height: 320px;
        }
    }
    
    /* Responsividade Single Filme */
    @media (max-width: 992px) {
        .filme-content-container {
            grid-template-columns: 1fr;
        }
    
        .filme-sidebar {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
    
        .filme-cartaz {
            width: 250px;
        }
    
        .filme-info-rapida {
            flex: 1;
            min-width: 250px;
        }
    
    }
    
    @media (max-width: 768px) {
        
        .header-paginas .topo .logo .site-logo {
          max-height: 40px;
        }
        
        .single .header .logo .site-logo-secundaria{
            max-height: 40px;
        }
        
        .home .card-title {
            font-size: 6rem;
        }
    
        .archive .titulo-pagina {
            font-size: 6rem;
        }
    
        .page .titulo-pagina{
            font-size: 6rem;
        }
        
        .hover-content{
            display: none;
        }
    
    }
    
    @media (max-width: 576px) {
        .banner-single-filme {
            height: 50vh;
        }
    
        .titulo-filme {
            font-size: 2rem;
        }
    
        .box-informacoes-filme .info-filme .infos {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }
    }
    
    @media (max-width: 480px) {
        .home .card-title {
            font-size: 3rem;
        }
    
        .archive .titulo-pagina {
            font-size: 2.6rem!important;
        }
    
        .page .titulo-pagina{
            font-size: 3rem;
        }
    
    }
    
     @media(max-width:350px ){
         .site-logo {
            max-height: 33px;
        }

        .single .header .logo .site-logo-secundaria{
            max-height: 33px;
        }
    }
    
    @media(min-width: 1400px) {
        /* .navegacao {
            padding-left: 2% ;
        } */
        /* .pesquisa-icon{
            padding-right: 9%;
        } */
    }
    
    @media(min-width: 1600px) {
        .banner-destaques {
            width: 1320px;
            margin-left: auto;
            margin-right: auto;
        }
        .navegacao {
            padding-left: 2% ;
        }
    }
    