# Portal do Aluno | Escola Futuro

> Markdown mirror of DialtoneApp's public top-site detail page for `escolafuturosistema.com.br`.

URL: https://dialtoneapp.com/top-sites/escolafuturosistema.com.br/index.md
Canonical HTML: https://dialtoneapp.com/top-sites/escolafuturosistema.com.br

## Summary

- Domain: `escolafuturosistema.com.br`
- Website: https://escolafuturosistema.com.br
- Description: ai readable | score 24 | purchase read only
- Label: ai_readable
- Payment surface: Not available
- Purchase boundary: read_only
- Control boundary: unknown
- Rank: 778676

## robots

Not found.

## llms

~~~text
<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="utf-8">
    <title>Portal do Aluno | Escola Futuro</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
    
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    
    <link rel="shortcut icon" href="imagens/201808102049.png">

    <style>
        :root {
            --primary-color: #2948ff;
            --secondary-color: #396afc;
            --glass-bg: rgba(255, 255, 255, 0.9);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: url('imagens/1Imagen_fundo3.jpg') no-repeat center center fixed;
            background-size: cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
        }

        /* Overlay para escurecer o fundo levemente e destacar o card */
        body::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: -1;
        }

        .login-card {			
            background: rgb(107 21 217 / 90%);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            width: 100%;
            max-width: 400px;
            padding: 2.5rem;
            transition: transform 0.3s ease;
        }

        .login-card:hover {
            transform: translateY(-5px);
        }

        .logo-container {
            text-align: center;
            margin-bottom: 2rem;
        }

        .logo-container img {
            max-width: 180px;
            height: auto;
        }

        .form-label {
            font-weight: 600;
            color: white;
            font-size: 0.9rem;
        }

        .form-control {
            border-radius: 10px;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            background: #f8f9fa;
        }

        .form-control:focus {
            box-shadow: 0 0 0 3px rgba(41, 72, 255, 0.2);
            border-color: var(--primary-color);
        }

        .btn-login {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 10px;
            padding: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            margin-top: 1rem;
            color: white;
            width: 100%;
        }

        .btn-login:hover {
            opacity: 0.9;
            box-shadow: 0 5px 15px rgba(41, 72, 255, 0.4);
            transform: scale(1.02);
        }

        .forgot-password {
            text-decoration: none;
            font-size: 0.85rem;
            color: var(--primary-color);
            transition: color 0.2s;
        }

        .forgot-password:hover {
            color: #1a2c96;
            text-decoration: underline;
        }

        .footer-text {
            font-size: 0.8rem;
            color: white;
            margin-top: 2rem;
            text-align: center;
        }

        /* Estilo para o campo de senha com ícone */
        .password-wrapper {
            position: relative;
        }
        .password-wrapper i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #888;
        }
    </style>
</head>
<body>

<div class="container d-flex justify-content-center">
    <div class="login-card">
        
        <div class="logo-container">
            <img src="imagens/1logoNovo.png" alt="Escola Futuro">
            <h4 class="mt-3 fw-bold text-dark">Portal de Gestão</h4>
            <p class="text-muted small">Bem-vindo! Identifique-se para acessar.</p>
        </div>

        <form id="frmLogin" name="frmLogin" method="post" action="login/login-exec.php">
            
            <div class="mb-3">
                <label for="login" class="form-label">Usuário ou CPF</label>
                <div class="input-group">
                    <span class="input-group-text bg-white border-end-0"><i class="fas fa-user text-muted"></i></span>
                    <input type="text" name="login" id="login" class="form-control border-start-0" placeholder="Digite seu usuário" required>
                </div>
            </div>

            <div class="mb-3">
                <div class="d-flex justify-content-between">
                    <label for="password" class="form-label">Senha</label>
                    <a href="#" class="forgot-password">Esqueceu a senha?</a>
                </div>
                <div class="password-wrapper">
                    <input type="password" name="password" id="password" class="form-control" placeholder="••••••••" required>
                    <i class="fas fa-eye" id="togglePassword"></i>
                </div>
            </div>

            <div class="mb-4 form-check">
                <input type="checkbox" class="form-check-input" id="customCheck1">
                <label class="form-check-label small text-muted" for="customCheck1">Mantenha-me conectado</label>
            </div>

            <button type="submit" name="btn-login" class="btn btn-login shadow-sm">
                Entrar no Sistema <i class="fas fa-sign-in-alt ms-2"></i>
            </button>
        </form>

        <div class="footer-text">
            &copy; 2026 Escola Futuro Formação Profissional <br>
            <small>Sistema de Gestão Escolar v2.0</small>
        </div>
    </div>
</div>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>

