/* 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 shien */
.content {
    flex-grow: 3;
    margin-left: 33%;
    background: #ffffff;
    padding: 30px;
    margin-top: 40px;


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


}
.card-shein img{
    width: 135px;
    margin-top: -30px;
    margin-bottom: -48px;

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

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


/* Área dos produtos shopee */

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


}
.card-shopee img{
    width: 135px;
    margin-top: 5px;
    margin-bottom: -5px;

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

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

/* Área dos produtos mercadolivre */

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

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

}
.card-mercadolivre img{
    width: 125px;
    margin-top: -10px;
    margin-bottom: -22px;
    margin-left: 15px;

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

}
.top-mercadolivre p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 17px;
    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 aliexpress */

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

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


}
.card-aliexpress img{
    width: 135px;
    margin-top: 10px;
    margin-bottom: -2px;
    margin-left: 20px;

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

}
.top-aliexpress p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    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;
}