/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pulse {
    animation: pulse 1s;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0), 
                 0 0 10px rgba(255, 255, 255, 0), 
                 0 0 15px rgba(255, 255, 255, 0);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(0, 190, 92, 0.2), 
                     0 0 10px rgba(0, 190, 92, 0.2), 
                     0 0 15px rgba(0, 190, 92, 0.2);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(0, 190, 92, 0.2), 
                     0 0 20px rgba(0, 190, 92, 0.2), 
                     0 0 30px rgba(0, 190, 92, 0.2);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0), 
                     0 0 10px rgba(255, 255, 255, 0), 
                     0 0 15px rgba(255, 255, 255, 0);
    }
}


/* Estilos gerais */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(0deg, #121212 0%, #1f1f1f 100%);
    min-height: 100vh;
    color: #e0e0e0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Cabeçalho */
.logo {
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    background-color: #1f1f1f;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #ffffff;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #000000;
}

.result-title-main {
    margin: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Título */
.result-title-main h1 {
    font-size: rem;
    color: #ffffff;
    text-align: center;
}

#siteName {
    color: #00be5b;
    text-decoration: underline;
    text-transform: uppercase;
    text-underline-offset: 5px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

/* Informações da loja */
.wrap-store-info {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
    width: 50%;
}

.store-info {
    margin-bottom: 20px;
}

.store-info h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.store-info p {
    font-size: 1rem;
    color: #b0b0b0;
}
.resultado {
    margin-top: 20px;
    margin-bottom: 10px
}
.linear-black {
    padding: 20px;
}

/* Lista de resultados */
.result-list {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    width: 50%;
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
    border: 1px solid #2c2c2c;
    padding: 15px 20px;
    border-radius: 10px;
    background-color: #1e1e1e;
}


.result-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.result-title {
    font-size: 1.125rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    width: 25%;
}

.result-title i {
    margin-right: 8px;
    color: #00be5b;
    font-size: 1.25rem;
}

.result-status {
    font-size: 1rem;
    border: 1px solid #00be5b;
    background-color: #00be5c2b;
    font-weight: bold;
    text-align: center;
    width: 20%;
    padding: 5px 0;
    border-radius: 100px;
    color: #fff;
}

.result-item-message {
    font-size: 0.875rem;
    color: #b0b0b0;
    width: 100%;
}

.result-item-message small {
    display: block;
    width: 200px;
}

/* Votos */
.votes-resume {
    font-size: 1.5rem;
    margin-top: 10px;
    text-align: right;
    color: #00be5b;
}

.result-status-message {
    width: 50%;
    text-align: right;
}

.votes-resume p {
    font-size: 2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .result-title-main h1 {
        font-size: 1.2rem;
    }

    .result-list {
        width: 100%;
    }

    .wrap-store-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
        width: 100%;
    }

    .store-info {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .siteNameHeading {
        
    }

    .siteNameHeading {
        font-size: 1rem;
    }

    .result-item-header {
        flex-direction: column;
        gap: 15px;
    }

    .result-title {
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .result-status {
        width: 100%;
        text-align: center;
    }

    .result-status-message {
        width: 100%;
        text-align: center;
    }
    


    h1 span {
        font-size: large;
    }
}

/* Cores para diferentes níveis de confiabilidade */
.color-red {
    color: #ff4d4d !important; /* Vermelho */
}

.color-orange {
    color: #ffa500 !important; /* Laranja */
}

.color-green {
    color: #00be5b !important; /* Verde */
}

