#footer03-23 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

#footer03-23::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff4e50, #f9d423);
}

#footer03-23 .container {
    position: relative;
    z-index: 2;
}

#footer03-23 .footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

#footer03-23 .footer-info {
    margin-bottom: 2rem;
}

#footer03-23 .header-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0;
    margin: 0 0 2rem;
    list-style: none;
}

#footer03-23 .header-menu-item {
    position: relative;
}

#footer03-23 .header-menu-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

#footer03-23 .header-menu-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #ff4e50, #f9d423);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#footer03-23 .header-menu-item a:hover {
    color: #f9d423;
}

#footer03-23 .header-menu-item a:hover::after {
    width: 100%;
}

#footer03-23 .social-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

#footer03-23 .soc-item {
    transition: all 0.3s ease;
}

#footer03-23 .soc-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#footer03-23 .soc-item a:hover {
    background: linear-gradient(45deg, #ff4e50, #f9d423);
    box-shadow: 0 10px 20px rgba(249, 212, 35, 0.2);
}

#footer03-23 .socicon {
    color: #fff;
    font-size: 1.5rem;
}

#footer03-23 .copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer03-23 .footer-contact {
    margin-top: 2rem;
    text-align: center;
}

#footer03-23 .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

#footer03-23 .contact-icon {
    font-size: 1.2rem;
    color: #f9d423;
}

.footer-logo {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#footer03-23 .animated-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

#footer03-23 .animated-item:nth-child(1) {
    animation-delay: 0.1s;
}

#footer03-23 .animated-item:nth-child(2) {
    animation-delay: 0.2s;
}

#footer03-23 .animated-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsividade */
@media (max-width: 768px) {
    #footer03-23 .header-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    #footer03-23 .header-menu-item a {
        font-size: 1rem;
    }

    #footer03-23 .social-row {
        gap: 1rem;
    }

    #footer03-23 .soc-item a {
        width: 40px;
        height: 40px;
    }
}

.support-btn {
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background-color: #ffffff;
    color: #000;
    transform: translateY(-2px);
}