@charset "UTF-8";
@import url("../noctua7.css");
@import url("site_page.css");

/* ********************************** INÍCIO - VELAS *********************************** */

/* ********************************** INÍCIO - VELAS / HOME **************************** */

/* ****************** BG-VELAS-HOME */
.bg_velas_home {
    background-image: var(--bg-system);
    /* background-image: url('../../img/proprietario/bg-velas-300x200.jpg'); */
    /* background-repeat: no-repeat; */
    /* background-position: center, center; */
    /* background-size: cover; */
}

/* ****************** VELAS-HOME */
#velas-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    margin: 0;
    padding: 0;
    color: var(--color-n7-gray-light);
}

/* ****************** VELAS-HOME / H1 */
#velas-home>h1 {
    width: 220px;
    font-family: var(--fonte-dancing);
    font-size: 50px;
    font-weight: normal;
    margin: 0 auto;
    padding: 0 0 10px 0;
    text-align: center;
    color: var(--color-n7-light);
    border-radius: 8px;
}

/* ****************** CONTAINER_VELA_ACESA_HOME */
.container_vela_acesa_home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--color-n7-gray-light);
}

/* ****************** CONTAINER_VELA_ACESA_HOME / IMG */
.container_vela_acesa_home img {
    display: inline-block;
    height: 160px;
    margin: 0 auto;
}

/* ****************** VELAS-HOME > A */
#velas-home>a {
    width: 220px;
    margin: 10px auto 0;
}

/* ********************************** FIM - VELAS / HOME ******************************* */

/* ********************************** INICIO - VELAS / MOSTRAR-INTENCAO **************** */

/* ****************** EYE-INTENCAO */
.eye_intencao {
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 1.2rem;
    color: var(--color-n7-middle);
    cursor: pointer;
}

/* ****************** EYE-INTENCAO:HOVER */
.eye_intencao:hover {
    color: var(--color-n7-dark);
}

/* ****************** CONTAINER-VELA-IMG */
.container-vela-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ****************** VELA_DEVOTO_NOME */
#vela_devoto_nome {
    width: 100%;
    margin: 0;
    padding: 5px;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: var(--color-n7-middle);
}

/* ****************** VELA_LOCALIDADE */
#vela_localidade {
    width: 100%;
    height: 25px;
    margin: 0;
    padding: 0;
    text-align: center;
    color: var(--color-n7-white);
    background-color: var(--color-n7-gray-dark);
}

/* ****************** VELA_DATA */
#vela_data {
    width: 100%;
    margin: 0;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 400;
    text-align: end;
    color: var(--color-n7-font-light);
    border-bottom: 0.5px solid var(--color-n7-gray-middle);
}

/* ****************** VELA_INTENÇÃO */
#vela_intencao {
    width: 100%;
    margin: 0;
    padding: 10px 15px;
    font-family: var(--fonte-dancing);
    font-size: 22px;
    font-weight: normal;
    text-align: center;
    color: var(--color-n7-font-dark);
}

/* ********************************** FIM - VELAS / MOSTRAR-INTENCAO ******************* */

/* ********************************** INICIO - VELAS / CONTAINER-APRESENTA-VIDEO ******* */

/* ****************** CONTAINER-APRESENTA-VIDEO */
.container_apresenta_video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    animation: abrir_apresentacao_video 0.8s ease-out;
}

@keyframes abrir_apresentacao_video {
    from {
        opacity: 0;
        scale: 0.5 1;
    }

    to {
        opacity: 1;
        scale: 1 1;
    }
}

/* ****************** CONTAINER-APRESENTA-VIDEO / VIDEO */
.container_apresenta_video video {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ********************************** FIM - VELAS / CONTAINER-APRESENTA-VIDEO ********** */

/* ********************************** INÍCIO - @MEDIA SCREEN / VELAS ******************* */

@media screen and (min-width: 430px) {


    .container_apresenta_video video {
        width: 420px;
    }

    /* ****************** CONTAINER-APRESENTA-GIF-MAIN / IMG */
    .container_apresenta_gif img {
        width: 420px;
        border-top: none;
        border-bottom: none;
        border-radius: 5px;
    }
}

@media screen and (min-width: 576px) {

    /* ****************** CONTAINER-APRESENTA-VIDEO / VIDEO */
    .container_apresenta_video video {
        width: 450px;
    }
}

@media screen and (min-width: 768px) {

    /* ****************** BG-VELAS-HOME */
    /* .bg_velas_home {
        background-repeat: repeat-x;
        background-position: center, center;
        background-size: contain;
    } */
}

@media screen and (min-width: 992px) {}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1400px) {}