@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


@layer layout{

    body {
        margin: 0;
        font-family: "Roboto Condensed", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        background: rgb(0, 0, 0);
        color: white;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        flex-direction: column;
    }
    
    h1 {
        font-size: 3rem;
        text-transform: uppercase;
        letter-spacing: 2.5rem;
        display: flex;
        box-sizing: border-box;
        
    }
    
    h2 {
        font-weight: 500;
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: 1rem;
        box-sizing: border-box;
    }
    
    h3 {
        font-size: 1.5rem;
        font-style: italic;
        font-weight: 200;
        letter-spacing: 0.1rem;
    }

    h4 {
        font-size: 1rem;
        text-transform: uppercase;

    }
    
    
    p {
        font-weight: 200;
        font-size: 1.1rem;
        line-height: 1.7rem;
        margin: auto;
        max-width: 800px;
    }

    em {
        font-size: 1.3rem;
        font-weight: 400;
    }

    a, a:link, a:visited, a:active, a:hover {
        text-decoration: none;
        color: white;

    
}

}


nav {
    position: fixed;
    background: rgba(132, 199, 199, 0.1);
    backdrop-filter: blur(7px);
    color: white;
    mix-blend-mode: normal;
    border: inset 1px rgba(255, 255, 255, 0.189);
    width: 100%;
    height: auto;
    z-index: 100;
    box-sizing: border-box;

    @media (max-width: 600px) {
        position: fixed;
        mix-blend-mode: normal;


 


    }
    & ul {
        display: flex;
        flex-wrap: wrap;
        gap: 5%;
        list-style: none;
        align-items: center;
        justify-content: center;
        
        @media (max-width: 600px) {
            display: none; 
            opacity: 0;
            visibility: hidden;
            transition: 500ms;
            
            li {
                visibility: hidden;
            }
        }

        & li {
            font-weight: 200;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.4rem;
            transition: opacity 500ms ease;

            &:hover {
                font-weight: 900;
                letter-spacing: 0.45rem;
                text-align: left;
            }

            @media (max-width: 600px) {
                margin-top: 1.1rem;

            }

            
        }

    }

     #icone {
        font-size: 3rem;
        position: absolute;
        inset: 20px 0 0 20px;
        display: none;
        z-index: 10;

        @media (max-width: 600px) {
            display: flex;
            width: fit-content;
            filter: drop-shadow(2px 2px 2px rgb(0, 0, 0));

        }

    }

}

.menu {
    display: block;
    margin-left: 10%;
    margin-top: 15%;
    opacity: 1;
    visibility: visible;
    transition: 1000ms;

    li {
        visibility: visible;
    }
}


header {
    position: relative;
    box-sizing: border-box;

    & .content {
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
        width: 100%;
        position: absolute;
        text-align: center;
        bottom: 0;
        z-index: 2;
        color: white;
        mix-blend-mode: exclusion;
        

        @media (max-width: 600px) {
            box-sizing: border-box;
            transform: scale(60%);
            margin-bottom: 60%;



        }
    }
    
    & video {
        width: 100%;
        overflow: hidden;

        }
    
    }

@media (max-width: 600px) {
    #horizontal {
        display: none;
    }
}

@media (min-width: 600px) {
    #vertical {
        display: none;
    }
}

header::after {
        content: "";
        background: url(images/grain.gif) repeat;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 20;
        opacity: 0.3;
        mix-blend-mode: overlay;
        pointer-events: none;

}



section {
    width: 100vw;
}



#sobre {
    background: rgb(0, 0, 0);
    box-sizing: border-box;
    position: relative;
    min-height: 70vh;
    padding: 20px ;
    padding-top: 10%;
    & div {
        display: block;
        color: white;
        gap: 10%;
        z-index: 5;    
        & * {
            text-align: center;
            max-width: 800px;
            margin: auto;
            margin-top: 30px;
            width: fit-content;
        }
    }
    &::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: url(images/grain.gif) repeat;
        opacity: 60%;
        mix-blend-mode: lighten;
        pointer-events: none;
        z-index: 0;

    }
}

