/* Import external fonts and icons */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

/* ============ VARIÁVEIS E ESTILOS GERAIS ============ */
:root {
    --color-dark: #000;
    --text-dark: #fff;
    --transition-base: 0.3s ease;
    --z-index-base: 100;
    --z-index-gallery: 200;
    --z-index-text: 400;
    --z-index-ui: 10004;
    --z-index-modal: 2000;
}

/* ============ BASE ============ */
html, body {
    cursor: default !important;
    pointer-events: auto !important;
    overflow: hidden !important;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100.1vh;
    overflow-y: auto;
}

body {
    background-color: var(--color-dark) !important;
    color: var(--text-dark) !important;
    font-family: 'Raleway', sans-serif;
    touch-action: auto;
}

/* Estilos para a logo */
#portfolioLogoLink {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10003;
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

#portfolioLogo {
    width: 110px;
    height: auto;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Estilos para o link de mensagem */
#messageLink {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: var(--z-index-ui);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(5px);
    pointer-events: auto;
    transition: background var(--transition-base), transform 0.2s ease;
}

#messageLink:hover {
    transform: scale(1.1) rotate(15deg);
    background: rgba(255, 255, 255, 0.3);
}

#messageLink i {
    font-size: 18px;
    color: var(--text-dark);
}

/* Estilos para o texto do portfólio */
#slide-portfolio-text {
    position: absolute;
    top: calc(50% - 12vh);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5vh;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Raleway', sans-serif;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

/* Estilos para a descrição do portfólio */
#portfolio-description {
    position: absolute;
    top: calc(50% - 9vh);
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.9vh;
    color: #FFFFFF;
    font-family: 'Raleway', sans-serif;
    z-index: 99999;
    max-width: 1200px;
    text-align: center;
    line-height: 1.8;
    opacity: 0;
    pointer-events: auto;
    transition: opacity var(--transition-base);
}

#portfolio-description a {
    color: #99db28;
    text-decoration: none;
}

#portfolio-description a:hover {
    color: #caf285;
}

/* Estilos para os círculos de paginação */
#pagination-container a.pagination-circle {
    width: 1.2vh;
    height: 1.2vh;
    background-color: #3d3d3d;
    border: 1px solid #aaaaaa;
    border-radius: 50%;
    margin: 0 0.3vh;
    pointer-events: auto;
    transition: background-color 0.3s, border-color 0.3s;
    opacity: 1;
}

#pagination-container a.pagination-circle.active {
    background-color: #FFFFFF;
    border: 1px solid #aaaaaa;
}

#pagination-container a.pagination-circle:hover:not(.active) {
    background-color: #99db28;
    border: 1px solid #99db28;
}

/* Estilos para os círculos de navegação (anterior e próximo) */
.nav-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4.222vh;
    height: 4.222vh;
    background-color: #000000;
    border: 1px solid #aaaaaa;
    border-radius: 50%;
    z-index: 9998;
    pointer-events: auto;
    transition: background-color var(--transition-base), border var(--transition-base);
}

.nav-circle:hover {
    background-color: #99db28;
    border: 1px solid #99db28;
}

.nav-circle-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.nav-circle-icon {
    width: 2.2vh;
    height: 2.2vh;
}

.nav-circle-icon path {
    stroke: #FFFFFF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke var(--transition-base);
}

.nav-circle:hover .nav-circle-icon path {
    stroke: #000000;
}

/* Estilos para a área de portfólio */
.portfolio-area {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    max-width: calc(100% - 20%);
    max-height: calc(100% - 20%);
    padding: 21px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 255, 0, 0.0);
    z-index: 9999;
    pointer-events: auto;
    opacity: 0;
}

/* Estilos para o fundo do slide */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.0);
    z-index: 1;
}

/* Estilos para imagens de slides */
.slide-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 2;
    opacity: 0;
}

/* Estilos para o spinner de carregamento */
.image-spinner {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.image-spinner svg {
    width: 100%;
    height: 100%;
}

/* Estilos para mensagem de erro */
.error-message {
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    z-index: 2;
    text-align: center;
}

/* Estilos para o player de vídeo */
.player-container {
    width: 80%;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
    z-index: 2;
}

.youtube-player {
    width: 100%;
    height: 100%;
    border: none;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 4;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 5;
}

.play-icon svg {
    width: 100%;
    height: 100%;
    fill: #FFFFFF;
}


#backButton svg {
    width: 24px;
    height: 24px;
    fill: var(--text-dark);
}



