/* === Reset Básico === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === Body e Layout Geral === */
body {
    font-family: 'Montserrat', sans-serif;
    color: #B88A51; /* Dourado envelhecido */
    background-color: #1B1612; /* Fundo pedra escura */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Container Principal === */
.contentfull {
    max-width: 1185px;
    width: 100%;
    background: rgba(0, 0, 0, 0.85); /* Fundo preto translúcido */
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 0 18px rgba(198, 107, 40, 0.6);
    color: #B88A51;
}

/* === Títulos === */
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: 1px;
    color: #C66B28; /* Dourado queimado */
    text-shadow: 0 0 5px rgba(198, 107, 40, 0.4);
    margin-bottom: 0.5em;
    margin-top: 2.5em; /* espaço maior antes dos títulos para separar seções */
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    line-height: 1.1;
    margin-top: 0; /* remove espaço extra no topo */
    margin-bottom: 30px;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    padding-bottom: 8px;
    border-bottom: 2px solid #800000; /* Bordô */
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

/* === Parágrafos === */
p {
    margin: 1.5em 0; /* mais espaço entre parágrafos para melhorar a leitura */
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: #E4D1BE; /* Bege claro */
}

/* === Listas com Ícones Personalizados === */
ul.bbcode-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5em; /* aumenta espaçamento acima da lista */
    margin-bottom: 2em; /* espaço maior após a lista */
}

ul.bbcode-list li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 1.2em; /* espaço maior entre itens */
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.6;
}

/* Ícone da lista (antes do texto) */
ul.bbcode-list li::before {
    content: "🗡️";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #C66B28; /* Dourado queimado */
    font-size: 1.3rem;
    line-height: 1;
}

/* === Links === */
a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover,
a:focus {
    color: #FF7300; /* Laranja flamejante */
    text-decoration: underline;
    outline: none;
}

/* === Texto Centralizado e Destaque === */
.center-text {
    text-align: center;
    margin-top: 3em; /* mais espaçamento acima */
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 700;
    color: #800000; /* Bordô */
    text-shadow: 0 0 6px rgba(128, 0, 0, 0.4);
    line-height: 1.5;
}

/* === Responsividade === */
@media (max-width: 768px) {
    body {
        padding: 30px 15px;
    }

    .contentfull {
        padding: 20px 25px;
        margin: 0 10px;
    }

    h1 {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }

    h2 {
        font-size: 1.5rem;
    }

    p,
    ul.bbcode-list li,
    .center-text {
        font-size: 1rem;
    }

    ul.bbcode-list li {
        padding-left: 32px;
    }

    ul.bbcode-list li::before {
        font-size: 1.1rem;
    }
}

/* === Melhoria para alta resolução e telas pequenas (opcional) */
@media (max-width: 400px) {
    .contentfull {
        padding: 15px 20px;
        border-radius: 10px;
    }
}
.highlight-text {
  background-color: rgba(198, 107, 40, 0.12); /* leve fundo dourado translúcido */
  border-left: 5px solid #C66B28;              /* barra dourada à esquerda para destaque */
  padding: 20px 25px;
  margin: 2.5em 0;                             /* espaço amplo acima e abaixo */
  border-radius: 8px;
  line-height: 1.75;
  font-size: 1.1rem;
  color: #F5E8C7;                              /* bege claro para contraste */
  box-shadow: 0 0 8px rgba(198, 107, 40, 0.3);
}
