/* Reset de margens e paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos para o cabeçalho */

header {
    display: flex;
    width: 100%;
    height: 120px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.logo-nav {
    width: 200px;
    height: 200px;
}

.menu-nav {
    display: flex;
    align-items: center;
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 50px;
    
    
}
.menu-items a {
    text-decoration: none;
    color: rgb(0, 3, 5);
    transition: color 0.3s ease;
    
}
.menu-items a:hover {
    color: #E27204; 
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: rgb(0, 3, 5);
}

main {
    padding: 100px;
    background-image: url(./imagens/deco-2_Mobensani.png);
    background-color: #fafafa;
    background-repeat: no-repeat;
    background-position: right;
}

/* Estilos para o formulário e container */
.form-container {
    width: 600px;
    margin: auto; 
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 20px; 
    margin-bottom: 20px;
    box-shadow: 0px 0px 20px black;
    position: relative; 
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.titleform {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px; 
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    resize: vertical;
}

input[type=submit] {
    background-color: #228b22;
    color: white;
    border: none;
    padding: 10px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.5s ease;
    
}

input[type=submit]:hover {
    background-color: #3c1d48;
}

/* Responsividade */
@media screen and (max-width: 600px) {
    header {
        height: auto;

    }

    .logo-nav {
        width: 150px;
        height: 150px;
    }

    .menu-items {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 1px;
        background-color: #3E1749; 
        padding: 20px;
        z-index: 10; 
        width: 100%;
        opacity: 95%;
    }
    

    .menu-items.show {
        display: flex;
    }

    .menu-items a {
        color: white; 
    }

    .hamburger-menu {
        display: flex;
    }

    /* Responsividade para o formulário */
    .form-container {
        width: 100%; 
        padding: 15px;
        margin: 10px auto; 
        box-shadow: none; 
        border-radius: 8px;
        margin-top: 80px;
    }

    .titleform {
        font-size: 24px;
    }

    input[type=submit] {
        padding: 10px;
        font-size: 14px;
    }

 
}
