@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
}
body {
    /* font-family: 'Cabin', sans-serif; */
    font-family: "Libre Baskerville", serif;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color:antiquewhite;
    font-size: 1.2rem 1rem;
}
.cabecalho {
    height: 40%;
    width: 100%;
    padding-bottom: 8%;
    display: flex;
    flex-direction: column;
}

.azul {
    height: 20rem;
    background-color: #6D6EF4;
    border-radius: 0 0 100% 100%;
}

.img-profile {
    position: absolute;
    top: 79%;
    left: 50%;
    transform: translate(-50%, -165%);
}
.img-profile img {
    height: 10rem;
    border-radius: 50%;
    border: 5px solid white;
    box-sizing: border-box;
    
}
.subtitulo {
    margin-top: 8rem;
}
.subtitulo p {
    padding-top: 0.5%;
}
.subtitulo .cargo {
    font-weight: bolder;
}
.skills {
    height: 45%;
    /* background-color: blue; */
}
.titulo2 h1 {
    text-align: left;
    padding-left: 10%;
    padding-top: 1%;
    /* text-decoration: underline; */
}
.list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 60%;
    padding-top: 10px;
} 

.skill-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2%;
    padding-bottom: 10%;
    margin: 0;

}
.list li {
    list-style: none;
    min-height: 1.5rem;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid #6D6EF4;
    margin-top: 2.5%;
    margin-right: 2%;
    border-radius: 3.5px;
}

.list li.front {
    background-color: #6D6EF4;
    color: #fff;
}

.list li:hover {
    border: 2px solid #F166C8;
}

.projetos {
    text-align: left;
    margin-left: 10%;
    padding-top: 10%;
    height: 20vh;
}
.projetos a {
    text-decoration: none;
    color: white;
    padding: 1rem;
    background-color: #6D6EF4;
    border-radius: 4px;
    text-align: center;
}
.projetos a:hover {
    background-color: #F166C8;
    text-decoration: underline;
}

.rodape {
    background-color: #6D6EF4;
    border-radius: 19px 19px 0px 0px;
    padding-bottom: 0;
    margin-top: 1rem;
    left: 0;
    bottom: 0;
    width: 100%;
}
.nav-bar {
    padding-top: 3%;
}
.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-list li {
    list-style: none;
    padding-left: 1%;
    padding-right: 1%;
    padding-bottom: 1%;
}
.nav-list li img {
    height: 5vh;
}

.voltar {
    text-align: left;
    margin: 2%;

}
.voltar a:hover {
    color: #F166C8;
}
.voltar a {
    padding-top: 10%;
    padding-left: 10%;
    /* background-color: #6D6EF4; */
    /* text-decoration: none; */
    color: black;
    font-size: 1.5rem;
}
.lista img {
    max-width: 50%;
    min-width: 60%;
    border-radius: 5px;

}
.lista img:hover {
    transition: 1s;
    max-width: 68%;
}
.card {
    margin: 5%;
}
.card-titulo {
    padding: 1%;
    font-size: small;
}
.caption {
    padding: 0.5%;
    font-size: 1rem;
    margin: 0 1rem;
}
.titulo-page {
    font-size: 2.5rem;
}
#searchInput {
    width: 50%;
    padding: 12px 20px;
    margin: 5rem 10px;
    box-sizing: border-box;
    border: 2px solid #6D6EF4; 
    border-radius: 25px; 
    font-size: 1rem; 
    background-color: #f9f9f9; 
    color: #333; 
    outline: none;  
    transition: all 0.3s ease; 
}

/* Efeito ao focar no input */
#searchInput:focus {
    border-color: #F166C8; /* Cor da borda ao focar */
    box-shadow: 0 0 8px rgba(241, 102, 200, 0.6); /* Sombra ao redor ao focar */
    background-color: #fff; /* Fundo branco ao focar */
}

.tags {
    display: none;
}

.curriculo {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

.curriculo .pdf-file {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 100%;
}

.curriculo h3 {
    margin-left: 8rem;
    margin-bottom: 3.5rem;
}

.curriculo iframe {
    width: 50%;
    height: 20rem;
    border-radius: 4px 4px 0 0;

}
.curriculo button {
    color: #fff;
    font-weight: 600;
    padding: 1rem;
    background-color: #6D6EF4;
    border-radius: 0 0 4px 4px;
    border: none;
    text-align: center;
    width: 50%;
}

.curriculo button:active, button:hover {
    color: #fff;
    transition: 0.2s;
    background-color: #F166C8;
}

/* Estilo para dispositivos menores */
@media (max-width: 768px) {
    #searchInput {
        width: 80%; 
        margin: 2rem 10px;
    }
    .titulo-page {
        margin-top: 3.5rem;
    }
    .curriculo {
        margin-bottom: 2rem;
    }
    .curriculo h3 {
        font-size: 23px;
        margin: auto;
        margin-top: 2.5rem;
        margin-bottom: 2rem;
    }
    .pdf-file iframe{
        width: 90%;
    }
    .pdf-file button{
        width: 90%;
    }
    .projetos {
    margin-left: 1.3rem;
    }
}





@media (max-width: 768px) {
    .img-profile img {
        height: 8rem;
    }
    .azul {
        height: 10rem;
        background-color: #6D6EF4;
        border-radius: 0 0 100% 100%;
    }
    
}

@media (max-width: 768px) {
    .img-profile {
        top: 27%;
        left: 50%;
        transform: translate(-50%, -40%);
    }
    .azul {
        height: 10rem;
        background-color: #6D6EF4;
        border-radius: 0 0 100% 100%;
    }
    
}

@media (max-width: 480px) {
    .img-profile {
        top: 25%;
        left: 50%;
        transform: translate(-50%, -35%);
    }
    .azul {
        height: 10rem;
        background-color: #6D6EF4;
        border-radius: 0 0 100% 100%;
    }
    
}
