/* ===============================
   Rodapé Global - Topazioverse
   Tema: Sombrio Místico
=============================== */

.footer {
    margin-top: 80px;
    background: rgba(10, 0, 20, 0.7);
    border-top: 1px solid rgba(150, 70, 255, 0.25);
    padding: 50px 20px 20px;
    backdrop-filter: blur(3px);
    box-shadow: 0 0 25px rgba(140, 60, 255, 0.2);
    color: #d8caff;
    position: relative;
    z-index: 5;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

/* Títulos */
.footer-section h3,
.footer-section h4 {
    color: #c89bff;
    margin-bottom: 15px;
    text-shadow: 0 0 8px #7a35ff;
}

/* Texto */
.footer-section p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Lista */
.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 6px 0;
}

.footer-section ul li a {
    color: #d9caff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #a060ff;
}

/* Redes Sociais */
.social a {
    color: #d8caff;
    margin-right: 10px;
    font-size: 1.3rem;
    text-decoration: none;
    transition: 0.3s;
}

.social a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #9b4fff;
}

/* Parte inferior */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(150, 70, 255, 0.2);
    font-size: 0.9rem;
    color: #c9b3ff;
}