header {
    background-color: black;
    background-size: contain;
}

main {
    color: black;
}

#info-header-item, .text-plus-arrow {
    position: relative;
    padding: 5px 0;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s ease-in-out;
    width: fit-content;

}
  
#info-header-item::after, .text-plus-arrow::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: white;
    width: 0%;
    transition: width 0.3s ease-in-out;
}

#span-underline-black, #span-underline-black i {
    font-size: 0.7em;
}

#span-underline-black::after {
    background-color: black;
}
  
#info-header-item:hover, .text-plus-arrow:hover {
    transform: translateY(4px); /* n é o comportamento desejado mas tem que fazer o trick atm*/
}
  
  #info-header-item:hover::after, .text-plus-arrow:hover::after {
    width: 100%;
}


#info-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid white;
}

#info-header img {
    width: 80px;
    height: auto;
    cursor: pointer;
}

#info-header-list {
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    column-gap: 12px;
}

#vagas-container {
    padding: 50px 10px;
    margin-bottom: 0px;
    background-color: #007BFF;
    color: white;
}

#vagas-container ul {
    margin-left: 20px;
    list-style-type: disc;
}

#form-candidatura {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.double-col-form {
    display: flex;
    column-gap: 25px;
}

form input, form button, form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
}

form input {
    width: 100%;
}

form button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background-color: #0056b3;
}

#candidatura-form {
    margin: 50px 10px;
}

.vaga {
    margin-top: 20px;
    margin-left: 55px;
}

.vaga-content {
    margin-left: 30px;
}

.container-style-1 {
    padding: 100px 20px;
    display: grid;
    grid-template-columns: 30% 60%;
    color: black;
}

#submit-btn:disabled, #submit-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #999 !important; /* ou qualquer cor "desativada" */
    color: #fff;
    border: none;
}

#mensagem-text-area {
	resize:vertical;
}

@media (max-width: 768px) {
    .container-style-1 {
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      row-gap: 30px;
      color: black;
      
    }
	
	.double-col-form {
		flex-direction: column;
		row-gap: 25px;
	}
	
	.vaga {
		margin-left: 0px;
	}
	
	.h1-1 {
		font-size: 2em;
	}
}