/* ===== ESTILOS PARA PÁGINA TRABALHE CONOSCO ===== */

/* Variáveis específicas para trabalhe-conosco */
:root {
    --islab-green: #006b38;
    --islab-orange: #f78e1e;
    --islab-blue: #00839a;
    --islab-light-green: #e8f5f0;
    --grey-dark: #545454;
    --grey-light: #f5f5f5;
    --white: #ffffff;
    --primary-color: var(--islab-green);
    --secondary-color: var(--islab-blue);
    --islab-green-dark: #005432;
}

/* Breadcrumb Navigation */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--islab-light-green) 0%, #f8f9fa 100%);
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--islab-blue);
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: var(--islab-green);
}

.breadcrumb-item.active .breadcrumb-current {
    color: var(--grey-dark);
    font-weight: 600;
}

.breadcrumb-item:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: #adb5bd;
    margin-left: 0.5rem;
}

/* Seção Principal do Formulário */
.formulario-trabalhe-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--islab-light-green) 100%);
    min-height: 100vh;
}

.secao-badge {
    margin-bottom: 1rem;
}

.badge-text {
    background: linear-gradient(135deg, var(--islab-green) 0%, var(--islab-blue) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.titulo-secao {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--grey-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.titulo-destaque {
    color: var(--islab-green);
    position: relative;
}

.titulo-destaque::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--islab-green) 0%, var(--islab-orange) 100%);
    border-radius: 2px;
}

.subtitulo-secao {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Wrapper do Formulário */
.formulario-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border: 1px solid #e9ecef;
}

/* Área de Resultado */
.trabalhe-result {
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
}

.trabalhe-result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.trabalhe-result.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Seções do Formulário */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--islab-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--islab-light-green);
}

.section-title i {
    background: linear-gradient(135deg, var(--islab-green) 0%, var(--islab-blue) 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Grupos de Formulário Modernos */
.form-group-moderno {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label-moderno {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--grey-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label-moderno i {
    color: var(--islab-green);
    font-size: 0.875rem;
}

.form-control-moderno {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: var(--grey-dark);
}

.form-control-moderno:focus {
    outline: none;
    border-color: var(--islab-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 107, 56, 0.1);
}

.form-control-moderno:invalid {
    border-color: #dc3545;
}

.form-control-moderno::placeholder {
    color: #adb5bd;
}

/* Área de Upload de Arquivo */
.file-upload-area {
    position: relative;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8f9fa;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--islab-green);
    background: var(--islab-light-green);
}

.file-upload-area.drag-over {
    border-color: var(--islab-green);
    background: var(--islab-light-green);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 107, 56, 0.15);
}

.file-upload-area.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.file-upload-area.file-selected {
    border-color: #28a745;
    background: #f8fff9;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.file-upload-display {
    pointer-events: none;
}

.file-upload-icon {
    font-size: 3rem;
    color: var(--islab-green);
    margin-bottom: 1rem;
}

.file-upload-text {
    color: var(--grey-dark);
}

.file-upload-text strong {
    color: var(--islab-green);
    display: block;
    margin-bottom: 0.5rem;
}

.file-upload-text small {
    color: #6c757d;
    font-size: 0.875rem;
}

.file-selected {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--islab-light-green);
    border-radius: 10px;
    margin-top: 1rem;
}

.file-selected i {
    color: var(--islab-green);
    font-size: 1.5rem;
}

.file-name {
    flex: 1;
    font-weight: 500;
    color: var(--grey-dark);
}

.btn-remove-file {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-remove-file:hover {
    background: #c82333;
}

/* Checkbox Personalizado */
.form-check {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.form-check:last-child {
    margin-bottom: 0;
}

.form-check-input {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: -2rem;
    accent-color: var(--islab-green);
    border: 2px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--islab-green);
    border-color: var(--islab-green);
    box-shadow: 0 0 0 3px rgba(0, 107, 56, 0.1);
}

.form-check-label {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    font-weight: 500;
    cursor: pointer;
    display: block;
    padding-top: 0.125rem;
}

.form-check-label a {
    color: var(--islab-green);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 1px;
}

.form-check-label a:hover {
    color: var(--islab-blue);
    border-bottom-color: var(--islab-blue);
}

/* Estilos específicos para a seção de consentimento */
.lgpd-consent .form-check-label {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1a202c;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lgpd-consent .form-check-label strong {
    color: var(--islab-green);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

/* Estrutura específica para organizar o texto em 2 linhas */
.lgpd-consent .form-check-label .consent-text {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem;
    line-height: 1.5;
}

.lgpd-consent .form-check-label .consent-text .text-line-1 {
    display: inline;
}

.lgpd-consent .form-check-label .consent-text .text-line-2 {
    display: inline;
}

.lgpd-consent .form-check {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 107, 56, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.lgpd-consent .form-check:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 107, 56, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 107, 56, 0.1);
}

/* Área de Consentimento LGPD */
.lgpd-consent {
    background: linear-gradient(135deg, #f8fffa 0%, var(--islab-light-green) 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--islab-green);
    box-shadow: 0 4px 20px rgba(0, 107, 56, 0.08);
    position: relative;
    overflow: hidden;
}

.lgpd-consent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--islab-green) 0%, var(--islab-blue) 100%);
}

/* Botão de Envio */
.form-submit-moderno {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.btn-trabalhe-submit {
    background: linear-gradient(135deg, var(--islab-green) 0%, var(--islab-blue) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 250px;
}

.btn-trabalhe-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 107, 56, 0.3);
}

.btn-trabalhe-submit:active {
    transform: translateY(0);
}

.btn-trabalhe-submit .btn-loading {
    display: none;
}

.btn-trabalhe-submit.loading .btn-text {
    display: none;
}

.btn-trabalhe-submit.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--islab-green);
}

