html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    
    font-family: 'Poppins';
}

header {
    height: 15vh;
    align-items: center;
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 100px;
    box-sizing: border-box; 
    display: flex;
    justify-content: space-between;
}

header img {
    width: 150px;
}

header .menu-navegation a {
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    font-size: 17px;
    color: rgb(0, 0, 0);
    transition: 0.5s all;
}

header .menu-navegation a:hover {
    color: #62939e;
}

.menu-toggle {
    display: none;
    background: url('../img/menu.svg');
    background-repeat: no-repeat;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    width: 40px; 
    height: 40px;
}


@media (max-width: 1000px) {
    header {
        padding: 0 50px;
    }


    #main {
        padding: 0 50px;
    }

    #main h1 {
        font-size: clamp(25px, 5vh, 65px);
    }

    #events {
        padding: 20px 50px 0 50px;
    }
    

    .menu-toggle {
        display: block; 
    }

    .menu-navegation {
        position: absolute;
        background: #62939e;
        top: 0vh;
        left: 20%;
        height: 100%;
        width: 80%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-300%);
        transition: transform 1s ease;
        z-index: 1000;
        display: flex
;
        justify-content: center;
    }

    .menu-navegation.active {
        transform: translateY(0); 
    }

    .menu-navegation a {
        margin: 20px 0; 
    }
}

