/* Estilos Gerais do Site */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121416;
    color: #e1e6eb;
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    background-color: #1a1d20;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #2d3238;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Cabeçalho */
.header {
    border-bottom: 2px solid #ff9f43;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    color: #ff9f43;
    font-size: 24pt;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    color: #8b949e; 
    margin: 0; 
    font-size: 12pt; 
    font-weight: bold; 
    letter-spacing: 2px; 
    text-transform: uppercase;
}

/* Informações Meta */
.meta-info {
    background-color: #24292e;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ff9f43;
    margin-bottom: 25px;
}

.meta-info p {
    margin: 5px 0;
    font-size: 11pt;
}

.meta-label {
    font-weight: bold;
    color: #ff9f43;
}

/* Títulos e Parágrafos */
h2 {
    color: #ffffff;
    font-size: 14pt;
    margin-top: 35px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #2d3238;
    padding-bottom: 5px;
}

p {
    font-size: 11pt;
    color: #c8d1d9;
    margin: 0 0 15px 0;
}

ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

li {
    font-size: 11pt;
    color: #c8d1d9;
    margin-bottom: 10px;
}

/* Destaques de Texto */
.highlight {
    font-weight: bold;
    color: #ffffff;
}

.text-danger {
    color: #ff6b6b;
}

.text-accent {
    color: #ff9f43;
}

.text-success {
    color: #2ecc71;
}

.proibido-title {
    color: #ff6b6b;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.cuidado-title {
    color: #f1c40f;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Tabelas */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 10.5pt;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #2d3238;
}

th {
    background-color: #24292e;
    color: #ff9f43;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10pt;
}

tr:hover {
    background-color: #202428;
}

/* Badges / Crachás de Status */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 9pt;
    text-transform: uppercase;
}

.badge-permitido {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.badge-proibido {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.badge-aviso {
    background-color: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
    border: 1px solid #f1c40f;
}

/* Checklist */
.checklist-section h2 {
    color: #ff9f43;
    margin-top: 40px;
    border-bottom: none;
}

.checklist {
    list-style: none;
    padding-left: 0;
    background-color: #1f2327;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #2d3238;
}

.checklist li {
    display: block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.checklist li::before {
    content: "☐";
    position: absolute;
    left: 5px;
    top: 0;
    color: #ff9f43;
    font-size: 14pt;
    line-height: 1;
}

.checklist li:last-child {
    margin-bottom: 0;
}

/* Caixa de Alerta Final */
.alliance-notice {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    border-left: 5px solid #e74c3c;
    padding: 20px;
    border-radius: 6px;
    margin-top: 35px;
}

.alliance-notice h3 {
    color: #e74c3c;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-size: 12pt;
}

.alliance-notice p {
    margin: 0;
    font-style: italic;
    color: #e1e6eb;
}

/* Rodapé */
.page-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2d3238;
    color: #8b949e;
    font-size: 10.5pt;
}

.page-footer span {
    color: #ff9f43;
    font-weight: bold;
    letter-spacing: 0.5px;
}