.site-footer {
    position: relative;
    background: #000;
    color: #fff;
    padding: 80px 20px 40px;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center top,
        rgba(120,0,0,0.35),
        rgba(0,0,0,0.95) 70%
    );
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.footer-brand {
    display: flex;
    flex-direction: column;  
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    text-align: center;
}



.footer-name {
    display: block;
    max-width: 260px;
    height: auto;
    margin-top: -300;
}



.footer-brand h2 {
    font-size: 2.2rem;
    letter-spacing: 0.3em;
    font-weight: 600;
}


.footer-socials {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-socials a {
    color: white;
    font-size: 3.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    color: #b00000;
    transform: scale(1.15);
}


.footer-bottom {
    font-size: 0.9rem;
    opacity: 0.7;
}


@media (max-width: 600px) {
    .footer-socials {
        gap: 25px;
    }

    .footer-socials a {
        font-size: 2.8rem;
    }

    .footer-brand h2 {
        font-size: 1.6rem;
    }
}

@media (min-width: 900px) {

    .footer-socials {
        gap: 40px;
    }

    .footer-socials a {
        font-size: 3.5rem;
    }

    .footer-brand h2 {
        font-size: 2.2rem;
    }
}

