/* ===================================================
   DEVOCIONAL DIÁRIO
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    width:100%;
}

body{
    font-family:'Poppins',sans-serif;
    color:#fff;
    overflow-x:hidden;
    background:#111;
}
.player-mobile{
    display:none;
}

@media(max-width:768px){

.player-mobile{
    display:flex;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:52px;
    background:#1d1d1d;
    color:#fff;
    align-items:center;
    justify-content:space-between;
    padding:0 15px;
    z-index:9999;
    box-shadow:0 3px 10px rgba(0,0,0,.4);
}

.card{
    margin-top:75px;
}

}
.referencia{
    color:#d4af37;
    font-size:18px;
    font-weight:700;
    margin:10px 0 5px;
    text-align:center;
}

.versiculo{
    font-style:italic;
    color:#fff;
    font-size:22px;
    line-height:1.5;
    text-align:center;
}
/* ===========================
   FUNDO
=========================== */

.bg{
    position:fixed;
    inset:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    animation:zoom 45s ease-in-out infinite alternate;
    z-index:-2;
}

/* ===========================
   CAMADA ESCURA
=========================== */

.overlay{

    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:flex-start;

    padding:30px 15px;

    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.65)
    );

}

/* ===========================
   CARD
=========================== */

.card{

    width:100%;
    max-width:700px;

    margin:20px auto;

    padding:35px;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.18);

    box-shadow:0 10px 40px rgba(0,0,0,.45);

    animation:fade 1s;

}

/* ===========================
   TAG
=========================== */

.tag{

    display:table;

    margin:auto;

    padding:8px 20px;

    background:#d4af37;

    color:#222;

    font-weight:bold;

    font-size:13px;

    border-radius:30px;

    margin-bottom:20px;

}

/* ===========================
   TEXTOS
=========================== */

.saudacao{

    text-align:center;

    font-size:22px;

    font-weight:500;

    margin-bottom:5px;

}

.data{

    text-align:center;

    color:#ddd;

    margin-bottom:25px;

}

h1{

    text-align:center;

    font-size:40px;

    margin-bottom:10px;

    line-height:1.3;

}

.versiculo{

    text-align:center;

    color:#FFD966;

    font-size:24px;

    font-weight:500;

    margin-bottom:25px;

}

.texto{

    font-size:20px;

    line-height:1.9;

    text-align:justify;

}

.texto::first-letter{

    font-size:34px;

    font-weight:bold;

    color:#FFD966;

}

/* ===========================
   LINHA
=========================== */

.linha{

    height:1px;

    background:rgba(255,255,255,.20);

    margin:30px 0;

}

/* ===========================
   ORAÇÃO
=========================== */

.oracao{

    padding:25px;

    background:rgba(255,255,255,.08);

    border-radius:20px;

}

.oracao h3{

    text-align:center;

    color:#FFD966;

    margin-bottom:15px;

}

.oracao p{

    line-height:1.8;

    font-size:18px;

}

/* ===========================
   FRASE
=========================== */

.frase{

    margin-top:30px;

    text-align:center;

    font-size:20px;

    font-style:italic;

    color:#FFD966;

}

/* ===========================
   ANIMAÇÕES
=========================== */

@keyframes zoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

@keyframes fade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ===========================
   CELULAR
=========================== */

@media(max-width:768px){

    .overlay{

        padding:15px;

    }

    .card{

        padding:22px;

        border-radius:20px;

    }

    h1{

        font-size:30px;

    }

    .versiculo{

        font-size:20px;

    }

    .texto{

        font-size:17px;

        line-height:1.8;

    }

    .oracao{

        padding:18px;

    }

    .oracao p{

        font-size:16px;

    }

    .frase{

        font-size:18px;

    }

}

/* ===========================
   COMPUTADOR
=========================== */

@media(min-width:1200px){

    .card{

        max-width:760px;

    }

}