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

/* Corpo da página */
body {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    background: url('/assets/img/background-inicio.png') no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

/* Barra de navegação */
header {
    position: absolute;
    top: 20px;
    right: 15px;
}

.logo-digitvs {
    width: 100%;
    max-width: 500px;
    padding-top: 30px;
}

/* Botões */
.buttons {
    display: grid;
    justify-content: center;
    margin-top: 15px;
    padding-bottom: 30px;
    border-radius: 8px;
}

.buttons img {
    width: 100%;
    max-width: 300px;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.buttons img:hover {
    filter: brightness(0.85);
    transform: scale(1.02); 
    border-radius: 8px;
}

.navbar-nav .nav-link {
    color: white;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #42c0b4;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.scroll-esquerda {
    height: calc(100vh - 70px);
    overflow-y: auto;
    background: rgba(66, 192, 180, 0.9);

    direction: rtl;

    /* Hide scrollbar for WebKit browsers (Chrome, Safari) */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.scroll-esquerda::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.scroll-esquerda>* {
    direction: ltr;
}


.navbar-toggler-icon {
    filter: invert(1);
}

