        /* ==========================================================================
       Reset e Estilos Globais
       ========================================================================== */
        html {
            background-color: #f4f7f6;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        body.layout-focado {
            background-color: #f4f7f6;
            font-family: 'Segoe UI', Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }

        a {
            color: #0d5d50;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #093f36;
        }

        main {
            background-color: #f4f7f6;
        }

        /* ==========================================================================
       Header Focado
       ========================================================================== */
        .header-focado {
            background-color: #fff;
            border-bottom: 1px solid #e0e0e0;
            padding: 30px;
            text-align: center;
            width: 100%;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .header-focado img {
            max-height: 70px;
        }

        /* ==========================================================================
       Main Container Focado
       ========================================================================== */
        main.container-focado {
            width: 95%;
            max-width: 900px;
            padding: 40px 20px;
        }

        .admin-container {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
            max-width: 800px;
            margin: auto;

        }

        .admin-content-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .admin-content-header h1 {
            color: #2c3e50;
            font-size: 35px;
            font-family: 'Segoe UI', Arial, sans-serif;
            margin-bottom: 10px;

        }

        .admin-container p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        /* ==========================================================================
       Formulário Multi-Etapas
       ========================================================================== */
        .multi-step-form .form-step {
            display: none;
            animation: fadeIn 0.5s ease-out;

            border-radius: 10px;
        }

        .multi-step-form .form-step.active {
            display: block;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: bold;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: calc(100% - 22px);
            padding: 10px;
            border: 1px solid #d1d1d1;
            border-radius: 5px;
            font-size: 1em;
            color: #555;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0d5d50;
            box-shadow: 0 0 5px rgba(13, 93, 80, 0.25);
        }

        .form-group small {
            display: block;
            margin-top: 5px;
            color: #777;
        }

        .form-group div label {
            display: inline-block;
            margin-right: 20px;
            font-weight: normal;
        }

        /* ==========================================================================
       Barra de Progresso
       ========================================================================== */
        .progress-bar {
            display: flex;
            justify-content: space-between;
            margin: 30px 0 40px 0;
            position: relative;
        }

        .progress-bar::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            height: 3px;
            width: 100%;

            z-index: 1;
            border-radius: 3px;
        }

        .progress-bar .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            width: 120px;
            text-align: center;
        }

        .progress-bar .step .step-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: #e0e0e0;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 0.9em;
            transition: background-color 0.4s ease, transform 0.3s ease;
            border: 3px solid #f4f7f6;
        }

        .progress-bar .step p {
            font-size: 0.85em;
            color: #a0a0a0;
            margin-top: 8px;
            font-weight: 500;

        }

        .progress-bar .step.active .step-icon {
            background-color: #0d5d50;
            transform: scale(1.1);
        }

        .progress-bar .step.active p {
            color: #0d5d50;
        }

        /* ==========================================================================
       Navegação do Formulário
       ========================================================================== */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }

        .btn {
            padding: 12px 25px;
            text-decoration: none;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            font-size: 1em;
        }

        .btn-primary {
            background-color: #0d5d50;
        }

        .btn-secondary {
            background-color: #7f8c8d;
        }

        .btn-success {
            background-color: #27ae60;
        }

        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
            opacity: 1;
            transform: none;
            box-shadow: none;
        }

        .form-navigation .btn-prev {
            background-color: #f39c12;
        }

        .form-navigation .btn-next {
            background-color: #0d5d50;
        }

        /* ==========================================================================
       Termos e Condições
       ========================================================================== */
        #termos-accordion-container {
            margin-top: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
        }

        .term-trigger {
            background-color: #f9f9f9;
            padding: 15px;
            cursor: pointer;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background-color 0.3s ease;
        }

        .term-trigger:last-child {
            border-bottom: none;
        }

        .term-trigger label {
            font-weight: bold;
            color: #333;
            cursor: pointer;
            margin-left: 10px;
        }

        .term-trigger input {
            margin-right: 10px;
        }

        .term-content-box {
            display: none;
            padding: 15px;
            background-color: #fff;
        }

        .term-box {
            height: 200px;
            overflow-y: auto;
            border: 1px solid #d1d1d1;
            padding: 15px;
            border-radius: 5px;
            background-color: #f8f8f8;
            font-size: 0.9em;
            line-height: 1.6;
            color: #555;
        }

        /* Estilo do ícone para indicar que o termo pode ser expandido */
        .term-trigger::after {
            content: '\f107';
            /* Ícone de seta para baixo (Font Awesome) */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #777;
            font-size: 1.2em;
        }

        .term-trigger.active::after {
            content: '\f106';
            /* Ícone de seta para cima (Font Awesome) */
        }

        /* CSS para o Modal de Bloqueio */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            max-width: 500px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .modal-content h2 {
            margin-top: 0;
            color: #c0392b;
            /* Vermelho para alerta */
        }

        .modal-content p {
            margin-bottom: 25px;
            line-height: 1.6;
        }

        /* ==========================================================================
       Animações
       ========================================================================== */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==========================================================================
       Responsividade (Opcional - Ajuste conforme necessário)
       ========================================================================== */
        @media (max-width: 600px) {
            .progress-bar {
                flex-direction: column;
                align-items: center;
                display: none;
            }

            .progress-bar::before {
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 3px;
                height: 100%;
            }

            .progress-bar .step {
                flex-direction: row;
                width: 100%;
                margin-bottom: 20px;
                justify-content: center;
            }

            .progress-bar .step .step-icon {
                margin-right: 15px;


            }
        }

        .container {
            padding-top: 40px;
            padding-bottom: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo {
            margin-bottom: 20px;
            width: 150px;
        }

        .btn-voltar {
            text-decoration: none;
            color: #1a7a6b;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;

        }

        .btn-voltar svg {
            margin-top: 1px;

        }

        .btn-voltar:hover {
            color: #333;
        }


        footer {
            height: 10%;
            align-items: center;
            text-align: center;
        }

        footer p {
            font-size: 14px;
            color: #333;

        }

        footer p a {
            text-decoration: none;
            color: #333;
            cursor: default;

        }