﻿.painel-container {
    width: 100%;
    height: calc(100% - 60px);
    top: 60px;
    /*background: rgba(33, 155, 184, 0.5);*/
    background: #ffffff;
    z-index: 20;
    position: fixed;
    color: #ffffff;
    overflow: auto;
}

.painel-header-container {
    display: flex;
    min-height: 300px;
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-family: 'Roboto';
    color: #000000;
    flex-direction: column;
    justify-content: space-around;
}

.painel-header-h1 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
}

.container-texto-banner{
    color: #FFF;
    display: flex;
    flex-direction: column;
}

.btn-banner {
    display: flex;
    width: fit-content;
    flex-direction: row;
    margin: 0 auto;
    height: fit-content;
    padding: 14px 24px;
    align-items: center;
    gap: 12px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-banner-registro {
    width: fit-content;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    margin: 0 auto;
    padding: 14px 24px;
    cursor: pointer;
}

.painel-ajuda-container i {
    color: #6EBE45;
    font-size: 24px;
}

.painel-container-opcoes {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.painel-ajuda-container {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */
    gap: 20px;
    display: flex;
    flex-direction: row;
    color: #3C3C38;
    align-items: center;
    white-space: nowrap;
    box-sizing: border-box;
    border-radius: 6px;
    padding: 16px;
    cursor: pointer;
}

.painel-opcoes-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
}

.swiper {
    width: 100%;
    height: 356px;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100% !important;
    height: 100%;
    display: flex;
    position: relative;
    transition-property: transform;
    align-items: center;
    justify-content: center;
}

.icon-expand{
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px;
    cursor: pointer;
}

.fullscreen-view-container {
    position: absolute;
    height: 100vh;
    width: 100vw;
    background: #00000090;
    z-index: 2000;
    display: flex;
    justify-content: center;
    padding: 16px;
}

    .fullscreen-view-container img {
        width: 100%;
        max-width: fit-content;
        height: fit-content;
        max-height: 100%;
    }

.painel-opcao-container {
    display: flex;
    width: 136px;
    height: 136px;
    align-items: center;
    cursor: pointer;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

    .painel-opcao-container:hover .painel-opcao-icone {
    }

.painel-opcao-icone {
    font-size: 52px;
    text-align: center;
    display: flex;
}

    .painel-opcao-icone > i {
        margin: auto;
    }

    .painel-opcao-icone > img {
        margin: auto;
        width: 52px;
    }

.painel-opcao-label {
    font-family: 'Roboto';
    font-size: 14px;
    text-align: center;
    width: 100%;
    color: #fff;
}

.painel-ajuda-opcoes-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.painel-grupo {
    padding: 24px;
}

.btn-entrar {
    width: 124px;
    height: 42px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: auto;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    .painel-header-container {
        font-size: 32px;
    }
}

@media (max-width: 900px){
    .painel-container-opcoes {
        display: flex;
        flex-direction: column;
    }
    .painel-header-h1 {
        font-family: Roboto;
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 150%;
        text-align: center;
        color: #FFFFFF;
    }
    .painel-opcao-container{
        width: 100px;
        height: 100px;
    }
    .painel-opcao-icone {
        font-size: 36px;
        text-align: center;
        display: flex;
    }
    .painel-opcoes-container {
        justify-content: center;
    }
    .painel-opcao-icone > img {
        width: 36px;
    }
    .painel-opcao-label {
        font-size: 12px;
    }
    .painel-ajuda-container {
        white-space: unset;
    }
}