/* ============ COMPONENTES PRINCIPAIS ============ */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: var(--z-index-modal);
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

#loadingScreen.hidden {
    opacity: 0;
    pointer-events: none;
}

#loadingPercent {
    color: var(--text-dark);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    transition: color var(--transition-base);
}

#globeContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-index-base);
    opacity: 1;
    pointer-events: pointer !important;
    background: transparent !important;
}



#gallery3DContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: var(--z-index-gallery);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    background: transparent !important;
}

#gallery3DContainer.visible {
    opacity: 1;
    pointer-events: none;
}

#gallery3DContainer canvas,
#globeContainer canvas {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    outline: none;
    cursor: pointer !important;
    background: transparent !important;
    object-fit: contain;
    pointer-events: none;
}

#gallery3DContainer canvas:hover,
#globeContainer canvas:hover {
    cursor: default !important;
    pointer-events: auto;
}



#portfolioLogoLink,
#backButton,
#galleryCounter,
#galleryControls {
    pointer-events: auto;
}

body > * {
    pointer-events: none;
}

body > *:hover {
    pointer-events: auto;
}

#projectDetailContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 0 2%;
    overflow-y: auto;
    z-index: 500;
    pointer-events: none;
    transition: opacity var(--transition-base), left 0.5s ease;
    background-color: transparent;
    opacity: 0;
    box-sizing: border-box;
    display: none;
}

#projectDetailContainer.visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

#galleryTextContainer {
    position: relative;
    top: 60px !important;
    bottom: 60px !important;
    left: 20px !important;
    width: 18vw !important;
    height: 80vh !important;
    z-index: 2000 !important;
    background: transparent;
    color: var(--text-dark);
    text-align: left !important;
    font-family: 'Raleway', sans-serif;
    pointer-events: none;
    opacity: 0;
    transform: none !important;
    transition: opacity 0.3s ease;
}

#galleryTextContainer.visible {
    opacity: 1;
    pointer-events: auto;
}

#galleryTextContainer::-webkit-scrollbar {
    width: 5px;
}

#galleryTextContainer::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.gallery-text-title {
    font-size: 21px;
    font-weight: 100;
    font-family: 'Raleway', sans-serif;
    margin: 0 0 20px;
    color: #FFFFFF !important;
    text-transform: uppercase;
}

.number-circle {
    pointer-events: auto !important;
    z-index: 5000 !important;
    user-select: none;
}

.gallery-text-highlight {
    font-size: 3vh;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.7);
}

.gallery-text-content {
    font-size: 2vh;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.7);
}

.gallery-text-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.gallery-text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.5vh;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background var(--transition-base), transform var(--transition-base);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.7);
}

.gallery-text-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#galleryControls {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: var(--z-index-ui);
    display: flex;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

#galleryControls.visible {
    opacity: 1;
    pointer-events: auto;
    display: flex;
}

.gallery-nav-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background var(--transition-base), transform var(--transition-base);
}

.gallery-nav-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.gallery-nav-button svg {
    width: 24px;
    height: 24px;
    fill: var(--text-dark);
    transition: fill var(--transition-base);
}

#videoPlayerContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: none;
    background: rgba(0, 0, 0, 0.9);
    transition: opacity var(--transition-base);
}

#videoPlayer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 960px;
    height: 540px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

#videoCloseButton {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-base), transform var(--transition-base);
}

#videoCloseButton:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#videoCloseButton svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
    transition: stroke var(--transition-base);
}

.post-tooltip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5vh;
    font-weight: 700;
    line-height: 1.2;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base), color var(--transition-base);
    z-index: var(--z-index-base);
    max-width: 80%;
    text-align: center;
    color: var(--text-dark);
}

.post-tooltip.artigo-tooltip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5vh;
    font-weight: 700;
    line-height: 1.2;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base), color var(--transition-base);
    z-index: var(--z-index-base);
    max-width: 80%;
    text-align: center;
    color: var(--text-dark);
}

/* Estilos para o botão "VOLTAR AOS PROJETOS" */
#voltar-projetos-text {
    position: absolute;
    bottom: 1.098vh;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.278vh;
    color: #FFFFFF;
    font-size: 1.2112vh;
    font-family: 'Raleway', sans-serif;
    z-index: 9999;
    cursor: pointer;
    opacity: 0; /* Iniciar invisível */
    transition: color 0.3s ease; /* Transição suave para a mudança de cor */
}

#voltar-projetos-text:hover {
    color: #99db28;
}

