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

html, body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

body{
    background:#f5f6f8;
    color:#222;
    font-family: Arial, Helvetica, sans-serif;
    line-height:1.5;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1200px, 94%);
    margin:0 auto;
}

/* =========================================================
   TOPO GERAL
========================================================= */
.topo-geral{
    width:100%;
    position:relative;
    z-index:1000;
}

/* =========================================================
   PLAYER SUPERIOR
========================================================= */
.top-radio{
    width:100%;
    padding:8px 0;
}

.radio-container{
    width:min(1200px, 94%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:16px;
}

.player-central{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.radio-live{
    color:#fff;
    font-size:17px;
    font-weight:700;
    white-space:nowrap;
}

.radio-controls{
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,0.12);
    padding:8px 14px;
    border-radius:16px;
}

.radio-controls button{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#111;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.volume-box{
    display:flex;
    align-items:center;
    gap:8px;
    min-width:150px;
}

.volume-box span{
    color:#fff;
    font-size:16px;
}

.volume-box input[type="range"]{
    width:130px;
}

.player-social{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
    flex-wrap:wrap;
}

.player-social a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.player-social img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .2s ease;
}

.player-social img:hover{
    transform:scale(1.08);
}

/* =========================================================
   HEADER / MENU
========================================================= */
.menu-principal-area{
    width:100%;
}

.menu-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:16px 0 18px;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:16px;
    text-decoration:none;
    min-width:0;
}

.logo-img{
    width:88px;
    height:88px;
    border-radius:50%;
    object-fit:cover;
    background:#fff;
    flex-shrink:0;
}

.logo-texto{
    display:flex;
    align-items:center;
    min-width:0;
}

.logo-texto span{
    font-size:22px;
    font-weight:700;
    line-height:1.25;
    word-break:break-word;
}

.menu-site{
    display:flex;
    align-items:center;
    gap:28px;
    margin-left:auto;
}

.menu-site a{
    font-weight:700;
    font-size:17px;
    position:relative;
    transition:.2s ease;
}

.menu-site a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:currentColor;
    transition:.25s ease;
}

.menu-site a:hover::after{
    width:100%;
}

.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    background:transparent;
    border:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    gap:6px;
}

.menu-toggle span{
    display:block;
    width:28px;
    height:3px;
    border-radius:5px;
    margin:0 auto;
}

/* =========================================================
   ALERTA EVENTO
========================================================= */
.alerta-evento{
    width: 100%;
    background: #dc2626;
    border-radius: 12px;
    margin: 18px 0 0;
    animation: piscar 1.2s infinite;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.alerta-evento a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 14px 12px;
}

