.page-dark-bg {
    background-color: #0d2858;
    color: #FFFFFF;
    padding-bottom: 80px;
    min-height: 80vh;
}

.contact-header-section {
    padding: 60px 0 40px 0;
    text-align: left; 
}

.contact-header-section h1 {
    color: #FFFFFF;
    font-size: 2.2rem; 
    margin-bottom: 15px;
    font-weight: 700; 
}

.contact-header-section p {
    font-size: 1rem; 
    line-height: 1.5;
    font-weight: 400; 
    max-width: 700px; 
    opacity: 0.9;   
    margin: 0;       
}

.contact-form-section {
    display: flex;
    justify-content: center; 
    width: 100%;
}

.form-wrapper {
    width: 70vw;      
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-wrapper input,
.form-wrapper textarea {
    width: 100%;
    padding: 18px;
    border-radius: 4px;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem; 
    outline: none;
    color: #555;
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-wrapper textarea {
    resize: vertical;
    min-height: 150px;
}

.form-wrapper input::placeholder,
.form-wrapper textarea::placeholder {
    color: #aaa;
}

#btn-submit {
    background-color: #FFFFFF;
    color: #0d2858;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
    text-transform: uppercase;
    width: 100%;
}

#btn-submit:hover {
    background-color: #e6e6e6;
    transform: translateY(-2px);
}

/* Link Ativo */
.active-link {
    color: #008CDB !important;
    border-bottom: 2px solid #008CDB;
    padding-bottom: 5px;
}
@media (max-width: 768px) {
    .form-wrapper {
        width: 90vw; 
    }
}