/* Footer Credits Section */
.footer-credits {
    /*background: #7a2ded;*/
    padding: 20px;
    font-size: 0.9rem;
    color: #9cffa8;
}

.credits-top-bar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    margin: 0;
}

.developer-credit {
    color: #d1ff5c; /* Cor do Neocodex Design */
    font-weight: bold;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #a0a0b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.credits-bottom-line {
    text-align: center;
    padding-top: 20px;
}

.credits-bottom-line p {
    margin: 0;
}

/* Logo do footer */
.logo-img-footer {
    width: 160px; /* Ajuste a largura conforme o necessário */
    height: 160px; /* Mantenha a mesma medida para um círculo perfeito */
    border-radius: 50%; /* Faz a imagem ficar redonda */
    object-fit: cover; /* Garante que a imagem preencha o círculo */
    object-position: center; /* Centraliza o conteúdo da imagem */
}

/* ÍCONES SOCIAIS DO FOOTER - Estilo igual à barra lateral */
.footer-section .social-links {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.footer-section .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white !important;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Efeito de fundo para hover */
.footer-section .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Instagram - gradiente igual à barra lateral */
.footer-section .social-links a[href*="instagram"]::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Facebook - azul do Facebook */
.footer-section .social-links a[href*="facebook"]::before {
    background: #1877f2;
}

/* Thumbtack - azul do Thumbtack */
.footer-section .social-links a[href*="thumbtack"]::before {
    background: #00c3ff;
}

/* Nextdoor - verde do Nextdoor */
.footer-section .social-links a[href*="nextdoor"]::before {
    background: #1D8751;
}

/* Hover effects */
.footer-section .social-links a:hover::before {
    opacity: 1;
}

.footer-section .social-links a:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white !important;
}

/* Garantir que o SVG do Nextdoor fique branco */
.footer-section .social-links a[href*="nextdoor"] svg {
    fill: white !important;
}

.footer-section .social-links a[href*="nextdoor"]:hover svg {
    fill: white !important;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .credits-top-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-section .social-links {
        justify-content: flex-start;
    }

    .footer-section .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}