/* RESET */

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

/* VARIÁVEIS DO SITE */

:root {
    --cor-principal: #ff0040;
}

/* BODY */

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    background: #f5f6fa;
    color: #333;
    line-height: 1.6;
}

/* HEADER */

.site-header {
    background: #000;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 999;
    margin-top: 85px;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* LOGO */

.logo-area {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 10px;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
}

/* MENU */

.main-menu {
    display: flex;
    flex-wrap: wrap;
}

.main-menu a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: 0.3s;
}

.main-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--cor-principal);
    transition: 0.3s;
}

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

.main-menu a:hover {
    color: var(--cor-principal);
}

/* MENU MOBILE */

.menu-toggle {
    display: none;
    background: var(--cor-principal);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* CONTEÚDO */

.site-content {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

/* SEÇÕES */

.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #111;
}

/* CARDS */

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

.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* BOTÕES */

.btn {
    display: inline-block;
    background: var(--cor-principal);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 15px;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* PLAYER */

.radio-player {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;

    background: linear-gradient(90deg, #000, #111, #000);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 25px;

    z-index: 9999;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);

    color: white;

}

.player-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cover img {
    height: 55px;
    width: 55px;
    border-radius: 8px;
}

.music-info {
    display: flex;
    flex-direction: column;
}

#radio-name {
    font-size: 16px;
    font-weight: bold;
}

#current-song {
    font-size: 14px;
    color: #00ff90;
}

#current-program {
    font-size: 12px;
    opacity: 0.7;
}

.player-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    border: none;

    background: linear-gradient(45deg, #ff0040, #ff3366);

    color: white;

    font-size: 22px;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(255, 0, 64, 0.5);

}

.equalizer {
    display: flex;
    gap: 4px;
}

.equalizer span {
    width: 4px;
    height: 20px;
    background: #00ff90;
    animation: eq 1s infinite;
}

.equalizer span:nth-child(2) {
    animation-delay: .2s
}

.equalizer span:nth-child(3) {
    animation-delay: .4s
}

.equalizer span:nth-child(4) {
    animation-delay: .6s
}

.equalizer span:nth-child(5) {
    animation-delay: .8s
}

@keyframes eq {
    0% {
        height: 10px
    }

    50% {
        height: 30px
    }

    100% {
        height: 10px
    }
}

.player-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

#volumeControl {
    width: 110px;
}

.btn-player {
    padding: 7px 14px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-size: 13px;
}

.whatsapp {
    background: #25D366
}

.app {
    background: #0066ff
}

/* RODAPÉ */

.site-footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 35px;
    margin-top: 60px;
    font-size: 14px;
}

/* VERSÍCULO DO DIA */

.versiculo-dia {
    background: linear-gradient(135deg, #ff0040, #8a0024);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
}

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

.texto-versiculo {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 10px;
}

/* RESPONSIVO */

@media(max-width:768px) {

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

    .menu-toggle {
        display: block;
    }

    .main-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .main-menu a {
        margin: 10px 0;
    }

    .main-menu.active {
        display: flex;
    }

    .site-content {
        padding: 40px 15px;
    }

}
.slider{
width:100%;
max-width:1200px;
margin:30px auto;
position:relative;
overflow:hidden;
}

.slide{
position:relative;
}

.slide img{
width:100%;
border-radius:10px;
}

.slide-title{
position:absolute;
bottom:20px;
left:20px;
color:white;
background:rgba(0,0,0,0.5);
padding:10px 15px;
border-radius:5px;
font-size:18px;
}
.slider {
    position: relative;
    max-width: 1200px;
    margin: 30px auto;
    overflow: hidden;
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}

.slide-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
}

/* SETAS */

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.slide-btn:hover {
    background: var(--cor-principal);
}
.webtv-player{
max-width:1100px;
margin:auto;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
background:#000;
}
/* CARDS DE VÍDEOS */

.video-card{
cursor:pointer;
position:relative;
max-width:280px;
margin:auto;
}

.video-card img{
width:100%;
height:160px;
object-fit:cover;
border-radius:8px;
}

/* BOTÃO PLAY */

.video-play{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(0,0,0,0.6);
color:white;
font-size:24px;
padding:10px 14px;
border-radius:50%;
}

/* GRID DE VÍDEOS */

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

/* IFRAME VÍDEO EMBUTIDO */

.card iframe{
width:100%;
height:160px;
border-radius:8px;
}
/* POPUP VIDEO */

.video-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
align-items:center;
justify-content:center;
z-index:9999;
}

.video-container{
width:80%;
max-width:900px;
position:relative;
}

.video-container iframe{
width:100%;
height:500px;
border-radius:8px;
}

.video-close{
position:absolute;
top:-40px;
right:0;
color:white;
font-size:30px;
cursor:pointer;
}

/* CARD VIDEO */

