a{
    text-decoration: none;
}
/* General Styles */
a img {
    height: 45px; 
    margin-right: 10px;
}

/* Header Styles */
header {
    background-color: #ffffff;
    color: black;
    padding: 10px 0;
}

/* Navigation Menu Styles */
#menu-nav {
    padding-right: 40px;
    font-size: 19px;
}

#menu-nav li {
    padding: 10px;
}

#menu-nav a {
    color: rgb(0, 44, 139);
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    transition: all 0.3s ease;
}

#menu-nav a:hover {
    color: rgb(201, 8, 8);
    transform: scale(1.1);
}

/* Client Area Styles */
#area-cliente {
    display: inline-block;
    padding: 5px 5px;
    color: rgb(0, 44, 139);
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    border: 2px solid rgb(219, 18, 18);
    border-radius: 5px;
    background-color: transparent;
    transition: all 0.3s ease;
}

#area-cliente:hover {
    color: white;
    background-color: rgb(0, 44, 139);
    transform: scale(1.1);
}

#area-cliente img {
    width: 34px; 
    height: 34px;
}


body {
    background-color: #001f3f; /* Azul escuro */
    color: white;
}

form label,
form input,
form textarea {
    color: white;
}

input[type="text"],
input[type="email"],
input[type="file"],
textarea {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

input::placeholder,
textarea::placeholder {
    color: #cccccc;
}

.btn-primary {
    background-color: #dc3545; /* Vermelho */
    border-color: #dc3545;
    color: white;
}

.btn-primary:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* Centraliza o formulário se necessário */
.container {
    max-width: 600px;
}

@media (max-width: 768px) {
    header {
        padding: 15px;
        text-align: center;
    }

    a img {
        height: 35px;
        margin-right: 5px;
    }

    #menu-nav {
        padding: 0;
        font-size: 17px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #menu-nav li {
        padding: 8px 0;
        text-align: center;
    }

    #area-cliente {
        display: block;
        margin: 10px auto;
        padding: 8px 10px;
    }

    #area-cliente img {
        display: block;
        margin: 0 auto 5px;
        width: 30px;
        height: 30px;
    }

    .container {
        width: 90%;
        max-width: 100%;
        padding: 0 10px;
        margin: 0 auto;
    }

    form label,
    form input,
    form textarea {
        font-size: 16px;
    }

    input[type="text"],
    input[type="email"],
    input[type="file"],
    textarea {
        width: 100%;
        padding: 10px;
        font-size: 16px;
    }

    .btn-primary {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