.highlight-circle, .link-circle {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: black;
    border: 1px solid white;
    border-radius: 50%;
    z-index: 3000;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.titulonav-principal {
    position: absolute;
    bottom: 4.8vh;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    font-size: 1.867vh;
    font-family: 'Raleway', sans-serif;
    z-index: 9999;
    pointer-events: none;
    max-width: 450px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
}


.PREVS-circle {
    position: absolute;
    bottom: 2.1vh;
    width: 1.5vh;
    height: 1.5vh;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
}

.NEXTS-circle {
    position: absolute;
    bottom: 2.1vh;
    width: 1.5vh;
    height: 1.5vh;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
}

.PREVS-tooltip {
    position: absolute;
    bottom: calc(2.1vh + 1.5vh + 6px);
    transform: translateX(-50%);
    font-size: 1.5vh;
    color: #99db28;
    font-family: 'Raleway', sans-serif;
    z-index: 9999;
    pointer-events: none;
    text-align: center;
    display: none;
    max-width: 210px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
}



.NEXTS-tooltip {
    position: absolute;
    bottom: calc(2.1vh + 1.5vh + 6px);
    transform: translateX(-50%);
    font-size: 1.5vh;
    color: #99db28;
    font-family: 'Raleway', sans-serif;
    z-index: 9999;
    pointer-events: none;
    text-align: center;
    display: none;
    max-width: 210px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
}


.linhaesquerda {
    position: absolute;
    bottom: 2.7vh;
    width: 27vw;
    height: 1px;
    background-color: #4c4c4c;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

.linhadireita {
    position: absolute;
    bottom: 2.7vh;
    width: 27vw;
    height: 1px;
    background-color: #4c4c4c;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}


/* 


inicio mobile



*/


/* Media query para mobile */
@media (max-width: 768px) {
    #portfolioLogoLink {
        position: fixed;
        left: 9px;
        top: 9px;
        transform: none;
        z-index: 10003;
        display: block;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    #portfolioLogo {
        width: 45px;
        height: auto;
        display: block;
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    #messageLink {
        position: fixed;
        top: 9px;
        right: 9px;
        transform: none;
        width: 21px;
        height: 21px;
        z-index: 10003;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        backdrop-filter: blur(5px);
        transition: background var(--transition-base), transform 0.2s ease;
    }

    #messageLink i {
        font-size: 15px;
        color: var(--text-dark);
    }

    #slide-portfolio-text {
        top: calc(50% - 20vh);
        font-size: 3vh;
    }

    #portfolio-description {
        top: calc(50% - 1vh);
        font-size: 1.6vh;
        max-width: 90%;
    }

    #projectDetailContainer {
        width: 100%;
        padding: 0 5%;
    }



    .project-title {
        font-size: 3vh;
    }

   

    .project-categories,
    .project-content,
    .project-content h2 {
        font-size: 1.8vh;
    }

    #backButton,
    .gallery-nav-button,
    #videoCloseButton {
        width: 35px;
        height: 35px;
    }

   

    

   
