/* 
 * Mix Center - Footer Reference Styles
 * Estilos para o footer baseado na imagem de referência
 */

/* Estilo base para o footer */
.footer {
    background-color: #222222;
    color: white;
    padding: 30px 0 10px;
    position: relative;
    box-shadow: none;
    border-top: none;
}

/* Conteúdo do footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    padding: 0;
}

/* Estilo comum para todos os blocos do footer */
.footer-block {
    padding: 15px;
    text-align: left;
}

/* Títulos dos blocos */
.footer-block h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--mix-yellow);
    text-align: left;
}

/* Listas nos blocos */
.footer-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-block ul li {
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.footer-block ul li i {
    margin-right: 5px;
    color: var(--mix-bright-red);
}

.footer-block ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-block ul li a:hover {
    color: var(--mix-yellow);
}

/* Bloco do logotipo */
.footer-logo-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagem do logo no footer */
.footer-logo-img {
    max-width: 150px;
    height: auto;
}

/* Bloco de redes sociais */
.footer-social-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Ícones de redes sociais */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--mix-yellow);
    color: #222222;
}

/* Botão de download do aplicativo */
.btn-app-download-unified {
    display: inline-block;
    background-color: var(--mix-bright-red);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.btn-app-download-unified:hover {
    background-color: var(--mix-yellow);
    color: #222222;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--mix-bright-red);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.back-to-top:hover {
    background-color: var(--mix-yellow);
    color: #222222;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo-block {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}