/* =========================
   RESET / BASE
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    color:#333;
    overflow-x:hidden;
}

/* =========================
   CONTAINER
========================= */
.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* =========================
   HEADER
========================= */
.header{
    background:#0d2b4d;
    color:white;
    padding:12px 0;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    transition:0.3s;
    box-shadow:0 4px 18px rgba(0,0,0,0.10);
}

.header.scroll{
    box-shadow:0 8px 24px rgba(0,0,0,0.18);
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Logo */
.logo{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-iasd{
    font-size:11px;
    letter-spacing:3px;
    font-weight:600;
    opacity:0.85;
}

.logo-belem{
    font-size:26px;
    font-weight:700;
}

.logo-belem::after{
    content:"";
    width:38px;
    height:3px;
    background:#f5c542;
    display:block;
    margin-top:4px;
    border-radius:2px;
}

.logo small{
    font-size:11px;
    opacity:0.85;
    margin-top:5px;
}

/* Menu */
nav{
    display:flex;
    align-items:center;
    gap:24px;
}

nav a{
    color:white;
    margin-left:0;
    text-decoration:none;
    font-weight:500;
    font-size:15px;
    position:relative;
    transition:0.3s;
}

nav a::after{
    content:"";
    width:0;
    height:2px;
    background:#f5c542;
    position:absolute;
    bottom:-6px;
    left:50%;
    transform:translateX(-50%);
    transition:0.3s;
}

nav a:hover{
    color:#f5c542;
}

nav a:hover::after{
    width:100%;
}

/* Botão Ao Vivo */
.link-ao-vivo{
    background:#f5c542;
    color:#111 !important;
    padding:8px 16px;
    border-radius:25px;
    font-weight:700;
}

.link-ao-vivo::after{
    display:none;
}

.link-ao-vivo:hover{
    background:white;
    transform:translateY(-2px);
}

/* =========================
   BANNER
========================= */
.banner{
    height:100vh;
    min-height:700px;
    position:relative;
    overflow:hidden;
}

.slides{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.slide{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    position:absolute;
    inset:0;
    opacity:0;
    transition:1.5s;
    transform:scale(1.1);
}

.slide.active{
    opacity:1;
    transform:scale(1);
}

.overlay{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        rgba(0,0,0,0.58),
        rgba(0,0,0,0.58)
    );
    z-index:1;
}

.banner-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    z-index:2;
    animation:fadeUp 1.5s ease;
    width:90%;
    max-width:800px;
}

.banner-text h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
    text-shadow:0 4px 20px rgba(0,0,0,0.35);
}

.banner-text p{
    font-size:18px;
    margin-bottom:25px;
    text-shadow:0 2px 10px rgba(0,0,0,0.30);
}

.btn-banner{
    background:#f5c542;
    color:black;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    display:inline-block;
}

.btn-banner:hover{
    background:white;
    transform:translateY(-3px);
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translate(-50%,-30%);
    }
    to{
        opacity:1;
        transform:translate(-50%,-50%);
    }
}

/* =========================
   SEÇÕES / TÍTULOS
========================= */
section{
    padding:110px 0;
}

#historia,
#cultos,
#eventos,
#contato{
    scroll-margin-top:100px;
}

section h2{
    text-align:center;
    font-size:34px;
    margin-bottom:50px;
    font-weight:600;
    position:relative;
    width:fit-content;
    margin-left:auto;
    margin-right:auto;
}

section h2::after{
    content:"";
    width:60px;
    height:3px;
    background:#f5c542;
    display:block;
    margin:10px auto 0;
    border-radius:2px;
}

/* =========================
   HISTÓRIA
========================= */
#historia{
    background:white;
}

.historia-container{
    max-width:900px;
    margin:auto;
}

.historia-card{
    background:#fff;
    padding:50px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    text-align:center;
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.historia-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 30px rgba(0,0,0,0.10);
}

.historia-card p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
    color:#555;
}

/* =========================
   CULTOS
========================= */
#cultos{
    background:#f7f7f7;
}

.cultos{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top:40px;
}

.culto{
    background:white;
    padding:40px 30px;
    width:320px;
    text-align:center;
    border-radius:15px;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    border-top:4px solid #f5c542;
}