.video-card{
cursor:pointer;
position:relative;
}

.video-play{
position:absolute;
top:45%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(0,0,0,0.6);
color:white;
font-size:26px;
padding:10px 14px;
border-radius:50%;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    margin: 5px;
    text-decoration: none;
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: #e4405f;
}

.youtube {
    background: #ff0000;
}

.footer-contact {
    margin-top: 10px;
    font-size: 14px;
}
.social-icons{
margin:20px 0;
}

.social-icons a{

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

width:55px;
height:55px;

border-radius:50%;

font-size:26px;

margin:6px;

color:white;

text-decoration:none;

transition:0.3s;

}

.social-icons a:hover{
transform:scale(1.15);
}

/* CORES */

.facebook{background:#1877f2;}
.instagram{background:#e4405f;}
.youtube{background:#ff0000;}
.tiktok{background:#000000;}
.kwai{background:#ff6a00;}
.twitter{background:#000;}
.telegram{background:#0088cc;}
.program-carousel{
font-size:14px;
margin-top:4px;
height:20px;
overflow:hidden;
}

.program-item{
display:none;
color:#00ff90;
}
.player-social {
    display: flex;
    gap: 8px;
    margin-left: 10px;
}

.player-social a {
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.player-social a:hover {
    transform: scale(1.2);
}
/* BOTÕES DO PLAYER */

.btn-player{
display:flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
border-radius:8px;
text-decoration:none;
font-size:16px;
color:white;
margin-left:5px;
}

/* CORES DOS BOTÕES */

.whatsapp{
background:#25D366;
}

.pedido{
background:#ff9800;
}

.app{
background:#0066ff;
}

.install{
background:#673ab7;
border:none;
cursor:pointer;
}


/* REDES SOCIAIS */

.player-social{
display:flex;
gap:6px;
margin-left:8px;
}

.player-social a{
display:flex;
align-items:center;
justify-content:center;
width:32px;
height:32px;
border-radius:50%;
font-size:16px;
color:white;
text-decoration:none;
transition:0.3s;
}

/* CORES DAS REDES */

.player-social a:nth-child(1){
background:#1877f2; /* Facebook */
}

.player-social a:nth-child(2){
background:#e4405f; /* Instagram */
}

.player-social a:nth-child(3){
background:#ff0000; /* YouTube */
}

.player-social a:nth-child(4){
background:#000000; /* TikTok */
}

.player-social a:hover{
transform:scale(1.15);
}
/* EQUALIZADOR MODERNO */

.equalizer{

display:flex;
align-items:flex-end;
gap:4px;

height:40px;
margin-left:10px;

}

.equalizer span{

width:5px;
height:10px;

border-radius:4px;

background:linear-gradient(180deg,#00ff90,#00c96b);

animation:equalizer 1.2s infinite ease-in-out;

}

/* barras com tempos diferentes */

.equalizer span:nth-child(1){animation-delay:0s}
.equalizer span:nth-child(2){animation-delay:0.2s}
.equalizer span:nth-child(3){animation-delay:0.4s}
.equalizer span:nth-child(4){animation-delay:0.6s}
.equalizer span:nth-child(5){animation-delay:0.8s}
.equalizer span:nth-child(6){animation-delay:1s}
.equalizer span:nth-child(7){animation-delay:1.2s}

@keyframes equalizer{

0%{
height:6px;
}

25%{
height:18px;
}

50%{
height:35px;
}

75%{
height:20px;
}

100%{
height:6px;
}

}
.btn-player {
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.btn-player:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}
.play-btn {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    border: none;

    background: linear-gradient(45deg, #ff0040, #ff3366);

    color: white;

    font-size: 22px;

    cursor: pointer;

    box-shadow: 0 0 15px rgba(255, 0, 64, 0.6);

    transition: 0.3s;

}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 0, 64, 0.9);
}
/* PLAYER RESPONSIVO */

.radio-player{
display:flex;
align-items:center;
justify-content:space-between;
gap:15px;
flex-wrap:wrap;
padding:10px 15px;
}

/* LADO ESQUERDO */

.player-left{
display:flex;
flex-direction:column;
}

/* CENTRO */

.player-center{
display:flex;
align-items:center;
gap:10px;
}

/* DIREITA */

.player-right{
display:flex;
align-items:center;
gap:6px;
flex-wrap:wrap;
}

/* REDES */

.player-social{
display:flex;
gap:5px;
flex-wrap:wrap;
}

/* MOBILE */

@media (max-width:768px){

.radio-player{
flex-direction:column;
align-items:center;
text-align:center;
padding:15px;
}

.player-left{
align-items:center;
}

.player-center{
margin:10px 0;
}

.player-right{
justify-content:center;
flex-wrap:wrap;
}

.player-social{
justify-content:center;
margin-top:5px;
}

#volumeControl{
width:100px;
}

}