* {
    margin: 0; padding: 0;
}
a {
    font-family: sans-serif;
    text-decoration: none;
}
.header {
width: 100vw;
background-color: #252236 !important; 
box-shadow: 0px 0px 30px #1f153076;

}
.nav {
    background-color: #252236; 
    margin: 0 auto;
    box-shadow: 0px 0px 30px #1f153076;
    padding-inline: 16px; z-index: 6000; 
    min-width: 100vw !important; 
    height: 90px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul li a:hover {
    text-decoration: none;
    background-color: #b05cff; /* Cor de fundo ao passar o mouse */
    color: #33264e; /* Cor do texto ao passar o mouse */
}
.nav-list {
    display: flex;
    list-style:none;
    margin-right: 40px;
}
.nav-list a {
    text-decoration: none;
    font-weight: bold;
    color: #fff; /* Texto em branco */
    background-color: #312a41; /* Cor de fundo */
    padding: 10px 20px; /* Espaçamento interno */
    border-radius: 5px; /* Cantos arredondados */
    transition: background-color 0.9s; /* Adição para transição de cor ao passar o mouse */
    font-family: Arial, sans-serif; /* Fonte dos botões do navbar */
    margin-left: 15px; 
}
.nav-list a.current{
    text-decoration: none;
    background-color: #b05cff; /* Cor de fundo ao passar o mouse */
    color: #33264e; /* Cor do texto ao passar o mouse */
}
.hero {
    height: calc(100vh - 90px);
    background: center / cover no-repeat url("./bg.jpg");
}
.logo {
    width: 74px;
    height: auto;
    padding: 2px 0 2px 2px;
    margin-left: 8px; position: relative;
}
.hamburger {
    display: none;
    border: none;
    background: none;
    border-top: 3px solid white;
/*     transform: translateX(-40px) !important;  */
    cursor: pointer;
    margin-right: 40px; 
}
.hamburger::before,
.hamburger::after {
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    margin-top: 5px;
    position: relative;
    transition: 0.7s;
}
@media (max-width: 1140px) {
    .logo {
        position: absolute !important;
        top: 10px; margin-left: 45%;
    }
    .hamburger {
        display: block;
    }
    .nav-list {
        position: fixed;
        top: 90px; 
        left:0;
        width: 100vw;
        height: auto;
        background: #252236; 
        clip-path: circle(100px at 90% -205%);
        transition: 1s ease-in;
        flex-direction: column;
        justify-content:center;
        align-items: center;
        gap: 10px; 
        pointer-events: none;
        padding-block: 20px;  
    }
    .nav-list .switch {
        margin-top: 12px;
        margin-bottom: 20px;
    }

    .nav-list a {
        font-size: 20px;
        margin-bottom: 10px;
        opacity: 0;
        background-color: transparent;
    }
    
    nav ul li a:hover {
        text-decoration: none;
        background-color: transparent; /* Cor de fundo ao passar o mouse */
        color: #b05cff;  /* Cor do texto ao passar o mouse */
    }
    
    .nav-item a.current{
        text-decoration: none;
        background-color: transparent; /* Cor de fundo ao passar o mouse */
        color: #b05cff;  /* Cor do texto ao passar o mouse */
    }
    
    .nav-list li:nth-child(1) a {
        transition: 0.3s 0.4s;
    }
    .nav-list li:nth-child(2) a {
        transition: 0.3s 0.6s;
    }
    .nav-list li:nth-child(3) a {
        transition: 0.3s 0.8s;
    }
    .nav-list li:nth-child(4) a {
        transition: 0.3s 1s;
    }
    .nav-list li:nth-child(5) a {
        transition: 0.3s 1.2s;
    }
    .nav-list li:nth-child(6) a {
        transition: 0.3s 1.4s;
    }
    .nav-list li:nth-child(7) a {
        transition: 0.3s 1.6s;
    }

    /* estilos ativos */
    .nav.active .nav-list {
        clip-path: circle(1500px at 90% -95%);
        pointer-events: all;
    }

    .nav.active .nav-list a {
        opacity: 1;
    }
    .nav.active .hamburger {
        border-top-color: transparent;
    }
    .nav.active .hamburger::before {
        transform: rotate(135deg);
    }
    .nav.active .hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    } 
}
@media (max-width: 1040px) {
    .logo { position: absolute; top: 10px; margin-left: 44%; }}
@media (max-width: 940px) {
    .logo { position: absolute; top: 10px; margin-left: 43%; }}
@media (max-width: 840px) {
    .logo { position: absolute; top: 10px; margin-left: 42%; }}
@media (max-width: 740px) {
    .logo { position: absolute; top: 10px; margin-left: 41%; }}    
@media (max-width: 640px) {
    .logo { position: absolute; top: 10px; margin-left: 40%; }}
@media (max-width: 550px) {
    .logo { position: absolute; top: 10px; margin-left: 38%; }}
@media (max-width: 480px) { 
    .logo { position: absolute; top: 10px; margin-left: 36%; }}
@media (max-width: 465px) {
    .logo { position: absolute; top: 10px; margin-left: 35%; }}
@media (max-width: 450px) {
    .logo { position: absolute; top: 10px; margin-left: 34%; }}
@media (max-width: 380px) {
    .logo { position: absolute; top: 10px; margin-left: 32%; }}
@media (max-width: 360px) {
    .logo { position: absolute; top: 10px; margin-left: 31%; }}
@media (max-width: 345px) {
    .logo { position: absolute; top: 10px; margin-left: 29%; }}