:root {
    --azul: #00001b;
    --offwhite: #ececec;
    --cinza: #ccc;
    --preto: #01000a;
  }

  *{
    transition: 0.3s all;
  }

body{
    background-color: var(--offwhite);
}
header{
    background-color: white;
    width: 100%;
    height: 10vh;
}
.header{
    background-color: white;
    height: 10vh;
}

.nav-link{
    color: var(--preto);
}

.bg-section{
    border-radius: 20px;
    background-color: white;
    padding: 2rem;
}

section.banner{
    border-radius: 20px;
    background-image: url(/assets/img/banner.gif);
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
}


.link-active{
    border-bottom: 2px solid var(--azul);
}

.btn-contato{
    background-color: white;
    border-radius: 30px;
    padding: 10px;
    width: 200px;
    border: 1px solid var(--azul);
}

.btn-contato:hover{
    background-color: var(--azul);
    color: white;
    box-shadow: 2px 7px 25px 0px rgba(0,0,0,0.32);
}


.card-portfolio{
    background-color: white;
    border-radius: 20px;
    width: 350px;
    height: 350px;
    border: none;
    overflow: hidden;
}

.card-portfolio:hover{
    box-shadow: 2px 7px 25px 0px rgba(0,0,0,0.32);
    transform: scale(1.05);
}

.container-img-card{
    position: relative;
    display: flex;
    justify-content: center;
}

.info-project{
    opacity: 0;
    position: absolute;
    align-self: end;
    background-color:#00001bd2;
    color: white;
    padding: 10px;
    border-radius: 30px;
    width: 85%;
    margin-bottom: 20px;
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: space-between;
    transform: translateY(50px);
}

.card-portfolio:hover .info-project{
    opacity: 1;
    transform: translateY(0);

}

.card-portfolio img{
    border-radius: 20px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.img-projeto{
    width: 100%;
    border-radius: 20px;
}

.img-projeto img{
    border-radius: 20px;
}
footer{
    margin-top: 5rem;
    background-color: white;
    padding: 2rem;
    background-color: var(--preto);
}

footer p, footer a, footer h1{
    color: white !important;
}

.icone-processo{
    background-color: var(--azul);
    border-radius: 50%;
    width: 60px;
    padding: 0.5rem;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 720px) {
    section.banner{
        background-image: url(/assets/img/banner-mobile.gif);
    };
    .links-nav-container{
        display: flex !important;
        width: 75% !important;
    };
    .header{
        height: 15vh !important;
    }
}

.animated-element {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-element.visible {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar-track {
    background-color: var(--offwhite);
}
::-webkit-scrollbar {
    width: 12px;
    background: var(--offwhite);
}
::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 30px;
}