



/*header*/




.icons{

    display: flex;


}

.icons a{

    margin-left: 30px;
    font-size: 30px;
    color: white;

}





.header {
    background-color: #000000a8;

    position: absolute;
    top: 0;
    left: 0; 
    width: 100%;
    z-index: 10;
}

.nav-container {
    
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo {
    font-size: 45px;
    color: #ffffff;
    font-family: "Kelso W00 Bold";
    text-decoration: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    width: 30px;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    margin: 4px 0;
    transition: 0.4s;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-item:hover {
    color: #949494;
}

.projects-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    max-width: calc(100vw - 40px);
    background-color: #232323;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding: 15px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-item:hover .projects-dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-link {
    display: flex;
    align-items: center;
    background-color: #1C1C1C;
    border-radius: 10px;
    padding: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(41,128,185,0.1), rgba(41,128,185,0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.project-link:hover::before {
    opacity: 1;
}

.project-link-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    margin-right: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-link:hover .project-link-image {
    transform: scale(1.1);
}

.project-link-content {
    flex-grow: 1;
    overflow: hidden;
}

.project-link-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-link-description {
    color: #dbdbdb;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.project-link:hover .project-link-arrow {
    opacity: 1;
    transform: translateX(0);
}


.nav-container .menu-mobile{

    color: white;
    font-size: 25px;


}

.menu-mobile-on {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
    background-color: #1C1C1C;
    margin-top: 83px;
}

.menu-mobile-on .menu{

    display: flex;
    flex-direction: column;
    text-align: center;
}

.menu-mobile-on .menu .i1{

    color: white;
    text-decoration: none;
    margin-top: 20px;
    
    
}

.menu-mobile-on .menu .i2{

    color: white;
    text-decoration: none;
    
    
}

.menu-mobile-on .menu .i3{

    color: white;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 10px;
    
    
}



.menu-mobile-on .menu .line{

    width: 100%;
    border-top: 1px solid #ffffff07;
    margin-top: 10px;

}

.menu-mobile-on .menu .line1{

    width: 100%;
    border-top: 1px solid #ffffff07;
    margin-top: 10px;

}

.menu-mobile-on .icons1{

    justify-content: center;
    

}



.projetos-mobile{

    display: flex;
    margin-top: 20px;
    justify-content: center;
    
}

.projetos-mobile i{

    color: white;

}

.projetos-mobile .projetos-dropdown-mobile{

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 70px;
    margin-left: 70px;

}


@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px; /* Adjust this value as needed */
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        max-height: 500px; /* Adjust this value as needed */
        opacity: 1;
    }
    to {
        max-height: 0;
        opacity: 0;
    }
}

#menu-mobile-on {
    display: none;
    overflow: hidden;
    animation: slideDown 0.5s forwards;
}


.icons1{

    display: flex;
    margin-bottom: 10px;


}

.icons1 .i1{

    font-size: 30px;
    color: white;

}

.icons1 .i2{

    margin-left: 30px;
    font-size: 30px;
    color: white;

}







/*fim-da-header*/







/*footer*/

.seção1{

    display: flex;
    flex-direction: column;
    background-color: #1C1C1C;

}

.seção1 .grupo1{

    display: flex;
    background-color: #303031;
    margin-left: auto;
    width: 60%;
    
}

.seção1 .grupo1 .coluna1{

    margin-top: 30px;
    margin-left: 75px;
    margin-bottom: 30px;

}


.seção1 .grupo1 .coluna1 p{

    color: white;
    font-size: 35px;
    font-weight: 600;

}

.seção1 .grupo1 .coluna1 img{

    width: 20%;

}



.seção1 .grupo1 .coluna2{

    margin-top: 45px;
    margin-left: auto;
    margin-right: 100px;
    justify-items: center;

}

.seção1 .grupo1 .coluna2 p{

    color: white;
    font-size: 25px;
    font-weight: 600;

}

.seção1 .grupo1 .coluna2 i{

    color: white;
    font-size: 40px;
    margin-top: 30px;
    
    

}

.seção1 .grupo1 .coluna2 #i1{

    margin-right: 30px;

}

.seção1 .grupo2{

    display: flex;
    justify-content: center;
    color: white;
    margin-top: 30px;

}

.seção1 .grupo2 .coluna1{

    margin-right: 15%;
}

.seção1 .grupo2 .coluna1 h6{

    color: #7a7a7a;
    margin-bottom: 20px;
    font-size: 20px;


}

.seção1 .grupo2 .coluna1 p{

    margin-bottom: 20px;
    font-size: 20px;

}

.seção1 .grupo2 .coluna2{

    margin-right: 15%;

}

.seção1 .grupo2 .coluna2 h6{

    color: #7a7a7a;
    margin-bottom: 20px;
    font-size: 20px;

}

.seção1 .grupo2 .coluna2 p{

    margin-bottom: 20px;
    font-size: 20px;

}



.seção1 .grupo2 .coluna3 h6{

    color: #7a7a7a;
    margin-bottom: 20px;
    font-size: 20px;
    

}

.seção1 .grupo2 .coluna3 i{

    font-size: 30px;
    margin-right: 20px;
    
}


.seção1 .line{

    width: 80%;
    border-top: 1px solid #7a7a7a;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 30px;

}



.seção1 .grupo3 .coluna1{

    display: flex;
    justify-content: space-between;
    
    margin-left: 10%;
    margin-right: 10%;
    color: white;
    
    margin-bottom: 20px;
   
}

.seção1 .grupo3 .coluna1 h1{

    font-family: "Kelso W00 Bold";
    font-size: 45px;


}

.seção1 .grupo3 .coluna1 p{

   margin-top: 10px;

}






/*animações-icone*/

.icons-single{

    transition: transform 0.3s ease;
}

.icons-single:hover{

    transform: scale(1.1);
}