#serviços {
    background: rgb(0, 0, 0);
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 80vh;
    flex-wrap: wrap;
    padding-bottom: 80px;

    & div {
        display: block;
        margin: auto;
        margin-top: 10vh;
        align-items: center;
        text-align: center;
        list-style: none;

        & .mask {
            width: 200px;
            height: 200px;
            background-color: rgb(57, 144, 187);
            border-radius: 50%;
            overflow: hidden;
            filter: grayscale(100%) contrast(120%) drop-shadow(rgba(179, 16, 16, 0) -3px -23px 23px);
            transition: 500ms filter ease-in;

            
            & img {
                height: 200px;
                width: auto;
                mix-blend-mode: overlay;
            
            }
        }

            
    }

    & li {
        font-size: 1rem;
        font-weight: 100;
        line-height: 1.5rem;
    }

    .mask:hover {
        filter: grayscale(0%) contrast(120%) drop-shadow(rgba(68, 68, 243, 0.709) 0px 0px 300px);
    }

}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: auto;
    margin: auto;
    transform: perspective(1000px);


}
    
.thumb{
        display: flex;
        position: relative;
        max-height: 300px;
        min-width: 300px;
        overflow: hidden;
        object-fit: cover;
        justify-content: center;
        align-items: center;


        @media (max-width:480px) {
            transform: scale(80%);
            border-radius: 20px;           
        }

        & p {
            position: absolute;
            z-index: 0;
        }
        
        
        & img {
            height: 100%;
            width: auto;
            z-index: 10;
            transform-style: preserve-3d;
            transform: perspective(1000px);
            transition: 500ms cubic-bezier(.42,-1.2,.42,1.2);
        }
        
    
    }

.thumb:hover img {
        scale: 1.05;
        opacity: 0;
        }  
    



.thumb::before {
    content: "";
    background: url(images/grain.gif) repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 20;
    opacity: 0.3;
    mix-blend-mode: overlay;
    pointer-events: none;
}


.thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(81, 56, 56, 0.1)50%,
        rgba(68, 61, 61, 0.156)70%,
        rgba(0, 0, 0, 0.9)100%
    );
    z-index: 10;
    mix-blend-mode: overlay;
    pointer-events: none;

}

#curtas {

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8vh;
    box-sizing: border-box;
    position: relative;

    em {
        font-size: 1.2rem;
    }

    .container {
        display: flex;
        flex-direction: column;
        gap: 5vh;
        padding: 100px;
        align-items: center;
    }

    .ardentia, .cao {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        align-items: center;
        text-align: center;
        position: relative;

        iframe {
            aspect-ratio: 16/9;
            width: 80vw;
            min-width: 300px;
            height: auto;
            border-radius: 10px;
            border: solid 3px rgba(255, 255, 255, 0.44);

        }

        em {
            font-size: 1.2rem;
        }

        .ficha {
            margin-top: 10px;
            font-size: 0.9rem;
            color: rgb(182, 182, 182);
        }
    }

    &::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: url(images/grain.gif) repeat;
        opacity: 60%;
        mix-blend-mode: lighten;
        pointer-events: none;
        z-index: 0;

    }


}

#contato {
    min-height: 50vh;
    position: relative;
    text-align: center;
    text-wrap: wrap;
    padding: 7%;
    box-sizing: border-box;
    padding-bottom: 10%;

    
    & div {
        display: block;
        margin-top: 100px;

    }
    & a {
        min-width: 300px;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.25rem;
        background-color: rgb(38, 148, 122);
        padding: 15px 40px 15px 40px;
        border-radius: 10px;
        
    
    }
}

footer {
    background: url("images/grain.gif") repeat;
    filter: invert(80%);
    box-sizing: border-box;
    padding-top: 50px;
}

.social {
    width: 100%;
    /* padding: 50px; */
    display: flex;
    box-sizing: border-box;
    & .icons {
        margin: auto;
        display: flex;
        gap: 20px;
        
        & * {
            width: 30px;
            height: 30px;
        }
    }
}

.contato {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto;
    & h1 {
        transform: scale(0.5);
    }

    & h3 {
        transform: scale(0.8);
    }

}