/* Textarea com Contador */
.form-text {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: right;
    margin-top: 0.5rem;
}

/* Sidebar */
.trabalhe-sidebar {
    position: sticky;
    top: 2rem;
}

.trabalhe-info-widget,
.trabalhe-dicas-widget,
.rh-contato-widget {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--islab-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--islab-light-green);
}

.widget-title i {
    background: linear-gradient(135deg, var(--islab-green) 0%, var(--islab-blue) 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* Lista de Benefícios */
.trabalhe-beneficios-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--islab-light-green);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.beneficio-item:hover {
    transform: translateX(5px);
}

.beneficio-icon {
    background: linear-gradient(135deg, var(--islab-green) 0%, var(--islab-blue) 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.beneficio-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--islab-green);
    margin-bottom: 0.5rem;
}

.beneficio-details p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

/* Lista de Dicas */
.dicas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dicas-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--grey-dark);
}

.dicas-list li i {
    color: var(--islab-green);
    font-size: 0.875rem;
}

/* Widget de Contato RH */
.rh-contato-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.rh-icon {
    background: linear-gradient(135deg, var(--islab-green) 0%, var(--islab-blue) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.rh-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--islab-green);
    margin-bottom: 0.5rem;
}

.rh-text p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.btn-rh-contato {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-rh-contato:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Feedback de Validação */
.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-control-moderno:invalid + .invalid-feedback {
    display: block;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .formulario-trabalhe-section {
        padding: 2rem 0;
    }
    
    .formulario-wrapper {
        padding: 2rem;
    }
    
    .titulo-secao {
        font-size: 2rem;
    }
    
    .trabalhe-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding: 1rem 0;
    }
    
    .breadcrumb-list {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .formulario-trabalhe-section {
        padding: 1.5rem 0;
    }
    
    .formulario-wrapper {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .titulo-secao {
        font-size: 1.75rem;
    }
    
    .subtitulo-secao {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .section-title i {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .form-control-moderno {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .btn-trabalhe-submit {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .trabalhe-info-widget,
    .trabalhe-dicas-widget,
    .rh-contato-widget {
        padding: 1.5rem;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
    
    .widget-title i {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .beneficio-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .beneficio-icon {
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding: 0 10px;
    }
    
    .formulario-wrapper {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .titulo-secao {
        font-size: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .section-title {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .btn-trabalhe-submit {
        width: 100%;
        min-width: auto;
    }
    
    .trabalhe-info-widget,
    .trabalhe-dicas-widget,
    .rh-contato-widget {
        padding: 1rem;
    }
    
    .lgpd-consent {
        padding: 1.5rem;
    }
    
    .lgpd-consent .form-check {
        padding: 1rem;
    }
    
    .lgpd-consent .form-check-label {
        font-size: 1rem;
        line-height: 1.6;
        gap: 0.25rem;
    }
    
    .lgpd-consent .form-check-label strong {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .lgpd-consent .form-check-label .consent-text {
        flex-direction: column;
        gap: 0.125rem;
    }
    
    .file-upload-area {
        padding: 1.5rem;
    }
    
    .file-upload-icon {
        font-size: 2.5rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section {
    animation: fadeInUp 0.6s ease-out;
}

.form-section:nth-child(2) {
    animation-delay: 0.1s;
}

.form-section:nth-child(3) {
    animation-delay: 0.2s;
}

.form-section:nth-child(4) {
    animation-delay: 0.3s;
}

.form-section:nth-child(5) {
    animation-delay: 0.4s;
}

/* Estados de Loading */
.btn-trabalhe-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Melhorias de Acessibilidade */
.form-control-moderno:focus-visible {
    outline: 2px solid var(--islab-green);
    outline-offset: 2px;
}

.btn-trabalhe-submit:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Suporte para Modo Escuro (opcional) */
@media (prefers-color-scheme: dark) {
       
    .form-control-moderno {    
        border-color: #718096;
        color: #39393a;
    }
    
    .form-control-moderno:focus {
 
    }
}

/* Efeitos de hover e interação */
.form-control-moderno:hover {
    border-color: var(--islab-blue);
}

.btn-trabalhe-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 107, 56, 0.3);
}

.beneficio-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-rh-contato:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Estilos para campos específicos */
input[type="date"].form-control-moderno {
    position: relative;
}

input[type="date"].form-control-moderno::-webkit-calendar-picker-indicator {
    background: var(--islab-green);
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
}

select.form-control-moderno {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

/* Estilos para textarea */
textarea.form-control-moderno {
    resize: vertical;
    min-height: 120px;
}

/* Estilos para campos obrigatórios */
.form-label-moderno::after {
    content: ' *';
    color: #dc3545;
    font-weight: bold;
}

.form-label-moderno:has(+ .form-control-moderno:not([required]))::after {
    content: '';
}

/* Estilos para mensagens de erro */
.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.form-control-moderno:invalid:not(:placeholder-shown) + .invalid-feedback {
    display: block;
}

/* Estilos para campos válidos */
.form-control-moderno:valid:not(:placeholder-shown) {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Estilos para o contador de caracteres */
.form-text {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: right;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-text .warning {
    color: #f39c12;
    font-weight: 600;
}

/* Estilos para o estado de foco dos checkboxes */
.form-check-input:focus {
    border-color: var(--islab-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 107, 56, 0.25);
    outline: none;
}

.form-check-input:focus-visible {
    outline: 2px solid var(--islab-green);
    outline-offset: 2px;
}

/* Melhorias de acessibilidade para a seção de consentimento */
.lgpd-consent .form-check:focus-within {
    outline: 2px solid var(--islab-green);
    outline-offset: 2px;
    border-radius: 14px;
}

/* Organização específica do texto de consentimento */
.lgpd-consent .form-check-label {
    text-align: left;
    word-wrap: break-word;
    hyphens: auto;
}

.lgpd-consent .form-check-label .consent-text {
    text-indent: 0;
    margin: 0;
    padding: 0;
}

/* Garantir que o texto fique em 2 linhas bem organizadas */
.lgpd-consent .form-check-label .consent-text .text-line-1,
.lgpd-consent .form-check-label .consent-text .text-line-2 {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.lgpd-consent .form-check-label .consent-text .text-line-1 {
    margin-bottom: 0.25rem;
}

/* Ajuste para links dentro do texto */
.lgpd-consent .form-check-label .consent-text a {
    display: inline;
    white-space: nowrap;
}

/* Estilos para links nos checkboxes */
.form-check-label a {
    color: var(--islab-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-check-label a:hover {
    color: var(--islab-blue);
    text-decoration: none;
}

/* Estilos para o botão de remoção de arquivo */
.btn-remove-file {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-remove-file:hover {
    background: #c82333;
    transform: scale(1.1);
}

/* Estilos para o estado de loading do botão */
.btn-trabalhe-submit.loading {
    pointer-events: none;
    opacity: 0.8;
    position: relative;
}

.btn-trabalhe-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos para o estado de sucesso */
.trabalhe-result.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
}

/* Estilos para o estado de erro */
.trabalhe-result.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
}

/* Estilos para dispositivos de alta resolução */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .form-control-moderno {
        border-width: 1px;
    }
    
    .section-title i,
    .widget-title i,
    .beneficio-icon {
        transform: scale(1.1);
    }
}

/* Estilos para impressão */
@media print {
    .breadcrumb-section,
    .trabalhe-sidebar,
    .btn-trabalhe-submit,
    .form-note {
        display: none;
    }
    
    .formulario-wrapper {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .form-control-moderno {
        border: 1px solid #000;
        background: white;
    }
}