#galleryTextContainer {
        width: 90% !important;
        left: 20px !important;
        top: 50px !important;
        bottom: 50px !important;
        height: 100vh !important;
        transform: none !important;
        position: relative;
    }

    

    #backButton svg,
    .gallery-nav-button svg,
    #videoCloseButton svg {
        width: 20px;
        height: 20px;
    }


    #galleryCounter {
        right: 90px;
        width: 50px;
        height: 35px;
        font-size: 14px;
    }



    

    .featured-image {
        width: 80vw;
        height: 80vw;
    }

    .text-block-circle {
        position: absolute;
        left: 33vw;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background: rgba(0, 0, 0, 1);
        border: 3px solid rgba(255, 255, 255, 1);
        border-radius: 50%;
        z-index: 3000;
        cursor: pointer;
    }

    .text-block-circle-large {
        position: absolute;
        left: calc(33vw - 1345px);
        top: 50%;
        transform: translateY(-50%);
        width: 1360px;
        height: 1360px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        z-index: 2999;
    }

    

    .nav-circle {
        width: 4.5vh;
        height: 4.5vh;
    }

    .nav-circle-link .nav-circle-icon {
        width: 2vh;
        height: 2vh;
    }

    .player-container {
        width: 90%;
        max-width: 640px;
        aspect-ratio: 16 / 9;
    }

    .play-icon {
        width: 60px;
        height: 60px;
    }




    /* 

    VERSAO VERTICAL 

    */

    @media (orientation: portrait) {
        #portfolioLogoLink {
            top: 9px;
            left: 98vw;
            right: 0px;
            transform: none;
        }

        #portfolioLogo {
            width: 75px;
            height: auto;
            transform: rotate(90deg);
            transform-origin: top left;
        }

        #messageLink {
            bottom: 9px;
            left: 90vw;
            right: 0px;
            top: auto;
            transform: none;
        }

        #slide-portfolio-text {
            position: absolute;
            top: calc(50% - 18vh);
            left: 50%;
            transform: translate(-50%, -50%);
            width: 75%;
            font-size: 3.3vh;
            text-align: center;
            color: #FFFFFF;
            font-family: 'Raleway', sans-serif;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-base);
        }

        #portfolio-description {
            position: absolute;
            top: calc(50% - 15vh);
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            font-size: 1.7vh;
            color: #FFFFFF;
            font-family: 'Raleway', sans-serif;
            z-index: 99999;
            max-width: 550px;
            text-align: center;
            line-height: 1.8;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-base);
        }

        #pagination-container a.pagination-circle {
            width: 0.6vh;
            height: 0.6vh;
            margin: 2vh 0.3vh;

           
        }

        
        .player-container {
            width: 95%;
            max-width: 640px;
            aspect-ratio: 16 / 9;
        }

        .video-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .play-icon {
            width: 50px;
            height: 50px;
        }
        .nav-circle {
            width: 2.4vh;
            height: 2.4vh;
        }

        .nav-circle-link .nav-circle-icon {
            width: 1.8vh;
            height: 1.8vh;
        }

        #voltar-projetos-text {
            position: absolute;
            bottom: 1.098vh;
            margin-top: 0.278vh;
            font-size: 1.5vh;
                }

       .titulonav-principal {
            bottom: 5.6vh;
            font-size: 1.9vh;
            }


            .linhaesquerda {
                bottom: 3.6vh;
                width: 21vw;
                
            }

            .linhadireita {
                bottom: 3.6vh;
                width: 21vw;
                
            }

            .PREVS-circle {
                bottom: 2.7vh;
            }


            .PREVS-tooltip {
                bottom: calc(2.7vh + 1.5vh + 6px);
                font-size: 1.5vh;
                max-width: 210px;
            }

            

            .NEXTS-circle {
                bottom: 2.7vh;
            }

            .NEXTS-tooltip {
                bottom: calc(2.7vh + 1.5vh + 6px);
                font-size: 1.5vh;
                max-width: 210px;
            }

    }   
    

    /* 


    VERSAO horizontal


     */


    @media (orientation: landscape) {
        #slide-portfolio-text {
            top: calc(50% - 16vh);
            width: 80%;
            font-size: 6vh;
            }

        #portfolio-description {
            top: calc(50% - 13vh);
            width: 75%;
            font-size: 2.9vh;
            line-height: 1.7;
            }

        #pagination-container a.pagination-circle {
            width: 0.6vh;
            height: 0.6vh;
            margin: 0.6vh 0.3vh;
        }

        .nav-circle {
            width: 3.9vh;
            height: 3.9vh;
        }

        .nav-circle-link .nav-circle-icon {
            width: 2.1vh;
            height: 2.1vh;
        }

        #voltar-projetos-text {
            position: absolute;
            bottom: 1.098vh;
            margin-top: 0.278vh;
            font-size: 2.4vh;
        }

        .titulonav-principal {
            bottom: 5.2vh;
            font-size: 3.3vh;
        }

        .linhaesquerda {
            bottom: 2.4vh;
            width: 12vw;
        }

        .linhadireita {
            bottom: 2.4vh;
            width: 12vw;
        }

        .PREVS-circle {
            bottom: 1.7vh;
        }


            .PREVS-tooltip {
                bottom: calc(1.7vh + 1.5vh + 6px);
                font-size: 1.5vh;
                max-width: 210px;
            }

            

            .NEXTS-circle {
                bottom: 1.7vh;
            }

            .NEXTS-tooltip {
                bottom: calc(1.7vh + 1.5vh + 6px);
                font-size: 1.5vh;
                max-width: 210px;
            }    
    }

}



/* 

VERIFICANDO A NECESSIDADE DOS CODIGOS ABAIXO

 .gallery-text-title {
        font-size: 32px;
    }

    .gallery-text-categories {
        font-size: 10px;
    }

    .gallery-text-highlight {
        font-size: 2.5vh;
    }

    .gallery-text-content {
        font-size: 1.8vh;
    }

    .gallery-text-button {
        width: 40px;
        height: 40px;
        font-size: 1.2vh;
    }



*/


