/* Estilo para o corpo da página */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    position: relative;
    overflow-x: hidden;
}

/* Estilo para o menu de navegação */
nav {
    background-color: #000000;
    overflow: hidden;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    position: relative;
}

/* Estilo para o logotipo */
.logo {
    height: 70px;
    width: auto;
    margin-right: 40px;
}

/* Estilo para os links do menu */
nav a {
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
}

/* Estilo de hover para os links do menu */
nav a:hover {
    background-color: #ddd;
    color: black;
}

/* Ícone do menu hambúrguer */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background-color: transparent;
    border: none;
    position: absolute;
    right: 20px;
    z-index: 10000;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    margin: 6px 0;
    background-color: #fff;
}

/* Estilo para o menu deslizante */
.side-menu {
    height: 100%;
    width: 250px;
    position: fixed;
    left: -250px;
    top: 0;
    background-color: #14949f;
    overflow-y: auto;
    transition: 0.3s;
    padding-top: 20px;
    z-index: 99999;
    box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}

.side-menu a {
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    display: block;
    font-size: 18px;
}

.side-menu a:hover {
    background-color: #ddd;
    color: black;
}

.side-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100000;
}

/* Estilo para abrir o menu */
.side-menu.open {
    left: 0;
}

/* Overlay escuro para cobrir a página quando o menu está aberto */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 99998;
}

.overlay.show {
    display: block;
}

/* Responsividade */
@media screen and (max-width: 1000px) {
    .menu-icon {
        display: flex;
    }

    nav a {
        display: none;
    }

    .topo .search-form {
        width: 100%;
        margin: 10px 0;
    }

    .topo .search-input {
        width: 100%;
    }

    .topo .dropdown-container,
    .topo .social-icons {
        display: none;
    }

    .logo-container {
        flex: 1;
        text-align: center;
        margin-right: 0;
        
    }
}

@media screen and (min-width: 1000px) {
    nav {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .menu-icon {
        display: none;
    }

    nav a {
        display: inline-block;
        padding: 14px 20px;
    }
}

/* Topo com gradiente */
.topo {
    background: linear-gradient(to bottom, #10909d, #45c8b4);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    justify-content: space-between;
}

/* Logo */
.logo-container {
    text-align: left;
    margin-right: 20px;
}
.logo-container img {
    height: 70px;
    width: auto;
}

/* Dropdowns */
.dropdown-container {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.dropdown-button {
    background-color: transparent;
    color: white;
    padding: 10px 15px;
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 160px;
    
}


.dropdown-button2 {
    background-color: transparent;
    color: white;
    padding: 10px 15px;
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    
}


.dropdown-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color:white;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 100001; /* Alterado para garantir que fique acima de outros elementos */
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #10909d;
    color: white;
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Ícones sociais no topo */
.social-icons {
    display: flex;
    flex: 0 0 auto;
    gap: 15px;
    margin-left: auto;
}

.icon-space {
    margin: 0 5px;
}

.icon {
    width: 30px;
    height: 30px;
}

.icon-space a {
    background-color: rgba(255, 255, 255, 0.1); /* Sutil */
    border-radius: 10%; /* Círculo */
    padding: 3px; /* Ajustado */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-decoration: none !important;
    box-shadow: none !important;
    width: 36px; /* Tamanho fixo para círculo */
    height: 36px; /* Tamanho fixo para círculo */
}

.icon-space a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.icon-space i {
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Ícones sociais dentro do menu lateral */
.side-menu .social-icons {
    display: flex;
    gap: 10px;
    padding: 10px 20px;
}

.side-menu .icon-space {
    padding: 0;
}

.side-menu .icon-space i {
    font-size: 18px;
    width: 24px;
    height: 24px;
}

/* Banner */
.banner {
    width: 100%;
    height: 300px;
    background-color: #ddd;
}

/* Botão de vagas */
.botao-vagas {
    color: white;
    text-decoration: none;
    background-color: transparent;
    
}

.botao-vagas:hover {
    background-color: transparent;
    color: white;
    text-decoration: none;
}