/*snoopjodzz 2025*/

:root{
    --headerSize: 73px;
    --orange: #DF7D24;
    --yellow: #FFFF33;
    --blue: #0E2B43;
    --blue-25: color-mix(in srgb, var(--blue) 25%, transparent);
    --blue-90: color-mix(in srgb, var(--blue) 90%, transparent);
    --white: #FFF9EC;
    --black: #22181C;
    --black-10: color-mix(in srgb, var(--black) 10%, transparent);
    --black-90: color-mix(in srgb, var(--black) 90%, transparent);
}

@font-face {
    font-family: 'Roboto';
    src: url(../fonts/Roboto.ttf);
}

*{
    font-family: 'Roboto';
}

.preloader{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 999;
    background-color: var(--blue-90);
}

.preloader svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
    display: inline-block;
    -webkit-filter: drop-shadow( 0px 0px 8px rgba(84, 108, 121, .75));
    filter: drop-shadow( 0px 0px 8px rgba(84, 108, 121, .75));
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0%{
        -webkit-filter: drop-shadow( 0px 0px 8px rgba(84, 108, 121, .75));
        filter: drop-shadow( 0px 0px 8px rgba(84, 108, 121, .75));
    }
    100%{
        -webkit-filter: drop-shadow( 0px 0px 12px rgba(255, 249, 236, .75));
        filter: drop-shadow( 0px 0px 12px rgba(255, 249, 236, .75));
    }
}

body{
    background-color: var(--white);
}

main{
    padding-top: var(--headerSize);
}

.page__title{
    color: var(--blue);
    line-height: 100%;
    font-size: 40px;
    font-weight: 500;
}

h2{
    color: var(--blue);
    line-height: 100%;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}

ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img{
    display: inline-block;
    max-width: 100%;
}

a{
    text-decoration: none;
}

