/* Font-size base */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

/* Ajuste para telas médias */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Seções do login (caso use na mesma aplicação) */
.bgLogin {
    background-color: #061f3d;
}

.bgBanner {
    background: url('../img/bgbanner.jpg') no-repeat left top;
}

.login-section {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.left-side {
    background-color: #061f3d;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding: 2rem;
    z-index: 2;
}

.left-content {
    width: 100%;
    max-width: 340px;
}

.right-side {
    width: 60%;
    background: url('../img/imglogin.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

/* Botões e formulários */
.form-control {
    margin-bottom: 1rem;
}

.btn-login {
    background-color: #00E0D0;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    color: #000;
    width: 100%;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.forgot-link {
    font-size: 0.875rem;
    color: #ccc;
    text-decoration: none;
}

    .forgot-link:hover {
        color: white;
    }

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

/* Animação dos cards com ícones */
.icon-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .icon-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.icon-img {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

.icon-hover:hover .icon-img {
    transform: scale(1.1);
}

/* "Acessar" visível no mobile, escondido no desktop */
.hover-acessar {
    opacity: 1;
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}


.resposta {
    margin-bottom: 10px;
}

.progress {
    height: 20px;
}

.progress-bar {
    font-weight: bold;
}

.btn-proximo {
    background-color: #00a9b7;
    color: white;
}

    .btn-proximo:hover {
        background-color: #008f99;
    }

.question {
    display: none;
}

    .question.active {
        display: block;
    }

/* Desktop: só aparece no hover */
@media (min-width: 1000px) {
    .hover-acessar {
        opacity: 1;
    }

    .curso-info .acessar-link {
        opacity: 1 !important;
        transform: translateY(0) !important;
        height: auto !important;
    }
}
