/* ----------------------página formulário ---------------------------------------------------*/
.cabecalho-formulario {
    position: static !important;
    box-shadow: none !important;
    background-color: var(--primary-color) !important;

    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cabecalho-container-formulario {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: var(--secondary-color);
    padding: 1rem 2rem;
}

.cabecalho-container-formulario-link-a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cabecalho-container-formulario-link-a:hover {
    color: var(--tertiary-color);
}

.formulario-page {
    min-height: 100vh;

    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(14, 57, 102, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;

}

.formulario-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.formulario-container {
    background-color: var(--secondary-color);
   
    padding: 3rem 2rem;
    

    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.formulario-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.formulario-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.formulario-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.formulario-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.grupo-formulario-page {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.grupo-formulario-page label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
}

.grupo-formulario-page input,
.grupo-formulario-page select,
.grupo-formulario-page textarea {
    width: 100%;
    padding: 1rem;
    border: 0.125rem solid var(--primary-color);
    border-radius: 0.625rem;
    font-size: 1rem;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--secondary-color);
}

.grupo-formulario-page input:focus,
.grupo-formulario-page select:focus,
.grupo-formulario-page textarea:focus {
    outline: none;
    border-color: var(--tertiary-color);
    box-shadow: 0 0 0 0.125rem var(--quaternary-color);
}

.grupo-formulario-page input::placeholder,
.grupo-formulario-page textarea::placeholder {
    color: rgba(14, 57, 102, 0.5);
    text-transform: none;
}

.grupo-formulario-page select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230e3966' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.grupo-formulario-page textarea {
    resize: vertical;
    min-height: 150px;
}

.formulario-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-formulario {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-formulario:hover {
    transform: translateY(-2px);
    
}

@media (min-width: 768px) {
    .formulario-container {
        padding: 4rem 3rem;
    }

    .formulario-title {
        font-size: 3rem;
    }

    .formulario-subtitle {
        font-size: 1.25rem;
    }



    .formulario-buttons .btn {
        flex: 1;
        max-width: 48%;
    }
}