*{
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background : #232323;
    background-size: auto;

    background-size: 500% 100%;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 10px;
}
::-webkit-scrollbar-track{
    background-color: #ffffff;
}
::-webkit-scrollbar-thumb:hover{
    background-color: #408bab;
}

/*================================== ANIMAÇÕES =================================*/
.animated{
    opacity: 1;
}
@keyframes flocos {
    0%{
        transform: translateY(-20vh) scale(0);
    }
    100%{
        transform: translateY(90vh) scale(1);
    }
}
@keyframes palavras{
     0%,33%{
         content: "Desenvolvedor Júnior"; 
           }
     34%,66%{
         content: "Gestor de TI";
            }
     67%,100%{
         content: "Técnico em Informática";
             }
}
@keyframes treme{
    0%{
        transform: translateX(0px);
    }
    20%{
        transform: translateX(5px);
    }
    40%{
        transform: translateX(0px);
    }
    60%{
        transform: translateX(-5px);
    }
    80%{
        transform: translateX(0px);
    }
    100%{
        transform: translateX(5px);
    }
    
}
@keyframes telefoneAnimar {
  0%, 10% { transform: translateY(0); opacity: 1; }
  20%, 30% { transform: translateY(-10px) rotate(5deg); }
  30%, 40% { transform: translateY(10px) rotate(-5deg); }
  40%, 50% { transform: translateY(0); }
  50%, 100% { opacity: 1; }
}
@keyframes envelopeAbertoAnimar {
  0%, 40% { opacity: 0; }
  50%, 60% { opacity: 1; }
  70%, 100% { opacity: 0; }
}
@keyframes envelopeFechadoAnimar {
  0%, 60% { opacity: 0;  }
  70% { opacity: 1; transform: translate(140% , -50%); }
  90% { transform: translate(300% , -50%); opacity: 1; }
  100% { transform: translate(300% , -50%); opacity: 0; }
}
@keyframes rapido{
    0%, 60% { opacity: 0; }
    70% { opacity: 1;transform: translate(30% , -50%) }
    90% { transform: translate(200% , -50%); opacity: 1; }
    100% { transform: translate(200% , -50%); opacity: 0; }
}
@keyframes enter {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;

    }
}
@keyframes enter-right {
    from{
        opacity: 0;
        transform: translateX(200px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes enter-left {
    from{
        opacity: 0;
        transform: translateX(-200px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes enter-top {
    from{
        opacity: 0;
        transform: translateY(200px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes enter-bottom {
    from{
        opacity: 0;
        transform: translateY(-200px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
/*======================================== FLOCOS ================================*/

.neve{
    position: absolute;
    display: flex;
}
.neve span{
    width: 5px;
    height: 5px;
    background-color: white;    
    margin: 0 6px;
    border-radius: 30%;
    box-shadow: 0 0 10px 5px #cbffff50,
    0 0 100px white;
    animation: flocos calc(150s /var(--i) ) linear infinite;
               
}
.intro{
    color: white;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
    font-weight: lighter;
    margin-bottom: -30px;
    font-size: 3.0em;
    margin-top:215px ;
    margin-left: -650px;
    
}
.container{ /*NEVE*/
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.container-inicio{/*CAIXA PRINCIPAL*/
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 65% 35%;
    overflow: hidden;
}
/*=========================================== MENU ================================*/

.logo{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: 100px;
}
.menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
header {
    display: flex;
    justify-content:flex-end;
    align-items: flex-start;
    color: white;
    margin-top: 20px;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 100px;
}
.sobre{/*BOTÃO SOBRE*/
    color: white;
    align-items: flex-end;
    text-align: right;
    margin-top: 20px;
    margin-right: 40px;
    font-family: 'Poppins';
    size: 50px;
    font-weight: lighter;
    font-size: 20px; 
    cursor: pointer;
    z-index: 100; 
    
}
.sobre-link{/*LINK BOTÃO SOBRE*/
    text-decoration: none;
    color: white;
    transition: 0.3s ease-in-out;
}
.projetos{/*BOTÃO PROJETOS*/
    color: white;
    align-items: flex-end;
    text-align: right;
    margin-top: 20px;
    margin-right: 40px;
    font-family: 'Poppins';
    size: 50px;
    font-weight: lighter;
    font-size: 20px; 
    cursor: pointer; 
    z-index: 100;

}
.projetos-link{/*LINK BOTÃO PROJETOS*/
    text-decoration: none;
    color: white;
    transition: 0.3s ease-in-out;
}
.tec{
    color: white;
    align-items: flex-end;
    text-align: right;
    margin-top: 20px;
    margin-right: 40px;
    font-family: 'Poppins';
    size: 50px;
    font-weight: lighter;
    font-size: 20px; 
    cursor: pointer;
    z-index: 100;
}
.tec-link{
    text-decoration: none;
    color: white;
    transition: 0.3s ease-in-out;
}
.contato{
    color: white;
    align-items: flex-end;
    text-align: right;
    margin-top: 20px;
    margin-right: 40px;
    font-family: 'Poppins';
    size: 50px;
    font-weight: lighter;
    font-size: 20px; 
    cursor: pointer;
    z-index: 100;
}
.contato-link{
    text-decoration: none;
    color: white;
    transition: 0.3s ease-in-out;
}
.projetos::after{
    content: " ";
    width: 0px;
    height: 1px;
    background-color: #3564d0; 
    position: absolute;
    align-items: flex-end;
    text-align: right;
    top: 70px;
    right: 420px;
    margin:0px 0px ;
    border-radius: 4px 4px 4px 4px;
    transition: width 0.3s ease-in-out;
}
.projetos:hover::after{
    width: 80px;
}
.sobre::after{
    content: " ";
    width: 0px;
    height: 1px;
    background-color: #3564d0; 
    position: absolute;
    align-items: flex-end;
    text-align: right;
    top: 70px;
    right: 535px;
    margin:0px 0px ;
    border-radius: 4px 4px 4px 4px;
    transition: width 0.3s ease-in-out;


}
.sobre:hover::after{
    width: 60px;
    color: #3564d0;
}
.tec::after{
    content: " ";
    width: 0px;
    height: 1px;
    background-color: #3564d0; 
    position: absolute;
    align-items: flex-end;
    text-align: right;
    top: 70px;
    right: 260px;
    margin:0px 0px ;
    border-radius: 4px 4px 4px 4px;
    transition: width 0.3s ease-in-out;
}
.tec:hover::after{
    width: 120px;
}
.contato::after{
    content: " ";
    width: 0px;
    height: 1px;
    background-color: #3564d0; 
    position: absolute;
    align-items: flex-end;
    text-align: right;
    top: 70px;
    right: 142px;
    margin:0px 0px ;
    border-radius: 4px 4px 4px 4px;
    transition: width 0.3s ease-in-out;
}
.contato:hover::after{
    width: 75px;
}
.sobre-link:hover{
    color: #3564d0;
}
.projetos-link:hover{
    color: #3564d0;
}
.tec-link:hover{
    color: #3564d0;
}
.contato-link:hover{
    color: #3564d0;
}

/*================================================== PAGINA PRINCIPAL=============================================*/

.t1{
    color: #3564d0;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
    font-weight: bold; 
    font-size: 4.5em;
    height: 35px; 
   
}
.sub{/*SUBTITULO*/
    color: white;
    align-items: center;
    text-align: center;
    margin-top: 70px;
    font-family: 'Poppins';
    font-weight: lighter;
    font-size: 1.5em;   
}
.sub span{
    position: relative;
}
.sub span::before{
    content: "Desenvolvedor Júnior";
    animation: palavras 5s infinite;

}
.box-icons{
    display: flex;
    position: relative;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    list-style-type: none;
}
.box-icons li{
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .3s;
    cursor: pointer;
}
.box-icons li span{
    position: absolute;
}
.box-icons li:hover{
    width: 250px;
}
.box-icons li .icon{
    font-size: 2.5em;
    color: #757575;
    transform: scale(1);
    transition: .3s;
    transition-delay: .1s;
}
.box-icons li:hover .icon{
    transform: scale(0);
}
.box-icons li .text{
    font-size: 20px;
    color: rgb(255, 255, 255);
    transform: scale(0);
    font-family: 'poppins';
    font-weight: lighter;
    transition: .3s;
    transition-delay: .2s;
}
.box-icons li .text > i{
    margin-right: 5px;
}
.box-icons li:hover .text{
    transform: scale(1);
}
.box-icons li::before{
    content: '';
    position: absolute;
    background-image: linear-gradient(45deg, var(--cor1), var(--cor2));
    inset: 0;
    opacity: 0;
    border-radius: 60px;
}
.box-icons li:hover::before{
    opacity: 1;
}
.foto { /*CAIXA FOTO BRYAN*/
    width: 500px;
    height: 500px;
    justify-content: end;
    margin-left: 20px;
    margin-top: 100px;
    position:relative;
    display: flexbox;
    overflow: hidden;
}
.foto1{/*FOTO BRYAN*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    display: flexbox;
}
/*======================================================== PAGINA SOBRE =============================================*/

.mim{/* CAIXA DE TEXTO (SOBRE)*/
    width: 100%;
    background-color: #3564d0;
    height: auto;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    position: relative;
    margin-top: 60px;  
    margin-bottom: 50px;
    padding: 80px;
}
.sub2 {/*TEXTO TITULO (SOBRE)*/
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 60px;
    color: #ffffff;
    position: relative; 
    margin-bottom: 50px; 
}
.txt{/*TEXTO SOBRE*/
    font-family: 'Poppins';
    font-weight:lighter;
    color: #ffffff;
    font-size:20px;
    position: relative;
    margin-left:80px;
    margin-right: 80px;
    margin-bottom: 20px;
    text-align: justify;
}

/*======================================================== PAGINA PROJETOS =============================================*/

.trabalho{ /*CAIXA PROJETOS*/
    width: 100%;
    height: auto;
    overflow: hidden;
}
.sub3{/*TITULO PROJETOS*/
    font-family: 'Poppins';
    font-weight:bold;
    color: #3564d0;
    font-size:60px;
    text-align: center;
}
.trabalho p{
    font-family: 'Poppins';
    font-weight:lighter;
    color: #ffffff;
    font-size:20px;
    text-align: center;
    margin-top: 20px;
}
.projetos_container{ /*CAIXA PROJETOS*/
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 40px;
    margin-top: 50px;
    gap: 50px;
}
.projetos_container .cards{
    width: 300px;
    height: 500px;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #3564d0;
    border: 2px solid #fff;
    border-radius: 20px;
}
.projetos_container .cards .card-link {
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;  
}
.projetos_container .cards .card-link img{
    width: 100%;
    height: 100%;
    position: absolute;
    margin-left: 50px;
    margin-top: 50px;
    border-radius: 20px;
    border: 10px solid #232323;
    transition: .5s;
}
.projetos_container .cards .card-link:hover img{
    filter: brightness(0.3);
}
.projetos_container .cards .card-link i{
    position: absolute;
    font-size: 30px;
    margin-left: 50px;
    color: #fff;
    transform: scale(0);
    transition: .5s;
}
.projetos_container .cards .card-link:hover i{
    transform: scale(1);
}
.projetos_container .cards .card-link p{
    position: absolute;
    font-size: 20px;
    color: #fff;
    margin-left: 50px;
    margin-top: 70px;
    font-family: 'poppins';
    font-weight: bold;
    transform: scale(0);
    transition: .5s;
}
.projetos_container .cards .card-link:hover p{
    transform: scale(1);
}
.projetos_container .cards .card-link .bi-tools{
    position: absolute;
    font-size: 30px;
    margin-left: 50px;
    color: #fff;
    transform: scale(0);
    transition: .5s;
}
.projetos_container .cards .card-link:hover .bi-tools{
    transform: scale(1);
}
.projetos_container .cards .card-link:active .bi-tools{
    animation: treme .2s ease-in-out;
}
.projetos_container .cards h3{
    font-family: 'poppins';
    font-weight: bold;
    color: #fff;
    font-size: 25px;
    text-align: center;
    margin-top: 30px;
}
.projetos_container .cards span{
    font-family: 'poppins';
    font-weight:lighter;
    color: #fff;
    font-size:12px;
    text-align: justify;
    margin-top: 10px;
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
}
.linguagem-prog{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.linguagem-prog img{
    width: 30px;
    height: 30px;
}

/*============================================================ PAGINA TECNOLOGIAS ============================================================*/

.janela{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}
.janela > h1{
    font-family: 'Poppins';
    font-weight: bold;
    color: #3564d0;
    font-size: 60px;
    text-align: center;
}
.janela > p{
    font-family: 'Poppins';
    font-weight: lighter;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
}
.janela .container-tec{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 100px;
    row-gap: 50px;
    padding-left: 10%;
    padding-right: 10%;
}
.janela .container-tec > img{
    width: 100px;
    height: auto;
}

/*============================================================= PAGINA CONTATO=============================================*/

.janela2 {
    width: 100%;
    height: auto;
    background-color: #232323;
    padding-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.janela2 > img{
    width: 80%;
    height: auto;
    object-fit: cover;
    border: none;
    border-radius: 10px;
    filter: blur(2px);
}
.janela2 .container-box{
    width: 60%;
    height: 70%;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.janela2 .container-box .box1{
    width: 100%;
    height: 100%;
    background-color: #3564d0;
    border-radius: 30px;
}
.janela2 .container-box .box1 .animacao{
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: end;
}
.janela2 .container-box .box1 .animacao .telefone{
    font-size: 90px;
    font-weight: bold;
    color: #fff;
    animation: telefoneAnimar 3s infinite;
}
.janela2 .container-box .box1 .animacao .rapido{
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    transform: translate(20%, -50%);
    animation: rapido 3s infinite;
}
.janela2 .container-box .box1 .animacao .fechado{
    font-size: 40px;
    font-weight: bold;
    color: #6291ff;
    position: absolute;
    transform: translate(130%, -50%);
    animation: envelopeFechadoAnimar 3s infinite;
}
.janela2 .container-box .box1 .animacao .aberto{
    font-size: 40px;
    font-weight: bold;
    color: #6291ff;
    position: absolute;
    transform: translate(130%, -60%);
    animation: envelopeAbertoAnimar 3s infinite;
}
.janela2 .container-box .box1 .info{
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.janela2 .container-box .box1 .info .top{
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.janela2 .container-box .box1 .info .top h1{
    font-size: 40px;
    font-family: 'poppins';
    font-weight: bold;
    color: #fff;
}
.janela2 .container-box .box1 .info .top p{
    font-size: 15px;
    font-family: 'poppins';
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
    color: #fff;
}
.janela2 .container-box .box1 .info .redes{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.janela2 .container-box .box1 .info .redes .rede1{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.janela2 .container-box .box1 .info .redes .rede1 .sociais{
    gap: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.janela2 .container-box .box1 .info .redes .rede1 .sociais > a{
    text-decoration: none;
    background-color: #6291ff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 25px;
    transition: 0.3s ease-in-out;
}
.janela2 .container-box .box1 .info .redes .rede1 .sociais > a:hover{
    background-color: #fff;
    color: #3564d0;
}
.janela2 .container-box .box1 .info .redes .curriculo{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.janela2 .container-box .box1 .info .redes .curriculo > a{
    text-decoration: none;
    background-color: #6291ff;
    border: 2px solid #fff;
    width: 200px;
    height: 50px;
    border-radius: 30px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-family: 'Poppins';
    gap: 5px;
    transition: 0.3s ease-in-out;
}
.janela2 .container-box .box1 .info .redes .curriculo > a:hover{
    background-color: #fff;
    color: #3564d0;
}

/*========================================================== RODAPE ================================================================*/

footer{
    background-color: #3564d0;
    color: #ffffff;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'poppins';
    font-weight: lighter;
    padding: 20px;
    font-size: 20px;
    margin-top: 50px;
}

/*========================================================= MEDIA QUERIES ============================================================*/

@media screen and (max-width: 700px) {

    /*Header*/

    .menu{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .logo{
        width: 80px;
        height: 80px;
        margin-left: 0;
    }
    nav{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #3564d0;
    }
    nav ul{
        width: 100%;
        margin-right: 0px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    nav ul li.sobre{
        font-size: 15px;
        margin-right: 0px;
        margin-top: 0px;
    }
    .sobre::after{
        top: 0px;
        right: 0px;
    }
    .sobre:hover::after{
        width: 0px;
    }
    .sobre-link:hover{
        color: #232323;
    }
    nav ul li.tec{
        font-size: 15px;
        margin-right: 0px;
        margin-top: 0px;
    }
    .tec::after{
        top: 0px;
        right: 0px;
    }
    .tec:hover::after{
        width: 0px;
    }
    .tec-link:hover{
        color: #232323;
    }
    nav ul li.contato{
        font-size: 15px;
        margin-right: 0px;
        margin-top: 0px;
    }
    .contato::after{
        top: 0px;
        right: 0px;
    }
    .contato:hover::after{
        width: 0px;
    }
    .contato-link:hover{
        color: #232323;
    }
    nav ul li.projetos{
        font-size: 15px;
        margin-right: 0;
        margin-top: 0px;
    }
    .projetos::after{
        top: 0px;
        right: 0px;
    }
    .projetos:hover::after{
        width: 0px;
    }
    .projetos-link:hover{
        color: #232323;
    }

    /*inicio*/

    .container-inicio{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }
    .intro{
        margin-bottom: 15px;
        font-size:20px;
        text-align: center; 
        margin-left: -200px;
        margin-top: 80px;
    }
    .t1{
        font-size: 40px;
        text-align: center;
        margin-bottom: 20px; 
    }
    p.sub {
        font-size: 20px;
        text-align: center;
        margin-top: 100px;
    } 
    .box-icons li{
        width: 60px;
        height: 60px;
    }
    .box-icons li:hover{
        width: 150px;
    }
    .box-icons li span.text{
        font-size: 20px;
    }
    .box-icons li span.icon{
        font-size: 30px;
    }

    /*Foto Bryan*/

    .foto{
        width: 500px;
        height: 500px;
        margin-left: 0px;
    }

    /*Sobre*/

    .mim{
        padding: 20px;
    }
    .sub2{
        font-size: 40px;
        margin-bottom: 10px;
    }
    .txt{
        font-size: 15px;
        margin-left: 0;
        margin-right: 0;
    }

    /*Projetos*/

    .trabalho .sub3{
        font-size: 40px;
        margin-top: 20px;
    }
    .trabalho p{
        font-size: 15px;
        margin-top: 10px;
    }
    .projetos_container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        gap: 30px;
    }

    /*JANELA TECNOLOGIAS*/

    .janela{
        gap: 10px;
    }
    .janela > h1{
        font-size: 40px;
    }
    .janela > p{
        font-size: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .janela .container-tec{
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .janela .container-tec > img{
        width: 50px;
        height: auto;
    }

    /*JANELA CONTATO*/

    .janela2 > img{
        width: 100%;
        height: 400px;
    }
    .janela2 .container-box{
        width: 90%;
        height: 50%;
    }
    .janela2 .container-box .box1 .animacao{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .janela2 .container-box .box1 .animacao .telefone{
        font-size: 70px;
    }
    .janela2 .container-box .box1 .animacao .rapido{
        font-size: 30px;
        transform: translate(10%, -50%);
    }
    .janela2 .container-box .box1 .animacao .fechado{
        font-size: 30px;
        transform: translate(100%, -50%);
    }
    .janela2 .container-box .box1 .animacao .aberto{
        font-size: 30px;
        transform: translate(140%, -60%);
    }
    .janela2 .container-box .box1 .info .top{
        height: 100%;
    }
    .janela2 .container-box .box1 .info .top h1{
        font-size: 30px;
    }
    .janela2 .container-box .box1 .info .top p{
        font-size: 12px;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 20px;
    }
    .janela2 .container-box .box1 .info .redes .rede1 .sociais{
        gap: 10px;
    }
    .janela2 .container-box .box1 .info .redes .rede1 .sociais > a{
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .janela2 .container-box .box1 .info .redes .curriculo > a{
        width: 150px;
        height: 40px;
        font-size: 15px;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    /*RODAPE*/

    footer{
        font-size: 12px;
    }
    
    

   
}