<script>
    // Função para mostrar/esconder senha
    const togglePassword = document.querySelector('#togglePassword');
    const password = document.querySelector('#password');

    togglePassword.addEventListener('click', function (e) {
        const type = password.getAttribute('type') === 'password' ? 'text' : 'password';
        password.setAttribute('type', type);
        this.classList.toggle('fa-eye-slash');
    });

    // Focar no login ao carregar
    window.onload = function() {
        document.getElementById("login").focus();
    };
</script>

</body>
</html>
~~~

## llms-full

~~~text
<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="utf-8">
    <title>Portal do Aluno | Escola Futuro</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
    
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    
    <link rel="shortcut icon" href="imagens/201808102049.png">

    <style>
        :root {
            --primary-color: #2948ff;
            --secondary-color: #396afc;
            --glass-bg: rgba(255, 255, 255, 0.9);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: url('imagens/1Imagen_fundo3.jpg') no-repeat center center fixed;
            background-size: cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
        }

        /* Overlay para escurecer o fundo levemente e destacar o card */
        body::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: -1;
        }

        .login-card {			
            background: rgb(107 21 217 / 90%);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            width: 100%;
            max-width: 400px;
            padding: 2.5rem;
            transition: transform 0.3s ease;
        }

        .login-card:hover {
            transform: translateY(-5px);
        }

        .logo-container {
            text-align: center;
            margin-bottom: 2rem;
        }

        .logo-container img {
            max-width: 180px;
            height: auto;
        }

        .form-label {
            font-weight: 600;
            color: white;
            font-size: 0.9rem;
        }

        .form-control {
            border-radius: 10px;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            background: #f8f9fa;
        }

        .form-control:focus {
            box-shadow: 0 0 0 3px rgba(41, 72, 255, 0.2);
            border-color: var(--primary-color);
        }

        .btn-login {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 10px;
            padding: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            margin-top: 1rem;
            color: white;
            width: 100%;
        }

        .btn-login:hover {
            opacity: 0.9;
            box-shadow: 0 5px 15px rgba(41, 72, 255, 0.4);
            transform: scale(1.02);
        }

        .forgot-password {
            text-decoration: none;
            font-size: 0.85rem;
            color: var(--primary-color);
            transition: color 0.2s;
        }

        .forgot-password:hover {
            color: #1a2c96;
            text-decoration: underline;
        }

        .footer-text {
            font-size: 0.8rem;
            color: white;
            margin-top: 2rem;
            text-align: center;
        }

        /* Estilo para o campo de senha com ícone */
        .password-wrapper {
            position: relative;
        }
        .password-wrapper i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #888;
        }
    </style>
</head>
<body>

<div class="container d-flex justify-content-center">
    <div class="login-card">
        
        <div class="logo-container">
            <img src="imagens/1logoNovo.png" alt="Escola Futuro">
            <h4 class="mt-3 fw-bold text-dark">Portal de Gestão</h4>
            <p class="text-muted small">Bem-vindo! Identifique-se para acessar.</p>
        </div>

        <form id="frmLogin" name="frmLogin" method="post" action="login/login-exec.php">
            
            <div class="mb-3">
                <label for="login" class="form-label">Usuário ou CPF</label>
                <div class="input-group">
                    <span class="input-group-text bg-white border-end-0"><i class="fas fa-user text-muted"></i></span>
                    <input type="text" name="login" id="login" class="form-control border-start-0" placeholder="Digite seu usuário" required>
                </div>
            </div>

            <div class="mb-3">
                <div class="d-flex justify-content-between">
                    <label for="password" class="form-label">Senha</label>
                    <a href="#" class="forgot-password">Esqueceu a senha?</a>
                </div>
                <div class="password-wrapper">
                    <input type="password" name="password" id="password" class="form-control" placeholder="••••••••" required>
                    <i class="fas fa-eye" id="togglePassword"></i>
                </div>
            </div>

            <div class="mb-4 form-check">
                <input type="checkbox" class="form-check-input" id="customCheck1">
                <label class="form-check-label small text-muted" for="customCheck1">Mantenha-me conectado</label>
            </div>

            <button type="submit" name="btn-login" class="btn btn-login shadow-sm">
                Entrar no Sistema <i class="fas fa-sign-in-alt ms-2"></i>
            </button>
        </form>

        <div class="footer-text">
            &copy; 2026 Escola Futuro Formação Profissional <br>
            <small>Sistema de Gestão Escolar v2.0</small>
        </div>
    </div>
</div>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>

<script>
    // Função para mostrar/esconder senha
    const togglePassword = document.querySelector('#togglePassword');
    const password = document.querySelector('#password');

    togglePassword.addEventListener('click', function (e) {
        const type = password.getAttribute('type') === 'password' ? 'text' : 'password';
        password.setAttribute('type', type);
        this.classList.toggle('fa-eye-slash');
    });

    // Focar no login ao carregar
    window.onload = function() {
        document.getElementById("login").focus();
    };
</script>

</body>
</html>
~~~