/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: Arial, sans-serif;
}

/* Sidebar */
.sidebar {
    width: 25%;
    background: #042979;
    color: rgb(255, 255, 255);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    height: 100vh;
}
.logo img {
    width: 300px;
    margin-top: 20px;
    margin-bottom: 50px;
}
.menu-btn {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    background: #494c4d;
    text-decoration: none;
    border: none;
    transition: 0.3s;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 13px;
    
}
.menu-btn:hover{
    background: #626364;
    transition: .5s;
}
.menu-btn img.icon {
    width: 30px;
height: 30px;
}
.fi{
    font-size: 30px;
    margin-top: 2px;
    margin-bottom: -3px;
    color: #ff6600;
}
.fa-solid{
    font-size: 30px;
    margin: 2px;
    color: #ff6600;
}
a {
    text-decoration: none;
    color: black;
}
.supot{
    margin-top: 60px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 25px;
    background-color: #ff8800;
    font-weight: bold;
    padding: 12px;
    border-radius: 10px;
}
.supot:hover{
    background-color: #ff5e00;
    transition: 0.5s;
    cursor: pointer;
    color: #000000;
}


/* ---------------------------------------------------*/

/* Área dos produtos jovempan */
.content {
    flex-grow: 3;
    margin-left: 28%;
    background: #ffffff;
    padding: 20px;
    margin-top:0%;

}
.card-jovempan{
    border: solid 2px black;
    border-radius: 10px;
    width: calc(55% - 29%);
    background: #ffffff;
    padding: 8px;
    display: flex;
    margin-top: 12px;
    margin-bottom: 20px;


}
.card-jovempan img{
    width: 155px;
    margin-top: 25px;
    margin-bottom: 15px;
    margin-left: 10px;

}
.card-jovempan a{
    font-family:'Courier New', Courier, monospace;
    font-size: 15px;
    background-color: rgb(255, 166, 0);
    border-radius: 6px;
    font-weight: bold;
    padding: 10px;
    margin-left: 3px;
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    
}
.card-jovempan a:hover{
    background-color: #ff5e00;
    transition: 0.5s;

}
.top-jovempan p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Área dos produtos revistaoeste */

.card-oeste{
    border: solid 2px black;
    border-radius: 10px;
    width: calc(48% - 30%);
    background: #ffffff;
    padding: 7px;
    display: flex;
    margin-top: 12px;

position: absolute;
top: 20px; /* Ajuste a posição vertical */
right: 420px; /* Move para o lado direito */

}
.card-oeste img{
    width: 125px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 25px;

}
.card-oeste a{
    font-family:'Courier New', Courier, monospace;
    font-size: 15px;
    background-color: rgb(255, 166, 0);
    border-radius: 6px;
    font-weight: bold;
    padding: 10px;
    margin-left: 3px;
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    
}
.card-oeste a:hover{
    background-color: #ff5e00;
    transition: 0.5s;

}
.top-oeste p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Área dos produtos onefootball */

.card-onefootball{
    border: solid 2px black;
    border-radius: 10px;
    width: calc(48% - 30%);
    background: #ffffff;
    padding: 7px;
    display: flex;
    margin-top: 12px;

position: absolute;
top: 20px; /* Ajuste a posição vertical */
right: 130px; /* Move para o lado direito */

}
.card-onefootball img{
    width: 160px;
    margin-top: 22px;
    margin-bottom: 16px;
    margin-left: 15px;

}
.card-onefootball a{
    font-family:'Courier New', Courier, monospace;
    font-size: 15px;
    background-color: rgb(255, 166, 0);
    border-radius: 6px;
    font-weight: bold;
    padding: 10px;
    margin-left: 3px;
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    
}
.card-onefootball a:hover{
    background-color: #ff5e00;
    transition: 0.5s;

}
.top-onefootball p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* ---------------------------------------------------*/

    #notificacao-wrapper {
    position: fixed;
    bottom: 135px;
    left: 45px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .bloco-alerta {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-left: 8px solid #4a6bdf;
    color: #333;
    padding: 7px 10px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    transform: translateX(-110%);
    animation: slideIn 0.3s forwards, fadeOut 8s forwards;
    opacity: 0;
    }
    @keyframes slideIn {
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }
    @keyframes fadeOut {
      0% { opacity: 1; }
      85% { opacity: 1; transform: translateX(0); }
      100% { opacity: 0; transform: translateX(-110%) scale(0.95); }
    }


/* Área dos produtos ancapsu */

.card-ancapsu{
    border: solid 2px black;
    border-radius: 10px;
    width: calc(48% - 30%);
    background: #ffffff;
    padding: 8px;
    display: flex;
    margin-top: 9px;

position: absolute;
top: 218px; /* Ajuste a posição vertical */
right: 130px; /* Move para o lado direito */

}
.card-ancapsu img{
    width: 150px;
    margin-top: 5px;
    margin-bottom: 0px;
    margin-left: 15px;

}
.card-ancapsu a{
    font-family:'Courier New', Courier, monospace;
    font-size: 15px;
    background-color: rgb(255, 166, 0);
    border-radius: 6px;
    font-weight: bold;
    padding: 10px;
    margin-left: 3px;
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    
}
.card-ancapsu a:hover{
    background-color: #ff5e00;
    transition: 0.5s;

}
.top-ancapsu p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 19px;
    font-weight: bold;
    margin-top: 10px;
}


