@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;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vw;
  
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    color: #fff;
}

nav a {
    cursor: pointer;
    font-size: 18px;
}

nav a:hover {
    color: #c51111;
    font-size: 20px;
    transition: 0.5s ease-in-out;
}

 nav img {
    width: 60px;
    cursor: pointer;
}

.container-sobre-nos {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.container-principal {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    color: #fff;
    font-size: 16px;
}

.container-principal button {
    background-color: #c51111;
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.container-principal button:hover {
    background-color: #fff;
    color: #c51111;
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.logo-mario {
    width: 350px;
}

.logo-mario-luigi {
    width: 31rem;
}

.container-video {
    position: fixed;
    top: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
}
.video-background {
    min-width: 100vw;
    min-height: 100vh;
}

.mascara-video {
    width: 100%;
    height: 100%;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    position: fixed;
    top: 0;
    
}

.container-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
}
.container-whatsapp img {
    width: 60px;
}

.container-whatsapp:hover {
    transform: scale(1.3);
    transition: 0.5s ease-in-out;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    position: fixed;
    top: 30%;
    left: -395px;
    transition: left 1s linear;
    z-index: 4;

}

form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    
}

form input:focus {
    outline: none;
    border-color: #29B63F;
}

form textarea {
    height: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
}

form textarea:focus {
    outline: none;
    border-color: #29B63F;
}
.btn-form {
    background-color: #c51111;
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.mascara-form {
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    transition: visibility 1s ease-in-out;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 20px;
    left: 20px; /* Alinha o botão no canto esquerdo */
    font-size: 30px;
    cursor: pointer;
    color: white;
}

.menu-mobile {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px; /* Ajuste para ficar perto do botão */
    left: 20px;
    background: rgba(0, 0, 0, 0.9);
    width: 180px;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.menu-mobile a {
    color: white;
    text-decoration: none;
    padding: 12px;
    display: block;
    text-align: center;
}

.menu-mobile a:hover {
    background: #c51111;
}




@media (max-width: 768px) {
    nav {
        padding: 15px;
    }

    nav img {
        display: none;
    }

    nav a {
        display: none;

    }

    .container-sobre-nos {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .container-principal {
        max-width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 0.8rem;
        text-align: center;
    }
    .logo-mario {
        width: 200px;
    }
    .logo-mario-luigi {
        width: 18rem;
    }

    form {
        width: 320px;
        left: -315px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        color: white;
    }

    .menu-mobile.show {
        display: flex;
    }

}