.culto i{
    font-size:32px;
    color:#f5c542;
    margin-bottom:15px;
}

.culto h3{
    font-size:22px;
    margin-bottom:8px;
}

.culto p{
    color:#666;
    margin-bottom:15px;
    font-size:16px;
}

.culto span{
    font-size:20px;
    font-weight:600;
    color:#0d2b4d;
}

.culto:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

/* =========================
   PEDIDOS DE ORAÇÃO
========================= */
#oracao{
    background:white;
    padding:80px 0;
    border-top:1px solid #eee;
}

.oracao-card{
    max-width:800px;
    margin:auto;
    background:white;
    padding:45px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    border-top:4px solid #f5c542;
}

.oracao-texto{
    text-align:center;
    margin-bottom:30px;
}

.oracao-texto h2{
    margin-bottom:15px;
}

.oracao-texto p{
    color:#666;
    line-height:1.6;
}

.form-oracao{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-oracao input,
.form-oracao textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    font-family:'Poppins', sans-serif;
    outline:none;
}

.form-oracao input:focus,
.form-oracao textarea:focus{
    border-color:#0d2b4d;
}

.form-oracao textarea{
    min-height:160px;
    resize:none;
}

.anonimo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#555;
    font-size:15px;
}

.anonimo input{
    width:auto;
}

.form-oracao button{
    background:#0d2b4d;
    color:white;
    border:none;
    padding:15px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.form-oracao button:hover{
    background:#f5c542;
    color:black;
}

#msg-status{
    text-align:center;
    font-weight:600;
}

/* AULAS BÍBLICAS */

#aulas{
    background:white;
    padding:100px 0;
}

.aulas-chamada{
    background:linear-gradient(135deg, #0d2b4d, #123b68);
    color:white;
    text-align:center;
    padding:60px 30px;
    border-radius:25px;
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.aulas-chamada h2{
    color:white;
}

.aulas-chamada p{
    max-width:650px;
    margin:0 auto 30px;
    color:#e0e0e0;
    line-height:1.7;
}

.btn-aulas{
    background:#f5c542;
    color:#111;
    border:none;
    padding:15px 34px;
    border-radius:30px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.btn-aulas:hover{
    background:white;
    transform:translateY(-4px);
}

/* MODAL CATÁLOGO */

.modal-aulas,
.modal-player{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
}

.modal-aulas.ativo,
.modal-player.ativo{
    display:flex;
}

.modal-aulas-conteudo{
    background:white;
    width:100%;
    max-width:1100px;
    max-height:90vh;
    overflow-y:auto;
    border-radius:24px;
    padding:40px;
    position:relative;
}

.fechar-aulas,
.fechar-player{
    position:absolute;
    top:18px;
    right:24px;
    background:none;
    border:none;
    font-size:36px;
    cursor:pointer;
}

.modal-aulas-conteudo h2{
    text-align:center;
    color:#0d2b4d;
}

.aulas-modal-subtitulo{
    text-align:center;
    color:#666;
    margin-bottom:30px;
}

.aulas-controles{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.aulas-controles input,
.aulas-controles select{
    padding:14px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    min-width:250px;
    font-family:'Poppins', sans-serif;
    outline:none;
}

.aulas-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:24px;
}

.aula-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    transition:.3s;
}

.aula-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.14);
}

.aula-thumb{
    height:160px;
    position:relative;
    overflow:hidden;
}

.aula-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.play-icon{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.38);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    opacity:0;
    transition:.3s;
}

.aula-card:hover .play-icon{
    opacity:1;
}

.aula-info{
    padding:20px;
}

.aula-info span{
    background:#f5c542;
    color:#111;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
}

.aula-info h3{
    color:#0d2b4d;
    margin:12px 0 8px;
    font-size:18px;
}

.aula-info p{
    color:#666;
    font-size:14px;
    line-height:1.5;
}

/* PLAYER */

.player-conteudo{
    background:white;
    width:100%;
    max-width:900px;
    border-radius:24px;
    padding:40px;
    position:relative;
    text-align:center;
}

.player-conteudo h2{
    color:#0d2b4d;
    margin-bottom:25px;
}

#player-video{
    width:100%;
    height:480px;
    border:none;
    border-radius:18px;
}