/* Área dos produtos historinhas biblica */

.card-historinhas-biblica{
    border: solid 2px black;
    border-radius: 10px;
    width: calc(48% - 30%);
    background: #ffffff;
    padding: 7px;
    display: flex;
    margin-top: 12px;

position: absolute;
top: 413px; /* Ajuste a posição vertical */
right: 130px; /* Move para o lado direito */

}
.card-historinhas-biblica img{
    width: 175px;
    margin-top: 22px;
    margin-bottom: 16px;
    margin-left: 5px;

}
.card-historinhas-biblica a{
    font-family:'Courier New', Courier, monospace;
    font-size: 15px;
    background-color: rgb(255, 166, 0);
    border-radius: 6px;
    font-weight: bold;
    padding: 10px;
    margin-left: 3px;
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    
}
.card-historinhas-biblica a:hover{
    background-color: #ff5e00;
    transition: 0.5s;

}
.top-historinhas-biblica p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}


/* Área dos produtos antagonista */

.card-antagonista{
    border: solid 2px black;
    border-radius: 10px;
    width: calc(48% - 30%);
    background: #ffffff;
    padding: 7px;
    display: flex;
    margin-top: 12px;

position: absolute;
top: 218px; /* Ajuste a posição vertical */
right: 420px; /* Move para o lado direito */

}
.card-antagonista img{
    width: 185px;
    margin-top: 20px;
    margin-bottom: 15px;
    margin-left: -3px;

}
.card-antagonista a{
    font-family:'Courier New', Courier, monospace;
    font-size: 15px;
    background-color: rgb(255, 166, 0);
    border-radius: 6px;
    font-weight: bold;
    padding: 10px;
    margin-left: 3px;
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    
}
.card-antagonista a:hover{
    background-color: #ff5e00;
    transition: 0.5s;

}
.top-antagonista p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Área dos produtos biblia */
.card-biblia{
    border: solid 2px black;
    border-radius: 10px;
    width: calc(48% - 30%);
    background: #ffffff;
    padding: 7px;
    display: flex;
    margin-top: 12px;

position: absolute;
top: 413px; /* Ajuste a posição vertical */
right: 420px; /* Move para o lado direito */

}
.card-biblia img{
    width: 175px;
    margin-top: 5px;
    margin-bottom: 0px;
    margin-left: 2px;

}
.card-biblia a{
    font-family:'Courier New', Courier, monospace;
    font-size: 15px;
    background-color: rgb(255, 166, 0);
    border-radius: 6px;
    font-weight: bold;
    padding: 10px;
    margin-left: 3px;
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    
}
.card-biblia a:hover{
    background-color: #ff5e00;
    transition: 0.5s;

}
.top-biblia p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}


/* Área dos produtos gazeta */
.content {
    flex-grow: 3;
    margin-left: 28%;
    background: #ffffff;
    padding: 20px;
    margin-top:0%;

}
.card-gazeta{
    border: solid 2px black;
    border-radius: 10px;
    width: calc(55% - 29%);
    background: #ffffff;
    padding: 8px;
    display: flex;
    margin-top: 12px;
    margin-bottom: 20px;


}
.card-gazeta img{
    width: 160px;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 5px;

}
.card-gazeta a{
    font-family:'Courier New', Courier, monospace;
    font-size: 15px;
    background-color: rgb(255, 166, 0);
    border-radius: 6px;
    font-weight: bold;
    padding: 10px;
    margin-left: 3px;
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    
}
.card-gazeta a:hover{
    background-color: #ff5e00;
    transition: 0.5s;

}
.top-gazeta p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 19px;
    font-weight: bold;
    margin-top: 10px;
}


/* Área dos produtos gospel */
.content {
    flex-grow: 3;
    margin-left: 28%;
    background: #ffffff;
    padding: 20px;
    margin-top:0%;

}
.card-gospel{
    border: solid 2px black;
    border-radius: 10px;
    width: calc(55% - 29%);
    background: #ffffff;
    padding: 8px;
    display: flex;
    margin-top: 12px;
    margin-bottom: 20px;


}
.card-gospel img{
    width: 165px;
    margin-top: 15px;
    margin-bottom: 10px;
    margin-left: 5px;

}
.card-gospel a{
    font-family:'Courier New', Courier, monospace;
    font-size: 15px;
    background-color: rgb(255, 166, 0);
    border-radius: 6px;
    font-weight: bold;
    padding: 10px;
    margin-left: 3px;
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    
}
.card-gospel a:hover{
    background-color: #ff5e00;
    transition: 0.5s;

}
.top-gospel p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}


/* Rodapé */
.footer {
    background-color: #343a40;
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-left: 25%;
}
.suportt{
    color: white;

}
a.suportt{
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    transition: text-decoration-color 0.3s ease;
}
a.suportt:hover{
    text-decoration-color: white;
}

/* BOLINHA PULSANTE */
.status-indicator {
    display: inline-block;
    width: 10px; /* ajuste aqui se quiser maior/menor */
    height: 10px; /* ajuste aqui se quiser maior/menor */
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    background-color: #00ff00; /* verde padrão (vai mudar via JS) */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0.7);
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}
/* Classe para cor vermelha fora do horário */
.status-offline {
    background-color: red !important;
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.7);
    animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}
.wha{
    margin-bottom: 10px;
}