* {
    box-sizing: border-box;
}

body{
    background-color: #2a2a2a;
    display: flex;
    align-items:  center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    max-width: 100vw;
    font-family: 'Comic Neue', cursive;
    overflow: hidden;
    color: white; /* Adicionado para legibilidade geral */
    margin: 0;
    padding: 0;
}

header{
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    min-height: 20vh;
    padding: 15px 20px;
    box-sizing: border-box;
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

header h1{
    color: white;
    font-size: 42px;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        2px 4px 8px rgba(0, 0, 0, 0.8);
    margin: 0 0 10px 0;
    padding: 0;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
}

header h2{
    color: #ffaa00;
    font-size: 18px;
    text-shadow: 
        0 0 8px rgba(255, 170, 0, 0.6),
        1px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0 10px 0 0;
    padding: 0;
    text-align: center;
    font-weight: bold;
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}

header ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    color: white;
    margin: 0;
    padding: 0;
    gap: 15px;
}

header li{
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.statusItem{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.8) 0%, rgba(40, 40, 40, 0.8) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.statusItem:hover{
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.9) 0%, rgba(60, 60, 60, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.statusLabel{
    color: #cccccc;
    font-weight: 500;
}

.statusValue{
    color: #ffaa00;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 170, 0, 0.5);
}

.statusItem[data-status="pedras"] .statusValue{
    color: #4a9eff;
    text-shadow: 0 0 8px rgba(74, 158, 255, 0.5);
}

.statusItem[data-status="dano"] .statusValue{
    color: #ff6b6b;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

.statusItem[data-status="picareta"] .statusValue{
    color: #51cf66;
    text-shadow: 0 0 8px rgba(81, 207, 102, 0.5);
}

.statusItem[data-status="renascimento"] .statusValue{
    color: #ffd43b;
    text-shadow: 0 0 8px rgba(255, 212, 59, 0.5);
}

#container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    height: 75dvh;
    box-sizing: border-box;
}

ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 10px;
    margin: 0;
    /* width: 100%; */
    /* background-color: red; */
}

li{
   margin: 10px;
}

button{
    background-color: #2a2a2a;
    border: none;
    color: white;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
    border-radius: 20px;
    font-family: 'Comic Neue', cursive;

   
}

button:hover{
   background-color: #252525;
}

button:active{
    transform: scale(0.9);
    background-color: #1c1d1c;
}

article{
    width: 90%;
    display: none; /* Inicia escondido */
    text-align: center; /* Centraliza texto dos articles */
}

img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain; /* Evita que imagens distorçam */
}

/* Animação de mudar cor - usada em múltiplas telas */
@keyframes mudarCor{
    0%{
        color: #ff0000;
    }
    25%{
        color: #00ff00;
    }
    50%{
        color: #f6ff00;
    }
    75%{
        color: #ff0090;
    }
    100%{
        color: #aa00ff;
    }
}

/* Sistema de Notificações */
#notificacoesContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notificacao {
    min-width: 300px;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 0, 0, 0.3);
    font-family: 'Comic Neue', cursive;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: center;
    pointer-events: auto;
    animation: notificacaoEntrar 0.3s ease-out, notificacaoSair 0.3s ease-in 2.7s forwards;
    word-wrap: break-word;
    position: relative;
    overflow: hidden;
}

.notificacao.sucesso {
    background: linear-gradient(135deg, #00cc00 0%, #008800 100%);
    border: 2px solid rgba(0, 255, 0, 0.5);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 255, 0, 0.4);
}

.notificacao.erro {
    background: linear-gradient(135deg, #cc0000 0%, #880000 100%);
    border: 2px solid rgba(255, 0, 0, 0.5);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 0, 0, 0.4);
}

.notificacao.aviso {
    background: linear-gradient(135deg, #ffaa00 0%, #cc8800 100%);
    border: 2px solid rgba(255, 170, 0, 0.5);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 170, 0, 0.4);
}

.notificacao::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes notificacaoEntrar {
    from {
        opacity: 0;
        transform: translateX(400px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes notificacaoSair {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(400px) scale(0.8);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

