/*FOOTER*/

footer {
    background: #16222A;
    background: -webkit-linear-gradient(45deg, #1a1a1a, #333333);
    background: linear-gradient(45deg, #1a1a1a, #333333);
    color: white;
    margin-top: 100px;
    border-top: 4px solid #FBB039;
}

footer a {
    color: #fff;
    font-size: 13px;
    transition: all 0.3s ease;
    padding: 2px 0;
}

footer a:hover {
    color: #FBB039;
    text-decoration: none;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid #FBB039;
    display: inline-block;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-link-item {
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
}

.footer-link-item i {
    width: 16px;
    margin-right: 6px;
    color: #FBB039;
}

.working-hours-table {
    color: white;
    width: 100%;
    font-size: 13px;
}

.working-hours-table tr {
    line-height: 1.4;
}

.working-hours-table td:first-child {
    padding-right: 0.5rem;
}

.working-hours-table i {
    color: #FBB039;
    margin-right: 4px;
    font-size: 11px;
}

.closed-day td {
    color: #ff5722;
}

.copy {
    font-size: 11px;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle {
    padding: 1.5rem 0 1rem;
}

/*SOCIAL ICONS*/
ul.social-network {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.social-network {
    margin-top: 0.5rem;
}

.social-network a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-network i {
    font-size: 1rem;
    color: white;
}

.social-network a:hover {
    transform: translateY(-3px);
}

.social-network a.icoFacebook:hover {
    background-color: #3B5998;
}

.social-network a.icoInstagram:hover {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-network a.icoYoutube:hover {
    background-color: #FF0000;
}

.social-network a.icoTiktok:hover {
    background-color: #000000;
}

.scroll-up-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-up-btn.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .footer-pad {
        margin-bottom: 2rem;
    }
    
    .social-network {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-title {
        text-align: center;
        display: block;
    }
}
