﻿body {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

h1 {
    color: #ff0000;
    text-align: center;
    text-shadow: 2px 2px 2px #450000;

    Started: elapsed time is 0
    New loop started at time 3
    New loop started at time 6
    Ended: elapsed time is 9
}

.frase-destaque {
    text-align: center;
    font-style: italic;
    margin: 10px 0;
    color: #ccc;
}

nav {
    background: #222;
    padding: 15px;
    text-align: center;
    margin: 4px 0;
    border-radius: 2px;
	font-size: 14px;
}

nav a {
    color: #ff5555;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

#mortometro {
    background: #111;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 10px;
    border: 1px solid #450000;
}

.contador {
    margin: 15px 0;
    padding: 5px;
    background: #1a1a1a;
    border-left: 4px solid #8b0000;
}

.contador-total {
    margin-top: 25px;
    padding: 15px;
    background: #2a0000;
    font-size: 1.2em;
    font-weight: bold;
}

.label {
    color: #ff5555;
    margin-right: 10px;
}

/* Estilos para livros/panfletos */
.livro, .panfleto {
    background: #111;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #8b0000;
}

.descricao {
    color: #ccc;
    font-style: italic;
    margin: 5px 0;
}

.botao-download {
    display: inline-block;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    background: #ff0000;
cursor: pointer;
  transition: background-color 0.3s ease;
}

.botao-download:hover {
    background: gray;
}


/* ESTILO PRINCIPAL DOS BLOCKQUOTES */
blockquote.sombrio {
    position: relative;
    padding: 20px 25px;
    margin: 25px 0;
    background: #111111;
    border-left: 4px solid #8b0000;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    line-height: 1.6;
}

/* NÚMERO DO BLOCO */
blockquote.sombrio::before {
    content: attr(data-numero);
    position: absolute;
    top: -10px;
    left: -10px;
    background: #8b0000;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

/* EFEITO DE BRILHO AO PASSAR O MOUSE */
blockquote.sombrio:hover {
    border-left-color: #ff0000;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.7);
}

/* TEXTO DESTACADO */
blockquote.sombrio strong {
    color: #ff5555;
    font-weight: normal;
}

/* LINHA INFERIOR */
blockquote.sombrio::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #8b0000, transparent);
}