.alerta-evento-topo{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.alerta-evento-titulo{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

@keyframes piscar{
    0%{opacity:1;}
    50%{opacity:.45;}
    100%{opacity:1;}
}

@media (max-width: 700px){
    .alerta-evento-titulo{
        font-size: 17px;
    }

    .alerta-evento-topo{
        font-size: 13px;
    }
}
/* =========================================================
   CONTEÚDO PRINCIPAL
========================================================= */
main{
    padding:30px 0;
}

/* =========================================================
   NOTÍCIAS HOME
========================================================= */
.noticias-home{
    padding:60px 0;
    background:#f8f9fb;
}

.titulo-secao{
    font-size:32px;
    margin-bottom:28px;
    color:#222;
}

.noticias-layout{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:24px;
    align-items:stretch;
}

.noticia-destaque,
.noticia-secundaria{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
}

.noticia-destaque{
    display:flex;
    flex-direction:column;
}

.noticia-destaque img{
    width:100%;
    height:390px;
    object-fit:cover;
}

.noticias-lateral{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:24px;
}

.noticia-secundaria{
    display:flex;
    flex-direction:column;
}

.noticia-secundaria img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.noticia-conteudo{
    padding:18px 20px 20px;
}

.noticia-destaque h3{
    font-size:22px;
    margin-bottom:10px;
    color:#111;
}

.noticia-secundaria h4{
    font-size:18px;
    margin-bottom:8px;
    color:#111;
    line-height:1.35;
}

.noticia-destaque p,
.noticia-secundaria p{
    color:#555;
    line-height:1.6;
    margin-bottom:12px;
}

.link-noticia{
    color:#2563eb;
    font-weight:600;
}

.link-noticia:hover{
    text-decoration:underline;
}

.noticias-rodape{
    text-align:center;
    margin-top:30px;
}

.btn-ver-todas{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
}

.btn-ver-todas:hover{
    background:#1d4ed8;
}

/* =========================================================
   EVENTOS HOME
========================================================= */
.slider-eventos{
    padding:50px 0;
}

.slider-eventos h2{
    text-align:center;
    margin-bottom:12px;
    font-size:32px;
}

.eventos-slider{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:25px;
}

.slide-evento{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
}

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

.slide-conteudo{
    padding:18px;
}

.slide-conteudo h3{
    margin-bottom:10px;
    font-size:22px;
}

.slide-conteudo p{
    margin-bottom:8px;
    line-height:1.5;
}

/* =========================================================
   MEMBROS / LIDERANÇA
========================================================= */
.lideranca-home{
    padding:50px 0;
}

.lideranca-home h2{
    text-align:center;
    margin-bottom:12px;
    font-size:32px;
}

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

.grid-membros{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:20px;
    margin-top:20px;
}

.card-membro{
    text-align:center;
    background:#fff;
    padding:20px 12px;
    border-radius:16px;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
}

.foto-membro{
    width:130px;
    height:130px;
    margin:0 auto 15px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid #eee;
}

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

.card-membro h3{
    font-size:18px;
    margin-bottom:6px;
}

.card-membro p{
    color:#666;
    font-size:14px;
}

/* =========================================================
   HORÁRIOS DOS CULTOS
========================================================= */
.horarios-cultos{
    padding:50px 0;
    background:#f8f8f8;
}

.horarios-cultos h2{
    text-align:center;
    margin-bottom:30px;
}

.lista-horarios{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:20px;
}

.card-horario{
    background:#fff;
    border-radius:14px;
    padding:20px;
    text-align:center;
    box-shadow:0 4px 14px rgba(0,0,0,0.08);
}

.card-horario h3{
    margin-bottom:8px;
    font-size:20px;
}

.card-horario p{
    margin-bottom:8px;
    color:#444;
    font-weight:bold;
}

.card-horario span{
    color:#666;
    font-size:16px;
}

/* =========================================================
   CATEGORIAS / BLOCOS
========================================================= */
.bloco-categoria{
    margin-top:40px;
}

.titulo-categoria{
    font-size:26px;
    margin-bottom:15px;
    border-left:5px solid #ff9900;
    padding-left:10px;
}

.grid-categoria{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.noticia-cat img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:6px;
}

.noticia-cat h3{
    font-size:16px;
    margin-top:8px;
    line-height:1.3;
}

/* =========================================================
   SLIDE
========================================================= */
.slide{
    display:none;
    position:relative;
}

.slide.ativo{
    display:block;
}

/* =========================================================
   RODAPÉ
========================================================= */
.site-footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:25px;
    margin-top:30px;
    font-size:15px;
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width:1100px){
    .grid-membros{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width:900px){
    .radio-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .player-central{
        flex-direction:column;
    }

    .player-social{
        justify-content:center;
    }

    .volume-box{
        min-width:auto;
    }

    .volume-box input[type="range"]{
        width:140px;
    }

    .menu-wrap{
        position:relative;
        padding:14px 0 16px;
    }

    .menu-toggle{
        display:flex;
        margin-left:auto;
    }

    .logo-area{
        width:calc(100% - 60px);
        justify-content:flex-start;
    }

    .logo-img{
        width:68px;
        height:68px;
    }

    .logo-texto span{
        font-size:18px;
    }

    .menu-site{
        display:none;
        position:absolute;
        top:100%;
        right:0;
        left:0;
        flex-direction:column;
        align-items:flex-start;
        padding:14px;
        gap:10px;
        background:inherit;
        box-shadow:0 8px 20px rgba(0,0,0,0.18);
        z-index:1001;
    }

    .menu-site.ativo{
        display:flex;
    }

    .menu-site a{
        width:100%;
        padding:10px 0;
    }

    .noticias-layout{
        grid-template-columns:1fr;
    }

    .noticias-lateral{
        grid-template-rows:auto;
        grid-template-columns:1fr;
    }

    .noticia-destaque img{
        height:260px;
    }

    .noticia-secundaria img{
        height:220px;
    }
}

@media (max-width:700px){
    .grid-membros{
        grid-template-columns:repeat(2, 1fr);
    }

    .foto-membro{
        width:110px;
        height:110px;
    }
}

@media (max-width:520px){
    .logo-img{
        width:58px;
        height:58px;
    }

    .logo-texto span{
        font-size:16px;
    }
}

@media (max-width:480px){
    .grid-membros{
        grid-template-columns:1fr;
    }
}
/* =========================================================
   termos e privacidade
========================================================= */
.pagina-texto{
    padding: 50px 0;
}

.pagina-texto .container{
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.pagina-texto h1{
    font-size: 32px;
    margin-bottom: 20px;
    color: #111;
}

.pagina-texto p{
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

/* =========================================================
  cookie
========================================================= */
.cookie-banner{
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #111827;
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
    padding: 18px 20px;
}

.cookie-banner-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text{
    flex: 1;
    min-width: 260px;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-actions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn{
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.cookie-btn-accept{
    background: #2563eb;
    color: #fff;
}

.cookie-btn-accept:hover{
    background: #1d4ed8;
}

.cookie-btn-reject{
    background: #e5e7eb;
    color: #111827;
}

.cookie-btn-reject:hover{
    background: #d1d5db;
}

@media (max-width: 700px){
    .cookie-banner{
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }

    .cookie-banner-content{
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions{
        width: 100%;
    }

    .cookie-btn{
        flex: 1;
    }
}