        /* Melhorias gerais do formulário */
        .form-group col-6 {
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .form-group col-6:hover {
            background-color: rgba(0, 0, 0, 0.02);
        }

        /* Estilo dos labels */
        .form-group col-6 label:nth-child(1) {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.1em;
            display: block;
        }

        /* Estilo dos radio buttons e labels */
        .form-check {
            margin-bottom: 10px;
            padding-left: 28px;
        }

        .form-check-input {
            width: 18px;
            height: 18px;
            margin-left: -28px;
            border: 2px solid var(--primary-color);
            cursor: pointer;
        }
        .dark-mode .form-check-input {
            border: 2px solid rgb(185, 185, 185);
        }

        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .dark-mode .form-check-input:focus {
            box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25)
        }

        .dark-mode .form-check-input:checked {
            background-color: rgb(231, 230, 230);
            border-color:  rgb(231, 230, 230);
        }

        .dark-mode .form-check-input {
            --bs-form-check-bg: transparent;
        }

        .form-check-label {
            padding-top: 2px;
            cursor: pointer;
            font-size: 1em;
            color: #495057;
        }

        /* Melhorias no sistema de estrelas */
        .star-rating {
            line-height: 32px;
            font-size: 1.25em;
            cursor: pointer;
            display: inline-flex;
            gap: 5px;
        }

        .star-rating .bi-star-fill,
        .star-rating .bi-star {
            color: #ffc107;
            transition: all 0.2s ease;
        }

        .star-rating .bi-star.checked,
        .star-rating .bi-star-fill.checked {
            color: #ffc107;
            transform: scale(1.1);
        }

        .star-rating span:hover {
            transform: scale(1.2);
        }

        /* Estilo do textarea */
        .form-control {
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 12px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #dee2e6;
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
        }

        .dark-mode .form-control:focus {
            border-color: #dee2e6;
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.15);
        }

        textarea.form-control {
            min-height: 120px;
        }

        /* Estilo do botão de envio */
        .btn-primary {
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            border: none;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #0b5ed7;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
        }

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

        /* Estilo da mensagem de sucesso */
        .alert {
            border-radius: 8px;
            border-left: 4px solid #198754;
            background-color: #d1e7dd;
            color: #0f5132;
            padding: 15px 20px;
            margin-bottom: 20px;
        }

        /* Campo de outro gênero/educação */
        input[type="text"]:disabled {
            background-color: #e9ecef;
            cursor: not-allowed;
        }

        input[type="text"]:not(:disabled) {
            background-color: #fff;
        }

        /* Estilos responsivos */
        @media (max-width: 768px) {
            .form-group col-6 {
                padding: 10px;
            }

            .form-group col-6 label:nth-child(1) {
                font-size: 1em;
            }

            .star-rating {
                font-size: 1.1em;
            }
        }

        /* Animações suaves */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-group col-6 {
            animation: fadeIn 0.5s ease forwards;
        }

        /* Melhoria no título */
        .titulo {
            color: #2c3e50;
            font-size: 1.8em;
            font-weight: 700;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary-color);
        }

        .dark-mode .titulo {
            border-bottom: 3px solid var(--dark-bg);
        }

        /* Estilos para campos obrigatórios */
        .form-group col-6.required label:after {
            content: "*";
            color: #dc3545;
            margin-left: 4px;
        }

        /* Melhoria nos breadcrumbs */
        .breadcrumbs {
            margin-bottom: 20px;
            padding: 10px 0;
        }

        .breadcrumbs a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .breadcrumbs a:hover {
            color: #0b5ed7;
            text-decoration: underline;
        }