/* Base (mobile-first) */
.fbf-container-principal--sem-foto, .fbf-container-principal--com-foto {
    user-select: none;
    padding: 24px 0 24px 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.fbf-container--hidden {
    display: none !important;
}

.fbf-container--fullscreen {
    position: fixed;
    top: env(safe-area-inset-top, 0);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100dvw;
    height: calc(100dvh - env(safe-area-inset-top, 0));
    z-index: 9999;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #1D1D1D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
}


.fbf-container-principal__text-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 70%;
    min-width: 250px;
    max-width: 350px;
}

    .fbf-container-principal__text-group > p {
        color: #000000;
        font-weight: 400;
        text-align: center;
    }

        .fbf-container-principal__text-group > p > span {
            color: #ED6B23;
            font-weight: 700;
        }

.fbf-container-principal__text-group--success > p {
    color: #146727;
    font-weight: 600;
}

.fbf-container-principal__foto-container {
    width: 100%;
}

.fbf-container-principal__imagens-ilustracao,
.fbf-container-principal__foto-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.fbf-container-principal__imagens-ilustracao {
    gap: 24px;
    align-items: baseline;
    margin: 20px 0 0 0;
}

.fbf-container-principal__foto {
    max-width: 350px;
    min-width: 160px;
    border: 2px solid #5b5b5b;
    height: fit-content !important;
}

.fbf-container-principal__btn-group {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 8px 0 8px 0;
}

.fbf-container-principal__btn,
.fbf-container-camera-foto__btn,
.fbf-container-upload-foto__btn {
    border-radius: 5px;
    border: none;
    background-color: #ED6B23;
    text-align: center;
    color: #fff;
    font-weight: 700;
    overflow: hidden;
}

.fbf-container-principal__btn {
    width: 120px;
    height: 32px;
    font-size: 14px;
}

.fbf-container-principal__btn--small {
    width: 100px;
    height: 28px;
    font-size: 12px;
}

.fbf-container-principal__btn--vermelho {
    background-color: #ED4123;
}

.fbf-container-principal__termo {
    display: flex;
    font-size: 14px;
    align-items: center;
    margin: 24px 0;
    justify-content: center;
    width: 90%;
}

.fbf-container-principal__termo input[type="checkbox"] {
    margin: 0 8px 0 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #616161;
}

.fbf-container-principal__termo__text {
}

.fbf-container-principal-comfoto-termo__text__p {
    display: inline;
    margin-left: 8px;
}

.fbf-container-principal__termo__text__span {
    cursor: pointer;
    color: #ff6600;
    text-decoration: underline;
}

/* Camera Foto Base */
.fbf-container-camera-foto {
    overflow: hidden;
}

.fbf-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Video container */
.fbf-container-camera-foto-video-container {
    width: 100%;
    height: 65%;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.fbf-container-camera-foto__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #111111;
}

.fbf-container-camera-foto__video__mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}


/* Titulo */
.fbf-container-camera-foto__titulo, .fbf-container-upload-foto__titulo {
    width: 100%;
    height: 10%;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    font-family: inherit;
    z-index: 9999;
    padding: 24px 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


/* Botoes grupo */
.fbf-container-camera-foto__btn-group, .fbf-container-upload-foto__btn-group {
    width: 100%;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

/* Botao */
.fbf-container-camera-foto__btn, .fbf-container-upload-foto__btn {
    width: 80%;
    height: 10vh;
    max-height: 52px;
    max-width: 400px;
    font-size: 18px;
}

/* Botao voltar */
.fbf-container-camera-foto__btn--voltar, .fbf-container-upload-foto__btn--voltar {
    background-color: transparent;
    border: 1px solid #fff;
}

/* Mensagem base */
.fbf-mensagem {
    box-sizing: border-box;
    display: none;
    z-index: 9999;
    pointer-events: none;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    line-height: 1.3;
    padding: 4px 8px;
    width: 80%;
    max-width: 400px;
    font-size: 16px;
    margin: 24px;
}

.fbf-mensagem-info {
    display: block;
    color: #fff;
    border: 1px solid #fff;
    background: rgba(0,0,0,0.55);
    font-weight: 500;
}

.fbf-mensagem-erro {
    display: block;
    color: #ff4444;
    border: 1px solid #ff4444;
    background: rgba(0,0,0,0.65);
}



/* Upload foto */
.fbf-container-upload-foto__recorte-container {
    width: 100%;
    height: 65%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fbf-container-upload-foto__recorte-container__crop-area {
    position: relative;
    width: 100%;
    height: 85%;
    overflow: hidden;
    margin: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fbf-container-upload-foto__controls {
    width: 100%;
    height: 15%;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

    .fbf-container-upload-foto__controls button {
        height: fit-content;
        max-height: 100%;
        background-color: #ED6B23;
        border: none;
        border-radius: 8px;
        padding: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

        .fbf-container-upload-foto__controls button:hover {
            background-color: #d45a1e;
            transform: translateY(-1px);
        }

        .fbf-container-upload-foto__controls button img {
            width: 100%;
            height: 100%;
            pointer-events: none;
        }


.fbf-container-upload-foto__recorte-container .cropper-view-box {
    outline: 2px solid #00aaff;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.65);
    transition: box-shadow 0.2s ease;
}

.fbf-container-upload-foto__recorte-container .fbf-mensagem-info,
.fbf-container-upload-foto__recorte-container .fbf-mensagem-erro {
    position: absolute;
    left: auto;
    bottom: 10%;
}

/*/* Aplica background xadrez */
.fbf-container-upload-foto__recorte-container__crop-area .cropper-container,
.fbf-container-upload-foto__recorte-container__crop-area .cropper-canvas,
.fbf-container-upload-foto__recorte-container__crop-area .cropper-wrap-box {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC") !important;
    background-repeat: repeat !important;
}





/* Tablets */
@media (min-width: 600px) {
    .fbf-container-camera-foto__titulo, .fbf-container-upload-foto__titulo {
        font-size: 24px;
    }

    .fbf-container-camera-foto__btn-group, .fbf-container-upload-foto__btn-group {
        gap: 36px;
    }

    .fbf-container-camera-foto__btn, .fbf-container-upload-foto__btn {
        width: 80%;
        font-size: 20px;
    }

    .fbf-mensagem {
        padding: 8px 16px;
    }
}

/* Desktop */
@media (min-width: 1024px) {

    .element::-webkit-scrollbar {
        display: none;
        scrollbar-width: none;
    }

    .fbf-container--fullscreen {
        align-items: center;
        padding: 24px 0 24px 0;
    }

    .fbf-container-camera-foto__titulo, .fbf-container-upload-foto__titulo {
        font-size: 28px;
        color: #ED6B23;
    }

    .fbf-container-camera-foto-video-container, .fbf-container-upload-foto__recorte-container {
        position: relative;
        width: 50%;
        height: 70vh;
        border-radius: 10px;
    }

    .fbf-container-camera-foto__video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .fbf-container-camera-foto__video__mask {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .fbf-container-camera-foto__btn-group, .fbf-container-upload-foto__btn-group {
        height: 100px;
        flex-direction: row-reverse;
        justify-content: center;
        padding: 24px 0 0 0;
    }

    .fbf-container-camera-foto__btn, .fbf-container-upload-foto__btn {
        width: 40%;
        max-width: 400px;
        height: 40px;
        font-size: 16px;
    }

    .fbf-mensagem {
        bottom: 32px;
        max-width: 50%;
        width: auto;
        font-size: 15px;
    }
}