@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'noto sans', sans-serif;
}
html{
    font-size: 63.5%;
    scroll-padding-top: 80px;
}
body{
    width: 100%;
    height: 100;
    overflow-x: hidden;
    background-color: #460653;
    color: white;
}
header{
    margin-top: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 9%;
    display: flex;
    background-color: transparent;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    left: 0;
}
.logo{
    color: white;
    font-size: 3rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}
.logo:hover{
    transform:scale(1.1)
}
nav a{
    font-size: 1.8rem;
    color:#0E9D26;
    margin-left: 4rem;
    transform: 0.35s ease;
    border-bottom: 3px solid transparent;
    font-weight: 400 ;
}
nav a:hover,
nav a.active{
    color:white;
    border-bottom: 3px solid white;
}
section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}
.home{
    display: flex;
    align-items: center;
    gap: 8rem;
    background-color: #440651;
}
.home .home-content h1{
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.3;
}
span{
    color: #c995e9;
}
.home-content h3{
    font-size: 3rem ;
    font-weight: 700;
}
.home-img img{
    position: relative ; 
    width: 48vh;    
    cursor: pointer;
    transition: 0.2s ease;
}
.home-img img:hover{
    transform: scale(1.1);
}
.home .social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    background-color: transparent;
    border: 0.2rem solid #c995e9;
    color: #c995e9;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    width: 4rem;
    height: 4rem;
    transition: 0.3s ease;
}
.social-icons a:hover{
    color: #440651;
    transform: scale(1.3) translateY(-5px);
    background-color: #c995e9;
    box-shadow: 0 0 25px #c995e9;
}
.btn{
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #440651;
    border: 0.2rem solid #c995e9;
    border-radius: 4rem;
    font-size: 1.6rem;
    color:#c995e9;
    letter-spacing: 0.3rem;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn:hover{
    transform: scale3d(1,03);
    background-color: #c995e9;
    color: #440651;
    box-shadow: 0 0 25px #c995e9;
}
.typing-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}
.typing-text span{
    position: relative;
}
.typing-text span::before{
    content: "";
    color: #c995e9;
    animation: words 20s infinite;
}
.typing-text span::after{
    background-color: transparent;
    position: absolute;
    width: calc(100%+8px);
    height: 100%;
    border-left: 3px solid #460653;
    animation: cursor 0.6s infinite;
}
@keyframes cursor{
    to{
        border-left: 3px solid #c995e9;
    }
}
@keyframes words{
    0%, 40%{
        content:"Aluno";
    }
    41%, 60%{
        content:"Cristão";
    }
    61%,80%{
        content:"Tecnico inf";
    }
    81%,100%{
        content:"fã de JOJO";
    }
}
@media(max-width: 995px){
    nav{
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        border-left: 3px solid #c995e9;
        border-bottom: 3px solid #c995e9;
        border-bottom-left-radius: 2rem;
        padding: 1rem;
        background-color: #460653;
        border-top: 0,1rem solid #c995e9;
    }
   nav.active{
        display: block;
    }
 
    nav a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    nav a:hover,
    nav a.active{
        padding: 1rem;
        border-bottom: 0.5rem solid #c995e9;
    }
}
@media (max-width: 1000px){
    .home{
        gap: 4rem;
    }
}
@media(max-width: 995px){
    .home{
        flex-direction: column;
        margin: 5rem 4rem;
    }
    .home .home-content h3{
        font-size: 2.5rem;
    }
    .home-content h1{
        font-size: 4rem;
    }
    .home-img img{
        width: 70vh;
        margin-top: 4rem;
    }
}
.menu-toggle{
    display: none;
}
.menu-icon{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 101;
}
.menu-icon span{
    display: block;
    height: 4px;
    background-color: #c995e9;
    border-radius: 2px;
}
@media(max-width: 995px){
    .menu-icon{
        display: flex;
    }
    #menu-toggle:checked ~ nav{
        display: block;
    } 
}

.blocos h3{
    font-size: 3rem;
    margin-bottom: 2rem;
    border-left: 5px solid #c995e9;
    padding-left: 1,5rem;
    color: #c995e9;
}
.blocos p{
    font-size: 1.8rem;
    width: 1.7;
    color: #c995e9;
}