@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    font-family: "Poppins", sans-serif;
    background-color: #202020;
    color: white;
    overflow-x: hidden;
}

/* CABEÇALHO */

header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 25px 0;
}

.logo{
    font-size: 30px;
    color: #15ff00;
}

header .menu{
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
}

header .menu li a{
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}

header .menu li a::after{
    content: " ";
    width: 0%;
    height: 2px;
    background-color: #15ff00;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .4s;
}

header .menu li a:hover::after{
    width: 100%;
}

header .menu li a.active::after{
    width: 100%;
}

i.btn-abrir{
    display: none;
    font-size: 25px;
}

i.btn-abrir:active{
    transform: scale(0.96);
}

/* MENU MOBILE */

.menu-mobile{
    background-color: rgba(40, 40, 40);
    position: fixed;
    right: 0;
    padding: 10px;
    width: 70%;
    height: 100vh;
    z-index: 99999;  
}

.menu-mobile i.btn-fechar{
    font-size: 35px;
    margin-bottom: 10px;
    color: #15ff00;
    padding: 5px;
}

.menu-mobile i.btn-fechar:active{
    transform: scale(0.96);
}

.menu-mobile .menu{
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 25px;
    font-size: 20px;
    list-style: none;
}

.menu-mobile .menu li a{
    color: white;
    text-decoration: none;
    font-weight: 300;
    padding: 40px 10px;
}

.menu-mobile .menu li a:hover{
    color: #17c208;
}

.overlay-menu{
    background-color: rgba(0, 0, 0, 0.637);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8888;
}

/* SEÇÃO INÍCIO */

.secao-inicio{
    flex: 1; 
    width: 100%;
    display: flex;
    gap: 35px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.titulo-principal{
    font-size: 70px;
    line-height: 70px;
    max-width: 910px;
}

.titulo-principal .texto-destacado{
    color: #15ff00;
}

.btn-secao-inicio{
    border: none;
    outline: none;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 800;
    background-color: #17c208;
    color: white;
    border-radius: 50px;
    font-size: 25px;
    text-decoration: none;
}

.btn-secao-inicio:hover{
    transform: scale(0.96);
    cursor: pointer;
}

/* ANIMAÇÃO DO TÍTULO PRINCIPAL */

.ti-cursor {
    color: #aaaaaa !important;
    margin-left: 5px;
    font-weight: 400 !important;
}

.sub-titulo{
    font-weight: 400;
    line-height: 28px;
    max-width: 700px;
}

.none{
    display: none;
}

/* FOOTER */

footer {
    background-color: #202020;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    width: 100%;
}

footer a {
    color: #0f0;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {
    footer {
        padding: 15px;
        font-size: 12px;
    }
}
