
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.hamburger-menu {
     position: fixed;
    top: 35px;
    left: 20px; 
    cursor: pointer;
    z-index: 9999;
    margin-right: 10px;
}
 img, svg .logo{
    margin-left: 60px !important;
}

/* .nav-2{
    position: fixed;
    top: 30px;
    /* bottom: 90%; 
    right: 10px;
    font-size: 18px;
    background-color: #fff;
    z-index: 1;
} */

.bar-container {
    background-color: #fff;
    padding-right: 20px;
}
.bar {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu.show {
    left: 0;
}

.menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.menu ul li {
    margin-bottom: 20px;
}

.menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}
/* Estilos para o slider */
.slider {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* height: 100vh; */
overflow: hidden;
position: relative;
margin: 0;
padding: 0;
color: #333; /* Cor do texto do slide */
background-color: transparent; /* Removido o fundo */
}

.slide {
font-size: 3rem; /* Tamanho da fonte */
margin: 0;
padding: 0;
opacity: 0; /* Inicialmente, oculte as palavras */
text-align: center;
}

/* Estilize o menu de acordo com suas necessidades */
/* 
@media (max-width: 767px) {
    .nav-2 {
        position: absolute;
        top: 60%;
        right: 5px;
        transform: translateY(-50%);
        width: 30px;
        height: 20px;
        background-color: #962e2e;
        border-radius: 50%;
        z-index: 1;
    }
    .bar-container {
        background-color: #fff;
        padding-right: 20px;
    }
} */