@media(max-width:768px){
    .modal-aulas-conteudo,
    .player-conteudo{
        padding:30px 20px;
    }

    #player-video{
        height:230px;
    }
}

/* =========================
   EVENTOS
========================= */
#eventos{
    background:#f7f7f7;
    padding:100px 0;
}

.eventos{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:28px;
    margin-top:40px;
}

.evento{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
    transition:.3s;
}

.evento:hover{
    transform:translateY(-8px);
}

.evento-img{
    height:185px;
    position:relative;
    overflow:hidden;
}

.evento-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.evento-data{
    position:absolute;
    top:14px;
    left:14px;
    background:#f5c542;
    color:#111;
    padding:8px 14px;
    border-radius:25px;
    font-weight:700;
    font-size:14px;
}

.evento-texto{
    padding:22px;
}

.evento-texto h3{
    color:#0d2b4d;
    font-size:21px;
    margin-bottom:10px;
}

.evento-texto p{
    color:#666;
    line-height:1.6;
}

.evento-horario{
    color:#0d2b4d;
    font-weight:700;
    margin-top:10px;
}

.tag-proximo{
    display:inline-block;
    background:#f5c542;
    color:#000;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
    margin-bottom:8px;
}

.eventos-botao-area{
    display:flex;
    justify-content:flex-end;
    margin-top:35px;
}

