* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url(./wppasd.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

/*pagina inicial do portifolio*/

.header-container {
    display: block;
    padding-right: 90px;
}

.header-container img {
    width: 10%;
    justify-content: center;
    margin-left: 50%;
    margin-top: 10%;
}

.header-container h3 {
    color: #fefefe;
    text-align: center;
    padding-top: 35px;
    padding-left: 140px;
}

span {
    color: rgb(236, 9, 9);
    font-size: 1.3rem;
}

.header-container h1 {
    color: #ffffff;
    text-align: center;
    padding-top: 35px;
    padding-left: 140px;
}


.header-container p {
    color: #f9f9f9;
    text-align: center;
    padding-top: 35px;
    padding-left: 140px;
}

.tec-linguage {
    color: #a3a3a3;
    text-align: center;
    padding-left: 140px;
    padding-right: 90px;
}


.tec-linguage ul {
    list-style-type: none;
    padding-right: 60px;

}

.tec-linguage i {
    color: #fff;
    width: 30px;
    margin: 25px;
    text-decoration: none;

}



.tec-linguage i#html {
    color: orangered;
    border: transparent;
    font-weight: bold;
    width: 150px;
    opacity: 65%;
    padding: 9px;
    border-radius: 30px;
    background-color: #fff;
}

.tec-linguage i#html:hover {
    opacity: 100%;
}


.tec-linguage i#css {
    color: rgb(0, 85, 255);
    width: 150px;
    border: transparent;
    opacity: 65%;
    font-weight: bold;
    padding: 9px;
    border-radius: 30px;
    background-color: #fff;
}

.tec-linguage i#css:hover {
    opacity: 100%;
}

.tec-linguage i#boodstrap {
    color: #8B008B;
    width: 150px;
    border: transparent;
    opacity: 65%;
    font-weight: bold;
    padding: 9px;
    border-radius: 30px;
    background-color: #fff;
}

.tec-linguage i#boodstrap:hover {
    opacity: 100%;
}


.tec-linguage i#javascript {
    color: rgb(210, 156, 7);
    font-weight: bold;
    width: 150px;
    padding: 9px;
    opacity: 65%;
    border-radius: 30px;
    border: transparent;
    background-color: #fff;

}

.tec-linguage i#javascript:hover {
    opacity: 100%;
}

/*seta */
.down-arrow {
    position: relative;
    left: 50%;
    top: 60%;
    padding-top: 40px;
    transform: translate(-50%, -50%);
    font-size: 25px;
    color: #ffffff;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/*main*/



.main-container h2 {
    font-size: 35px;
    color: rgb(255, 255, 255);
    text-align: center;
    width: 100%;
    font-weight: bold;
    padding-top: 30px;
    text-shadow: 30px #0000;
    padding-left: 20px;

}

/* CSS para o layout e estilo dos projetos */

main {
    padding: 20px;
}

.projects-container {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.project-card {

    border-radius: 42px;
    width: 400px;
    background-color: #72727260;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    opacity: 0;
    transform: translateY(0px);
    transition: 0.6s ease, 0.6s ease;
}

/* Classe para tornar o projeto visível */
.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card img {
    max-width: 60%;
    height: auto;
    border-radius: 8px;
}

.project-card h3 {
    font-size: 1.2em;
    margin: 10px 0;
    color: #f3f3f3;
}

.project-card p {
    font-size: 1em;
    color: #ccc;
}

/* Efeito hover para os cartões */
.project-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
    z-index: 10; 
        background-color: #000;
}

/* Para telas menores que 768px */
@media (max-width: 768px) {
    .header-container img {
        width: 30%;

        margin-left: 60px;

        margin-top: 20%;
    }

    .header-container h3 {
        font-size: 12px;
        margin-left: -60px;

    }

    .header-container h1 {
        font-size: 20px;
        margin-left: -60px;

    }

    .header-container p {
        font-size: 12px;
        width: 400px;
        margin-left: -60px;
        padding-bottom: 20px;
    }

    .header-container ul {
        margin-left: -60px;

    }


    .main-container{
        display: block;
        padding-top: -40px;
    }


    .tec-linguage {
        margin: 0 auto;
    }

    .tec-linguage i {
        width: 100%;
        margin: 10px 0;

    }

    .projects-container {
        grid-template-columns: 1fr;

    }

    .down-arrow {
        font-size: 20px;
        top: 50%;
    }
}

/* Para telas menores que 480px */
@media (max-width: 480px) {
    .header-container img {
        width: 70%;
        margin-left: 100px;
        margin-right: -30px;
    }

    .projects-container {
        margin: 10px 0;
    }

    .project-card {
        padding: 10px;

    }

    .project-card h3 {
        font-size: 1em;

    }

    .project-card p {
        font-size: 0.9em;

    }

    .down-arrow {
        font-size: 18px;
        
    }
}


/*contact area*/


aside{
    
    text-align: center;
    border-radius: 60px;
}


h2{
    font-size: 2.5em;
    color: #fff;
    padding-top: 60px;
}

.contact-info{
    font-size: 2rem;
    padding-top: 60px;
    
}


.contact-info i{
    padding: 30px;
    display: inline-flex;
    font-size: 30px;
}

.contact-info i#whatsapp{
    font-size: 25px;
    color: #fff;
}

