footer {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    color: rgb(184, 238, 255);
    background: linear-gradient(to bottom, #2c3e50, #1a252f);
    min-height: 80px;
    bottom: 0;
    width: 100%;
    padding: 30px 20px;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    box-shadow: 
        0 -5px 15px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(52, 152, 219, 0.3);
    border: none;
    overflow: hidden;
}

/* Add the neon border effect */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #3498db,
        #00fff2,
        #3498db
    );
    animation: neonBorder 3s linear infinite;
    box-shadow: 
        0 0 10px rgba(52, 152, 219, 0.5),
        0 0 20px rgba(52, 152, 219, 0.3),
        0 0 30px rgba(52, 152, 219, 0.1);
}

@keyframes neonBorder {
    0% {
        left: -100%;
        box-shadow: 
            0 0 10px rgba(52, 152, 219, 0.5),
            0 0 20px rgba(52, 152, 219, 0.3);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(52, 152, 219, 0.8),
            0 0 40px rgba(52, 152, 219, 0.5),
            0 0 60px rgba(52, 152, 219, 0.3);
    }
    100% {
        left: 100%;
        box-shadow: 
            0 0 10px rgba(52, 152, 219, 0.5),
            0 0 20px rgba(52, 152, 219, 0.3);
    }
}

.foo-socials, .foo-pub, .tributo {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foo-socials:hover, .foo-pub:hover, .tributo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer p {
    margin: 15px 0;
    font-size: clamp(12px, 2vw, 17px);
    font-family: Designer, sans-serif;
    line-height: 1.6;
    color: #ecf0f1;
}

footer a { 
    font-size: clamp(11px, 1.5vw, 13px);
    color: #3498db;
    text-decoration: none;
    position: relative;
    padding: 2px 0;
    display: inline-block;
}

footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0px;
    left: 0;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transition: width 0.3s ease;
}

footer a:hover {
    color: #8fccf5;
}

footer a:hover::after {
    width: 100%;
}

footer a i {
    margin-left: 10px;
    font-size: 1.1em;
    color: #3498db;
    transition: transform 0.3s ease;
}

footer a:hover i {
    transform: translateX(5px) rotate(2deg);
    transform: scale(1.1);
    color: #4a86f5;
}

.foo-socials a {
    display: inline-flex;
    align-items: center;
    margin: 8px 0;
}

.foo-pub {
    display: flex;
    justify-content: center;
    text-align: center;
}

.tributo {
    display: flex;
    justify-content: end;
    text-align: end;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    footer {
        padding: 25px 15px;
        gap: 20px;
    }

    .foo-socials, .foo-pub, .tributo {
        min-width: 200px;
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 10px;
    }

    .foo-socials, .foo-pub, .tributo {
        width: 90%;
        max-width: 400px;
        margin: 10px 0;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    footer a i {
        margin-left: 8px;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 15px 5px;
    }

    .foo-socials, .foo-pub, .tributo {
        width: 95%;
        padding: 12px;
    }

    footer p {
        font-size: clamp(11px, 1.8vw, 15px);
        margin: 10px 0;
    }

    footer a {
        font-size: clamp(10px, 1.5vw, 12px);
    }
}