
        /*
         * --- ESTILOS CSS REUTILIZADOS E ADAPTADOS ---
         */
        :root {
            --roxo-escuro: #1A004B; /* Fundo do Card (Formulário) */
            --roxo-claro: #F5F0FF; /* Fundo do Card (Info) */
            --roxo-vibrante: #6A00FF; /* Cor de Destaque */
            --cinza-texto: #4A4A4A;
            --borda-input: #44376C; /* Cor da borda do input */
        }

        /* Reset Básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: sans-serif;
        }

        body {
            background-color: var(--roxo-vibrante);
            min-height: 100vh;
             background-image: url('../img/fundo.jpg') ; 
               background-repeat: no-repeat;
    background-size: cover;
            
        }

        /* --- HEADER --- */
        .header {
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: bold;
            font-size: 20px;
            color: var(--roxo-escuro);
        }

        .nav a {
            text-decoration: none;
            color: var(--cinza-texto);
            margin: 0 15px;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: var(--roxo-vibrante);
        }

        .btn-entrar {
            background-color: transparent;
            color: var(--roxo-escuro);
            border: 1px solid var(--roxo-escuro);
            padding: 8px 18px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }

        .btn-entrar:hover {
            background-color: var(--roxo-vibrante);
            color: white;
            border-color: var(--roxo-vibrante);
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }
        }

        /* --- MAIN CONTAINER --- */
        .main-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .card-acesso {
            display: flex;
            width: 100%;
            max-width: 1100px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* --- COLUNA INFO (ESQUERDA) --- */
        .coluna-info {
            flex: 1;
            background-color: var(--roxo-claro);
            padding: 60px;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .coluna-info h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--roxo-escuro);
            margin-bottom: 20px;
        }

        .coluna-info p {
            font-size: 16px;
            color: var(--cinza-texto);
            line-height: 1.6;
            max-width: 400px;
        }

        /* Placeholder da ilustração */
        .ilustracao-placeholder {
            width: 100%;
            height: 100%;
            background-color: #D3C9E6;
            border-radius: 8px;
                        background-image: url('../img/ilustracao.jpg') ; 
               background-repeat: no-repeat;

            background-repeat: no-repeat;
            background-position: center bottom;
        }

        /* --- COLUNA FORM (DIREITA) --- */
        .coluna-form {
            flex: 1;
            background-color: var(--roxo-escuro);
            padding: 60px;
            color: white;
        }

        .coluna-form h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .form-descricao {
            font-size: 14px;
            margin-bottom: 30px;
            color: #C0C0C0;
        }

        .form-solicitacao input,
        .form-solicitacao select,
        .form-solicitacao textarea {
            width: 100%;
            background-color: transparent;
            border: none;
            border-bottom: 1px solid var(--borda-input);
            color: white;
            padding: 10px 0;
            margin-bottom: 25px;
            font-size: 16px;
            transition: border-bottom 0.3s;
            /* Estilo específico para o SELECT */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url('');
            background-repeat: no-repeat;
            background-position: right 0 center;
        }

        /* Cor do texto das opções do select */
        .form-solicitacao select option {
            color: black;
            background: #f0f0f0;
        }

        .form-solicitacao input:focus,
        .form-solicitacao select:focus,
        .form-solicitacao textarea:focus {
            outline: none;
            border-bottom: 1px solid var(--roxo-vibrante);
        }

        .form-solicitacao ::placeholder {
            color: #C0C0C0;
            opacity: 1;
        }
        
        /* O botão de enviar será branco para contraste */
        .btn-enviar {
            width: 100%;
            background-color: white;
            color: var(--roxo-escuro);
            border: none;
            padding: 15px 0;
            font-size: 16px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 15px;
            transition: background-color 0.3s;
        }

        .btn-enviar:hover {
            background-color: var(--roxo-vibrante);
            color: white;
        }

        /* --- RESPONSIVIDADE --- */
        @media (max-width: 992px) {
            
            .main-container {
                padding: 20px;
            }
            
            .card-acesso {
                flex-direction: column;
                max-width: 600px;
            }

            .coluna-info, .coluna-form {
                padding: 30px;
                min-height: auto;
            }

            .coluna-info h1 {
                font-size: 24px;
            }
        }
  