* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body {
    height: 450vh;
    background-color: var(--bg-black-900);
}
.home {
    height: 100%;
    transition: margin-left 1s ease;
}
.position {
    width: 70%;
    height: 100vh;
    margin-left: 100px;
}
:root {
    --bg-black-900: #f2f2fc;
    --bg-black-100: #fdf9ff;
    --bg-black-50: #e8dfec;
    --color-11: #643fe9;
    --color-12: #2383dd;
    --txt-color: #000000;
}
.hidden { /* Animação escroll*/
    opacity: 0;
    filter: blur(15px);
    transform: translatey(100%);
    transition: all 2s ease;
}
.anim {
    opacity: 0;
    filter: blur(15px);
    transform: translatex(-100%);
    transition: all 1s ease;
}
.show { /* Animação escroll*/
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
    transition: all 1s ease;
}
/*-----------------------------------menu lateral-----------------------------------*/
.main {
    transition: all 1s ease;
}
.container-menu {
    height: 100%;
    width: 103px;
    background-color: var(--bg-black-900);
    position: fixed;
    transition: width 1s ease;
    box-shadow: 3px 0 5px rgba(0, 0, 0, 0.1);
}
.container-menu.expandir {
    width: 180px;   
}
ul {
    margin-top: 50px;
    width: 100%;
    list-style-type: none;
    padding: 0;
}
.item-menu {
    width: 100%;
    justify-content: center;
}
.item-menu a {
    width: 100%;
    height: 60px;
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    font-size: 20px;
    transition: background-color 0.3s;
    line-height: 10px;
}
.item-menu a:hover {
    background-color: #ffffff;
}
ul li.item-menu a .icon {
    margin-left: 35px;
}
ul li.item-menu a .icon i {
    font-size: 25px;
    margin-right: 10px;
    cursor: pointer;
}
ul li a .txt-menu {
    font-family: "Sour Gummy", sans-serif;
    font-size: 17px;
    transition: opacity 0.8s, pointer-events 0.8s;
    opacity: 0;
    pointer-events: none;
}
.container-menu.expandir .txt-menu {
    opacity: 1;
    pointer-events: auto;
}
.logo {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img {
    width: 110px;
    border-radius: 50%;
}
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3%;
}
.button i {
    font-size: 2rem;
    transition: transform 0.8s, color 0.8s;
    cursor: pointer;
    margin-top: 50px;
}
.button i:hover {
    transform: scale(1.2);
    color: var(--color-12);
}
.container-redes {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.top {
    margin-top: 30px;
}
.git i {
    text-decoration: none;
    color: #000000;
    font-size: 30px;
    margin-right: 10px;
    transition: all 0.6s ease;
}
.link i {
    text-decoration: none;
    color: #2383dd;
    font-size: 30px;
    margin-right: 10px;
    transition: all 0.6s ease;
}
.cv i {
    text-decoration: none;
    color: #838080;
    font-size: 30px;
    margin-right: 10px;
    transition: all 0.6s ease;
}
.git i:hover {
    transform: scale(1.2);
}
.link i:hover {
    transform: scale(1.2);
}
.cv i:hover {
    transform: scale(1.2);
}
.redes {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/*-----------------------------------home-page-----------------------------------*/
.home {
    height: 130vh;
    display: flex;
}
.container-home {
    width: 60%;
    margin-left: 20%;
}
.container-home p {
    font-size: 40px;
    font-family: "Sour Gummy", sans-serif;
    transition: all 1s ease;
    position: absolute;
    margin-top: 4%;
    color: var(--color-12);
}
.container-home h1 {
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    transition: all 1s ease;
    position: absolute;
    margin-top: 8%;
}
.container-home h1 span{
    color: var(--color-12);
    font-family: "Sour Gummy", sans-serif;
}
.container-home h2 {
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    transition: all 1s ease;
    position: absolute;
    margin-top: 12%;
}
.container-home h2 span{
    color: var(--color-12);
    font-family: "Sour Gummy", sans-serif;
}
.img-eu{
    position: absolute;
    margin-left: 65%;
    margin-top: 10%;
}
.img-eu img{
    width: 60%;
    border-radius: 9%;
    transition: all 0.6s ease;
}
.img-eu img:hover{
    transform: scale(1.1);
    transition: all 0.6s ease;
}
.btn{
    margin-left: 50%;
    margin-top: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-12);
    cursor: pointer;
    transition: all 0.8s ease;
    position: absolute;
}
.btn:hover {
    color: #ffffff;
    background-color: var(--txt-color);
}
.btn i{
    font-size: 25px;
    transition: all 1s ease;
    color: var(--bg-black-100);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(30px);
    }
    60% {
        transform: translateY(15px);
    }
}
.bounce {
    animation: bounce 1s;
}
/*-----------------------------------about-----------------------------------*/
.container-about {
    height: 100vh;
    display: flex;
    justify-content: center;
}
.about h1 {
    font-family: 'roboto', sans-serif;
    margin-top: 20px;
    font-size: 30px;
}
.about p{
    width: 100%;
    font-size: 15px;
    font-family: "sour gummy", sans-serif;
    text-indent: 35px;
    text-align: justify;
    margin-top: 10px;
}
.container-certificate {
    display: flex;
    justify-content: center;
    height: 80vh;
    text-align: center;
}
.about-position {
    width: 50%;
    height: 100%;
    margin-top: 5%;
}
.icon-about i{
    font-size: 60px;
    padding: 5px 10px 40px 30px;
}
.fa-html5 {
    color: rgb(211, 91, 0);
}
.fa-css3-alt {
    color: #2383dd;
}
.fa-js {
    color: rgb(247, 223, 30, 1);
}
.fa-react {
    color: #2383dd;
}
.fa-angular {
    color: rgb(185, 5, 5);
}
.fa-node {
    color: rgb(51, 153, 51, 1);
}
.fa-sass {
    color: rgba(255, 71, 175, 0.8);
}
.fa-bootstrap {
    color: rgb(118, 2, 160);
}
.fa-git-alt {
    color: rgb(211, 91, 0);
}
/*---------------------------------experience-----------------------------------*/
.experience {
    height: 100vh;
    display: flex;
    justify-content: center;
}
.trabalhos h1 {
    font-family: 'roboto', sans-serif;
    font-size: 28px;
}
.container-experience p{
    font-family: "sour gummy", sans-serif;
    font-size: 15px;
    width: 100%;
    text-indent: 35px;
    text-align: justify;
    margin-top: 10px;
}
.container-carrosel { 
    width: 300px;
    height: 60vh;
    overflow: hidden; 
    position: relative;
    margin-top: 50px;
    margin-left: 30%; 
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
} 
.carrosel { 
    display: flex;  
    transition: transform 0.5s ease; 
    cursor: grab;
    height: 100%;
} 
.carrosel .card { 
    min-width: 100%; 
    box-sizing: border-box; 
    padding: 20px; 
    text-align: center; 
    background-color: #f0f0f0; 
} 
.card img {
    width: 250px;
    border-radius: 30%;
}
.carrosel .card h2 { 
    margin: 0; 
}
.carrosel .card h3 {
    margin-top: 10px;
    font-size: 17px;
} 
.carrosel .card h4 {
    margin-top: 5px;
    font-size: 17px;
}
.botao-anterior, .botao-proximo { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background-color: rgba(0, 0, 0, 0.5); 
    color: white; 
    border: none; 
    padding: 10px; 
    cursor: pointer; 
    border-radius: 50%;
} 
.botao-anterior { 
    left: 10px; 
} 
.botao-proximo { 
    right: 10px; 
}
/*---------------------------------Development-----------------------------------*/
.development {
    height: 100vh;
    margin-top: 7%;
    transition: all 1s ease;
}
.container-development p{
    font-family: "sour gummy", sans-serif;
    font-size: 20PX;
}
.container-development {
    margin-left: 250px;
}
.container-wrapper {
    height: 100%;
    width: 100%;
}
.wrapper {
    width: 60%;
    height: 50%;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
    margin: 3rem auto;
    overflow: hidden;
    margin-left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
.wrapper-holder {
    display: grid;
    grid-template-columns: repeat(6, 100%); /* Ajuste fino para colunas */
    height: 100%;
    width: 100%; /* Ajuste para considerar todas as imagens */
    animation: slider 30s ease-in-out infinite;
    transition: transform 1s ease;
    cursor: pointer;
}
.wrapper-holder div {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
    padding: 0; 
    margin: 0;
}
.wrapper-holder div:hover {
    transform: scale(1.1);
}
#slider-img-1 {
    background-image: url(/img/instituto.png);
}
#slider-img-2 {
    background-image: url(/img/IMG-02.png);
}
#slider-img-3 {
    background-image: url(/img/IMG-03.png);
}
#slider-img-4 {
    background-image: url(/img/IMG-04.png);
}
#slider-img-5 {
    background-image: url(/img/IMG-05.png);
}
#slider-img-6 {
    background-image: url(/img/IMG-01.png);
}
@keyframes slider {
    0% { transform: translateX(0%); }
    16.66% { transform: translateX(-100%); }
    33.33% { transform: translateX(-200%); }
    50% { transform: translateX(-300%); }
    66.66% { transform: translateX(-400%); }
    83.33% { transform: translateX(-500%); }
    100% { transform: translateX(0%); } /* Volta para a primeira imagem sem espaço em branco */
}
/*---------------------------------End-----------------------------------*/
.container-end {
    height: 30vh;
    background-color: #000000;
}
/*----------------------------whats----------------------------*/
.whats a{
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: #35c40a;
    text-align: center;
    font-size: 60px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.whats a:hover{
    transform: scale(1.1);
    transition: all 0.5s ease;
}
/*----------------------Responsividade----------------------------*/
@media (max-width: 576px) {
    * {
        margin: 0;
        padding: 0;
    }
    body {
        overflow-x: hidden;
    }
    /*----------------------------menu----------------------------*/ 
    .container-menu {
        width: 70px;
    }
    .button{
        display: none;
    }
    .logo img{
        width: 70px;
    }
    ul li.item-menu a .icon {
        margin-left: 20px;
        margin-top: 2px;
    }
    /*----------------------------home page----------------------------*/
    .container-home {
        margin-top: 60px;
    }
    .container-home p {
        font-size: 25px;
    }
    .container-home h1 {
        font-size: 25px;
        margin-top: 30px;
    }
    .container-home h2 {
        font-size: 15px;
        margin-top: 90px;
    }
    .container-home h2 span{
        font-size: 25px;
    }
    .img-eu img{
        width: 110px;
        margin-top: 250px;
    }
    .btn{
        margin-left: 50%;
        margin-top: 200%;
    }
    /*----------------------------about----------------------------*/
    .about h1 {
        font-size: 20px;
    }
    .about p {
        font-size: 15px;
    }
    /*----------------------------experience----------------------------*/
    .experience h1 {
        font-size: 17px;
    }
    .container-experience p {
        font-size: 11px;
    }   
}