.btn-mais-eventos{
    background:#0d2b4d;
    color:white;
    border:none;
    padding:14px 32px;
    border-radius:30px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.btn-mais-eventos:hover{
    background:#f5c542;
    color:black;
    transform:translateY(-4px);
}

/* =========================
   MODAL AGENDA
========================= */
.modal-agenda{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
}

.modal-agenda.ativo{
    display:flex;
}

.modal-conteudo{
    background:white;
    width:100%;
    max-width:850px;
    max-height:85vh;
    overflow-y:auto;
    border-radius:20px;
    padding:40px;
    position:relative;
}

.fechar-modal{
    position:absolute;
    top:18px;
    right:22px;
    border:none;
    background:none;
    font-size:34px;
    cursor:pointer;
}

.agenda-subtitulo{
    text-align:center;
    color:#666;
    margin-bottom:25px;
}

.filtros-eventos{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.filtro{
    border:none;
    padding:10px 18px;
    border-radius:25px;
    background:#eee;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.filtro.ativo,
.filtro:hover{
    background:#0d2b4d;
    color:white;
}

.agenda-lista{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.agenda-item{
    display:flex;
    gap:18px;
    background:#f7f7f7;
    padding:18px;
    border-radius:14px;
    border-left:5px solid #f5c542;
}

.agenda-data{
    background:#0d2b4d;
    color:white;
    min-width:75px;
    height:75px;
    border-radius:12px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.agenda-data span{
    font-size:24px;
}

/* Mensagem quando não há eventos */
.sem-eventos{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:60px 20px;
    background:#f7f7f7;
    border-radius:16px;
    animation:fadeIn .4s ease;
}

.sem-eventos h3{
    color:#0d2b4d;
    font-size:22px;
    margin-bottom:8px;
}

.sem-eventos p{
    color:#777;
    max-width:300px;
    line-height:1.5;
}

.icone-calendario{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#0d2b4d;
    color:#f5c542;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:18px;
}

.btn-ver-todos{
    margin-top:20px;
    background:#0d2b4d;
    color:white;
    border:none;
    padding:12px 24px;
    border-radius:30px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.btn-ver-todos:hover{
    background:#f5c542;
    color:black;
    transform:translateY(-3px);
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   CONTATO
========================= */
#contato{
    background:#0d2b4d;
    color:white;
    padding-top:100px;
    padding-bottom:100px;
}

#contato h2,
#contato h3{
    color:white;
}

#contato p{
    color:#e0e0e0;
}

.contato{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
    margin-top:40px;
    text-align:left;
}

.contato-info{
    flex:1;
    max-width:450px;
}

.contato-item{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-item:hover{
    transform:translateY(-6px);
}

.contato-item i{
    font-size:20px;
    color:#f5c542;
    background:rgba(255,255,255,0.1);
    padding:14px;
    border-radius:50%;
}

.contato-item h3{
    margin-bottom:4px;
    font-size:18px;
}

.contato-item p{
    font-size:15px;
}

.siga-texto{
    margin-top:25px;
    font-weight:600;
    color:white;
}

.redes-sociais{
    display:flex;
    gap:14px;
    margin-top:25px;
}

.redes-sociais a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    font-size:20px;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
}

.redes-sociais a:hover{
    transform:translateY(-5px);
}

.redes-sociais .instagram{
    background:#E1306C;
}

.redes-sociais .facebook{
    background:#1877F2;
}

.redes-sociais .youtube{
    background:#FF0000;
}

.mapa{
    flex:1;
    max-width:500px;
}

.mapa iframe{
    width:100%;
    height:280px;
    border:none;
    border-radius:12px;
}

/* =========================
   MODAL AO VIVO
========================= */
.modal-live{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
}

.modal-live.ativo{
    display:flex;
}

.live-conteudo{
    background:white;
    width:100%;
    max-width:850px;
    border-radius:20px;
    padding:35px;
    position:relative;
    text-align:center;
    animation:abrirModal .3s ease;
}

@keyframes abrirModal{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.fechar-live{
    position:absolute;
    top:15px;
    right:20px;
    border:none;
    background:none;
    font-size:34px;
    cursor:pointer;
}

.live-badge{
    display:inline-block;
    background:red;
    color:white;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
    margin-bottom:12px;
}

.live-badge.off{
    background:#999;
}

.live-conteudo h2{
    color:#0d2b4d;
    margin-bottom:10px;
}

.live-status{
    color:#666;
    margin-bottom:20px;
}

.live-video iframe{
    width:100%;
    height:420px;
    border:none;
    border-radius:15px;
}

.live-fallback{
    display:none;
    padding:40px;
    text-align:center;
}

.live-fallback p{
    margin-bottom:15px;
    color:#666;
}

.btn-live{
    display:inline-block;
    margin-top:20px;
    background:#0d2b4d;
    color:white;
    padding:12px 26px;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    background:#1ebe5d;
}

/* =========================
   FOOTER
========================= */
footer{
    background:#050505;
    color:#aaa;
    text-align:center;
    padding:18px 10px;
    font-size:14px;
}

footer p{
    margin:0;
}

/* =========================
   TABLET
========================= */
@media (max-width:1024px){
    .container{
        width:92%;
    }

    nav{
        gap:18px;
    }

    nav a{
        font-size:15px;
    }

    .banner-text h1{
        font-size:42px;
    }

    .banner-text p{
        font-size:17px;
    }

    .cultos,
    .contato{
        gap:20px;
    }
}

/* =========================
   CELULAR
========================= */
@media (max-width:768px){
    .header{
        padding:10px 0;
    }

    .header-container{
        flex-direction:column;
        gap:8px;
    }

    .logo{
        text-align:center;
        align-items:center;
    }

    .logo-iasd{
        font-size:10px;
    }

    .logo-belem{
        font-size:22px;
    }

    .logo small{
        font-size:10px;
    }

    nav{
        justify-content:center;
        flex-wrap:wrap;
        gap:10px 14px;
    }

    nav a{
        font-size:13px;
    }

    .link-ao-vivo{
        padding:7px 14px;
    }

    .banner{
        height:calc(100svh - 110px);
        min-height:520px;
    }

    .banner-text{
        width:92%;
        top:52%;
        left:50%;
        transform:translate(-50%, -50%);
        text-align:center;
    }

    .banner-text h1{
        font-size:28px;
        line-height:1.15;
        margin-bottom:10px;
    }

    .banner-text p{
        font-size:15px;
        line-height:1.4;
        margin-bottom:18px;
    }

    .btn-banner{
        padding:10px 22px;
        font-size:14px;
        border-radius:25px;
    }

    section{
        padding:70px 0;
    }

    section h2{
        font-size:26px;
        margin-bottom:28px;
    }

    .historia-card{
        padding:30px 22px;
    }

    .historia-card p{
        font-size:15px;
        line-height:1.8;
        text-align:left;
    }

    .cultos{
        flex-direction:column;
        align-items:center;
        gap:18px;
    }

    .culto{
        width:100%;
        max-width:320px;
        padding:24px 18px;
    }

    .culto h3{
        font-size:20px;
    }

    .culto p{
        font-size:14px;
    }

    .culto span{
        font-size:18px;
    }

    .aulas-grid{
        grid-template-columns:1fr;
    }

    .aula-card{
        max-width:330px;
        margin:auto;
    }

    .aula-card iframe{
        height:190px;
    }

    .eventos{
        grid-template-columns:1fr;
    }

    .eventos-botao-area{
        justify-content:center;
    }

    .evento{
        max-width:330px;
        margin:auto;
    }

    .evento-img{
        height:190px;
    }

    .evento-texto{
        padding:16px;
    }

    .evento-texto h3{
        font-size:18px;
    }

    .evento-texto p{
        font-size:14px;
        line-height:1.5;
    }

    .modal-conteudo{
        padding:30px 20px;
    }

    .agenda-item{
        flex-direction:column;
        text-align:center;
    }

    .contato{
        flex-direction:column;
        align-items:stretch;
        gap:22px;
    }

    .contato-info,
    .mapa{
        width:100%;
        max-width:100%;
    }

    .redes-sociais{
        justify-content:center;
        flex-wrap:wrap;
    }

    .mapa iframe{
        width:100%;
        height:240px;
        border-radius:12px;
    }

    .live-video iframe{
        height:230px;
    }

    footer{
        font-size:12px;
        padding:14px 10px;
        line-height:1.5;
    }
}

/* =========================
   CELULAR PEQUENO
========================= */
@media (max-width:480px){
    .logo-belem{
        font-size:20px;
    }

    nav a{
        font-size:12px;
    }

    .banner{
        min-height:480px;
    }

    .banner-text h1{
        font-size:24px;
    }

    .banner-text p{
        font-size:14px;
    }

    .btn-banner{
        font-size:13px;
        padding:9px 18px;
    }

    .culto,
    .evento{
        max-width:300px;
    }

    .whatsapp-float{
        right:18px;
        bottom:18px;
        width:55px;
        height:55px;
        font-size:27px;
    }
}

/* =========================
   ACABAMENTO PREMIUM
========================= */

.aula-card,
.evento,
.culto,
.historia-card,
.oracao-card{
    animation: aparecerSuave .6s ease;
}

@keyframes aparecerSuave{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.aula-card:hover,
.evento:hover,
.culto:hover{
    transform:translateY(-10px) scale(1.02);
}

.aula-thumb img{
    transition:.4s ease;
}

.aula-card:hover .aula-thumb img{
    transform:scale(1.08);
}

.play-icon i{
    background:#f5c542;
    color:#111;
    width:62px;
    height:62px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.modal-aulas,
.modal-player,
.modal-agenda,
.modal-live{
    backdrop-filter:blur(6px);
}

.btn-aulas,
.btn-banner,
.btn-mais-eventos,
.form-oracao button,
.btn-ver-todos,
.btn-live{
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.btn-aulas:hover,
.btn-banner:hover,
.btn-mais-eventos:hover,
.form-oracao button:hover,
.btn-ver-todos:hover,
.btn-live:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

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

.animar{
    opacity:0;
    transform:translateY(45px);
    filter:blur(6px);
    transition:opacity .8s ease, transform .8s ease, filter .8s ease;
}

.animar.ativo{
    opacity:1;
    transform:translateY(0);
    filter:blur(0);
}

.animar.zoom{
    transform:scale(.92);
}

.animar.zoom.ativo{
    transform:scale(1);
}

.animar.esquerda{
    transform:translateX(-45px);
}

.animar.esquerda.ativo{
    transform:translateX(0);
}

.animar.direita{
    transform:translateX(45px);
}

.animar.direita.ativo{
    transform:translateX(0);
}

/* BOTÃO DA AGENDA */
.eventos-botao-area{
    display:block !important;
    width:max-content !important;
    margin:50px 0 0 0 !important;
    padding:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    border:none !important;
    border-radius:0 !important;
}

.eventos-botao-area::before,
.eventos-botao-area::after{
    content:none !important;
    display:none !important;
}

.btn-mais-eventos{
    width:auto !important;
}