/* ===========================
   ESTILOS BASE E RESET
   =========================== */

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #140f22;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

/* Seções - Removido padding global para permitir controle específico */
section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
}

/* Garante que o conteúdo principal ocupe o espaço restante, empurrando o rodapé para o final da página */
main {
    flex-grow: 1;
}

/* Força a remoção de bordas e sombras indesejadas */
.main-footer {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Remove qualquer padding ou margin extra do body e html */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}



/* Cores personalizadas para ícones Font Awesome */
.fas.fa-dragon,
.fas.fa-star,
.fas.fa-sync-alt,
.fas.fa-flag,
.fas.fa-coins,
.fas.fa-users {
    color: #d4af37;
}