.btns{
    padding: .5rem 1rem;
    border: 0;
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

.btns--orange{
    background-color: var(--orange);
    color: var(--white);
}

.btns--orange:hover{
    background-color: var(--yellow);
    color: var(--blue);
}

.btns--blue{
    background-color: var(--blue);
    color: var(--white);
}

.btns--blue:hover, .btns--blue.selected{
    background-color: var(--orange);
    color: var(--white);
}

.site-header{
    background-color: var(--white);
    z-index: 99;
    box-shadow: 0 -5px 35px -5px var(--black-10);
}

.site-header h1{
    margin: 0;
    line-height: 0;
}

.site-header nav li{
    display: inline-block;
    margin: 0 .25rem;
}

.site-header nav li:last-of-type{
    margin-right: 0;
}

.site-header nav a{
    color: var(--blue);
    line-height: 150%;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.site-header nav a:hover, .site-header nav a.current{
    color: var(--orange);
}

.site-header .custom-logo{
    max-width: 150px;
}

.banner__item{
    height: 75vh;
    height: 75svh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner__item__content{
    color: var(--white);
    font-size: 40px;
    font-weight: 600;
    line-height: 100%;
}

.banner__item__content strong{
    font-weight: 600;
    color: var(--yellow);
}

.banner__item__content *:last-child{
    margin-bottom: 0;
}

.project{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
    border-radius: 5px;
    width: 100%;
    aspect-ratio: 16/9;
}

.project p{
    color: var(--white);
    font-size: 20px;
    line-height: 100%;
    font-weight: 400;
}

.project button{
    background-color: transparent;
    border: solid 1px var(--white);
    color: var(--white);
    font-size: 16px;
    line-height: 44%;
    font-weight: 500;
    padding: .75rem;
    border-radius: 5px;
    aspect-ratio: 1;
    transition: all .3s ease-in-out;
}

.project:hover > button{
    background-color: var(--orange);
    border: solid 1px var(--orange);
}

footer{
    background-color: var(--blue);
}

.h2--footer{
    color: var(--white);
    text-align: left;
}

.inputs{
    width: 100%;
    height: 100%;
    color: var(--blue);
    background-color: var(--white);
    border-radius: 5px;
    padding: .5rem 1rem;
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
    border: 0;
}

.inputs::placeholder{
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
    border: 0;
    opacity: .75;
    color: var(--blue);
}

#consent{
    accent-color: var(--yellow);
}

.labels{
    font-size: 14px;
    line-height: 120%;
    font-weight: 300;
    color: var(--white); 
    vertical-align: middle;
}

.labels a{
    font-size: 14px;
    line-height: 100%;
    font-weight: 300;
    color: var(--white);
    transition: all .3s ease-in-out;
}

.labels a:hover{
    color: var(--orange);  
}

.footer__email{
    color: var(--white);
    line-height: 100%;
    font-size: 35px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    display: block;
    transition: all .3s ease-in-out;
}

.footer__name{
    color: var(--orange);
    line-height: 100%;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    width: 100%;
}

.footer__tel{
    color: var(--white);
    line-height: 100%;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    display: block;
    width: 100%;
    transition: all .3s ease-in-out;
}

.footer__email:hover, .footer__tel:hover{
    color: var(--orange);
}

.footer__custo{
    color: var(--white);
    line-height: 100%;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    width: 100%;
    display: block;
}

footer .menu li{
    display: inline-block;
    margin: 0 .25rem;
}

footer .menu li:last-of-type{
    margin-right: 0;
}

footer .menu li:first-of-type{
    margin-left: 0;
}

footer .menu a{
    color: var(--white);
    line-height: 100%;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

footer .menu a:hover{
    color: var(--orange);
}

.copy{
    color: var(--white);
    line-height: 100%;
    font-size: 16px;
    font-weight: 300;
}

.projects__content{
    color: var(--blue);
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
}

.projects__content strong{
    font-weight: 500;
}

.projects__content a{
    color: var(--blue);
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
    transition: all .3s ease-in-out;
}

.projects__content h2{
    text-align: left;
    margin-bottom: 1rem;
}

.projects__content--page h2{
    color: var(--orange);
    text-align: center;
}

.projects__content a:hover{
    color: var(--orange);
}

.projects__content *:last-child{
    margin-bottom: 0;
}

.projects__content strong{
    font-weight: 500;
}

.pagination ul{
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.pagination ul li{
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination ul li:first-child a, .pagination ul li:first-child span{
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.pagination ul li:last-child a, .pagination ul li:last-child span{
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.pagination ul li .page-numbers{
    padding: .5rem;
    color: var(--blue);
    font-size: 16px;
    min-width: 35px;
    aspect-ratio: 1;
    line-height: 115%;
    text-align: center;
    font-weight: 400;
    border: solid 1px var(--blue);
    background-color: var(--white);
    display: block;
}

.pagination ul li a.page-numbers{
    padding: .5rem;
    color: var(--blue);
    font-size: 16px;
    min-width: 35px;
    aspect-ratio: 1;
    line-height: 115%;
    text-align: center;
    font-weight: 400;
    border: solid 1px var(--blue);
    background-color: var(--white);
    display: block;
    transition: all .3s ease-in-out;
}

.pagination ul li a.page-numbers:hover, .pagination ul li .page-numbers.current{
    color: var(--white);
    background-color: var(--blue);
}

.project__local{
  font-size: 20px;
  color: var(--yellow);  
}

.gallery{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 150px;
    gap: .25rem;
}

.gallery__item{
    border-radius: 5px;
    overflow: hidden;
}

.gallery__item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all .3s ease-in-out;
}

.gallery__item:hover img{
    transform: scale(1.1);
}

.gallery__item--1{
    grid-column: span 4;
    grid-row: span 2;
}

.gallery__item--2{
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item--3{
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item--4{
    grid-column: span 4;
    grid-row: span 2;
}

.gallery__item--5{
    grid-column: span 6;
    grid-row: span 3;
}

.gallery__item--6{
    grid-column: span 4;
    grid-row: span 2;
}

.gallery__item--7{
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item--8{
    grid-column: span 3;
    grid-row: span 1;
}

.gallery__item--9{
    grid-column: span 3;
    grid-row: span 1;
}

.gallery__item--10{
    grid-column: span 1;
    grid-row: span 1;
}

.gallery__item--11{
    grid-column: span 1;
    grid-row: span 1;
}

.gallery__item--12{
    grid-column: span 1;
    grid-row: span 1;
}

@media only screen and (orientation: portrait){
    .banner__item{
        height: 40vh;
        height: 40svh;
    }
}

@media only screen and (max-width: 992px){
    .footer__email{
        font-size: 25px;
    }

    .footer__name{
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px){
    :root{
        --headerSize: 54px;
    }

    .banner__item__content{
        font-size: 25px;
    }

    .page__title{
        font-size: 30px;
    }

    h2{
        font-size: 25px;
    }

    .gallery__item--1{
        grid-row: span 1;
    }

    .gallery__item--2{
        grid-row: span 1;
    }

    .gallery__item--3{
        grid-row: span 1;
    }

    .gallery__item--4{
        grid-row: span 1;
    }

    .gallery__item--5{
        grid-row: span 2;
    }

    .gallery__item--6{
        grid-row: span 1;
    }

    .gallery__item--7{
        grid-row: span 1;
    }
}

@media only screen and (max-width: 767px) and (orientation: portrait){
    .preloader svg{
        width: 75%;
    }
}