 /* CSS Reset Básico */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo principal do corpo */
body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
}

/* Container principal para o conteúdo */
.container {
    max-width: 800px;
    width: 100%;
    padding: 2rem;
}

/* Cabeçalho */
header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-family: "Bungee", sans-serif;
}

header p {
    font-size: 1.1rem;
    color: #999;
}

/* Lista de mandamentos */
.mandamentos-lista {
    list-style: none;
    counter-reset: mandamento-counter;
}

.mandamentos-lista li {
    counter-increment: mandamento-counter;
    margin-bottom: 3rem;
    padding-left: 4.5rem;
    position: relative;
}

/* Estilização do contador numérico */
.mandamentos-lista li::before {
    content: counter(mandamento-counter);
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #727272;
    line-height: 1;
}

/* Título do mandamento */
.mandamentos-lista li strong {
    display: block;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Texto do mandamento */
.mandamentos-lista li p {
    font-size: 1rem;
    text-align: justify;
}

/* Rodapé */
footer {
    text-align: center;
    margin-top: 5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    color: #555;
    font-size: 0.9rem;
}

.comunidade-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2196F3;
    text-decoration: none;
    border: 1px solid #2196F3;
    padding: .5rem 2rem;
    transition: all 0.3s ease;
}
.comunidade-link:hover {
    background-color: #2196F3;
    color: white;
    text-shadow: 0px 0px 14px #2196F3;
}

/* Media Queries para Responsividade */
@media (max-width: 600px) {
    body {
        padding: 1rem 0.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    header {
        margin-bottom: 3rem;
    }

    .mandamentos-lista li {
        padding-left: 0;
        margin-bottom: 2.5rem;
    }

    .mandamentos-lista li::before {
        position: static;
        display: block;
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #555;
    }
}