.contact-info i#whatsapp {
    transition: all 0s ease; /* Adiciona uma transição suave para o efeito */
}

.contact-info i#whatsapp:hover {
    color: rgb(9, 212, 26); /* Cor do ícone ao passar o mouse */
    font-size: 25px; /* Tamanho do ícone ao passar o mouse */
    background-color: #fff; /* Cor de fundo do ícone */
    border-radius: 80px; /* Bordas arredondadas do ícone */
    box-shadow: 
        0 0 5px rgb(53, 218, 2), 
        0 0 10px rgb(53, 218, 2), 
        0 0 15px rgb(53, 218, 2), 
        0 0 20px rgb(53, 218, 2), 
        0 0 25px rgb(53, 218, 2), 
        0 0 30px rgb(53, 218, 2), 
        0 0 35px rgb(53, 218, 2);
}

.contact-info i#facebook{
    font-size: 25px;
        color: #fff;
}

.contact-info i#facebook {
    transition: all 0s ease;
}

.contact-info i#facebook:hover {
    color: rgb(3, 32, 163);
    font-size: 25px;
    background-color: #fff;
    border-radius: 80px;
    box-shadow: 
        0 0 5px rgb(3, 32, 163), 
        0 0 10px rgb(3, 32, 163), 
        0 0 15px rgb(3, 32, 163), 
        0 0 20px rgb(3, 32, 163), 
        0 0 25px rgb(3, 32, 163), 
        0 0 30px rgb(3, 32, 163), 
        0 0 35px rgb(3, 32, 163);
}

.contact-info i#instagram {
    font-size: 25px;
    color: #fff;
    transition: all 0s ease;
}

.contact-info i#instagram:hover {
    color: rgb(160, 22, 22);
    font-size: 25px;
    background-color: #fff;
    border-radius: 80px;
    box-shadow: 
        0 0 5px rgb(160, 22, 22), 
        0 0 10px rgb(160, 22, 22), 
        0 0 15px rgb(160, 22, 22), 
        0 0 20px rgb(160, 22, 22), 
        0 0 25px rgb(160, 22, 22), 
        0 0 30px rgb(160, 22, 22), 
        0 0 35px rgb(160, 22, 22);
}

.contact-info i#github {
    font-size: 25px;
    color: #fff;
    transition: all 0s ease;
}

.contact-info i#github:hover {
    color: rgb(2, 2, 2);
    font-size: 25px;
    background-color: #fff;
    border-radius: 80px;
    box-shadow: 
        0 0 5px rgb(128, 128, 128), 
        0 0 10px rgb(128, 128, 128), 
        0 0 15px rgb(128, 128, 128), 
        0 0 20px rgb(128, 128, 128), 
        0 0 25px rgb(128, 128, 128), 
        0 0 30px rgb(128, 128, 128), 
        0 0 35px rgb(128, 128, 128);
}

.contact-info i#linkedin {
    font-size: 25px;
    color: #fff;
    transition: all 0s ease;
}

.contact-info i#linkedin:hover {
    color: rgb(7, 64, 223);
    font-size: 25px;
    background-color: #fff;
    border-radius: 80px;
    box-shadow: 
        0 0 5px rgb(25, 79, 230), 
        0 0 10px rgb(25, 79, 230), 
        0 0 15px rgb(25, 79, 230), 
        0 0 20px rgb(25, 79, 230), 
        0 0 25px rgb(25, 79, 230), 
        0 0 30px rgb(25, 79, 230), 
        0 0 35px rgb(25, 79, 230);
}


.contact-info button{
    background-color: transparent;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 30px;
    display: inline;
    margin: 10px;
    cursor: pointer;
}

.contact-info a{
    color: #fff;
    font: bold;
    text-decoration: none;
    font-size: 25px;
    
}


