/* ============================================= */
/* SESSÃO 1: RESET E ESTILOS BASE                */
/* ============================================= */

/* Reset global para evitar barra de rolagem horizontal */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* ============================================= */
/* SESSÃO 2: ESTILOS DO FOOTER                   */
/* ============================================= */

/* Footer principal - compacto e centralizado */
.masonic-footer {
    background: linear-gradient(145deg, #0a1a2a 0%, #112b3f 100%);
    border-top: 2px solid #c9a84c;
    padding: 12px 20px 12px;
    margin-top: 30px;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
    font-family: 'Georgia', 'Times New Roman', serif;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center; /* Centraliza conteúdo inline */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;      /* Centraliza o container */
    text-align: center;
    color: #e0d6b0;
    width: 100%;
    padding: 0 10px;
}

/* ============================================= */
/* SESSÃO 3: DELTA LUMINOSO (APENAS LOGADO)      */
/* ============================================= */

.delta-luminoso {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.triangulo-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px 4px 16px;
    margin: 0 auto;
}

/* Triângulo formado por pseudo-elemento */
.triangulo-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 70px solid rgba(201,168,76,0.15);
    z-index: 1;
    pointer-events: none;
}

.simbolo-altar {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 0 4px rgba(201,168,76,0.5));
    transition: transform 0.2s;
    z-index: 2;
    position: relative;
}

/* Lua com pontas para a direita */
.simbolo-altar.lua {
    transform: scaleX(-1);
    display: inline-block;
}

.simbolo-altar:hover {
    transform: scale(1.1);
}
.simbolo-altar.lua:hover {
    transform: scaleX(-1) scale(1.1);
}

/* ============================================= */
/* SESSÃO 4: TEXTOS DO FOOTER                    */
/* ============================================= */

.footer-description {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #b8c5cf;
    max-width: 600px;
    margin: 5px auto 6px auto;
    padding: 0 10px;
    font-style: italic;
}

.footer-motto {
    font-size: 1rem;
    font-weight: bold;
    color: #d4af37;
    margin: 4px 0 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 2px #00000055;
    word-break: break-word;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #8a9da8;
    margin: 4px 0 0;
}

/* ============================================= */
/* SESSÃO 5: BLOCO DE SUPORTE (VISÍVEL PARA TODOS)*/
/* ============================================= */

.footer-support {
    margin: 6px 0 4px;
    font-size: 0.8rem;
    background: #1e3545aa;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    backdrop-filter: blur(2px);
    border: 1px solid #c9a84c55;
    transition: all 0.2s;
}

.footer-support:hover {
    background: #1e3545;
    border-color: #c9a84c;
}

.support-icon {
    margin-right: 5px;
}

.support-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

.support-link:hover {
    text-decoration: underline;
    color: #e8c95c;
}

/* ============================================= */
/* SESSÃO 6: ÍCONES DECORATIVOS INFERIORES       */
/* ============================================= */

.footer-icons {
    margin-top: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #6b7f8b;
    font-size: 1.1rem;
    opacity: 0.7;
}

.footer-icons i, .footer-icons .letra-g {
    transition: color 0.2s;
}

.letra-g {
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    font-size: 1.3rem;
    margin-left: 2px;
}

.footer-icons i:hover, .footer-icons .letra-g:hover {
    color: #c9a84c;
    opacity: 1;
}

/* ============================================= */
/* SESSÃO 7: RESPONSIVIDADE                      */
/* ============================================= */

@media (max-width: 768px) {
    .masonic-footer {
        padding: 10px 15px 10px;
    }
    
    .simbolo-altar {
        font-size: 1.6rem;
    }
    
    .triangulo-wrapper::before {
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 55px solid rgba(201,168,76,0.15);
    }
    
    .footer-motto {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .footer-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .simbolo-altar {
        font-size: 1.4rem;
    }
    
    .triangulo-wrapper {
        gap: 8px;
        padding: 6px 12px 2px 12px;
    }
    
    .triangulo-wrapper::before {
        border-left: 35px solid transparent;
        border-right: 35px solid transparent;
        border-bottom: 45px solid rgba(201,168,76,0.15);
    }
    
    .footer-motto {
        font-size: 0.8rem;
    }
    
    .footer-support {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    .footer-icons {
        font-size: 1rem;
        gap: 10px;
    }
}

/* ============================================= */
/* FIM DO CSS                                    */
/* ============================================= */