﻿/* 1) Reset básico */
* {
    margin: 0;
    padding: 0;
}

/* 2) Container principal que “ancora” o fundo absoluto */
.aluno-trilha-background {
    position: relative;
    background: #030617;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -60px;
}


.aluno-trilha-container {
    position: relative;
    z-index: 0;
    padding-bottom: 60px;
    border-top-right-radius: 35px;
    border-top-left-radius: 35px;
    background: #AACEDF;
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto; /* ← necessário para o sticky funcionar corretamente */
    overflow-x: hidden; /* ← para remover o scroll horizontal */
    max-height: 100vh; /* ← evita que tudo estoure a tela sem scroll */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.aluno-trilha-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
