#footerSection {
    position: relative;
    overflow: hidden;
    min-height: 100px;
    background:
        radial-gradient(circle at 15% 20%, rgba(57, 135, 91, .5), transparent 35%),
        radial-gradient(circle at 88% 75%, rgba(4, 43, 29, .72), transparent 38%),
        #174d35;
    color: #fff;
}

#footerSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #edd692, transparent);
}

#footerInfo {
    --footer-gold: #dfc172;
    --footer-muted: rgba(255, 255, 255, .68);
    padding-top: 52px;
    padding-bottom: 20px;
}

#footerInfo .footer-main {
    display: grid;
    grid-template-columns: 1.15fr .9fr 1fr;
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
    padding-bottom: 38px;
}

#footerInfo .footer-logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

#footerInfo .footer-perfecta-logo {
    width: min(170px, 48%);
    max-height: 72px;
}

#footerInfo .footer-betagro-logo {
    width: 62px;
    max-height: 54px;
}

#footerInfo .footer-logo-divider {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, .25);
}

#footerInfo .footer-brand p,
#footerInfo .footer-social p {
    margin: 0;
    color: var(--footer-muted);
    font-size: .88rem;
    line-height: 1.75;
}

#footerInfo .footer-register {
    padding: 22px;
    border: 1px solid rgba(223, 193, 114, .3);
    border-radius: 20px;
    background: rgba(255, 255, 255, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    text-align: center;
}

#footerInfo .footer-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: var(--footer-gold);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .13em;
}

#footerInfo .footer-register strong {
    display: block;
    margin-bottom: 13px;
    font-size: 1rem;
}

#footerInfo .footer-register-link {
    display: inline-block;
    width: min(240px, 100%);
    transition: filter .2s ease, transform .2s ease;
}

#footerInfo .footer-register-link:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

#footerInfo .footer-register-link img {
    display: block;
    width: 100%;
}

#footerInfo .footer-social-title {
    display: block;
    margin-bottom: 7px;
    color: var(--footer-gold);
    font-size: 1rem;
    font-weight: 800;
}

#footerInfo .footer-social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 18px;
}

#footerInfo .footer-social-links a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: .76rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

#footerInfo .footer-social-links a:hover {
    border-color: rgba(223, 193, 114, .65);
    background: rgba(223, 193, 114, .14);
    color: #fff;
    transform: translateY(-2px);
}

#footerInfo .footer-social-links i {
    display: grid;
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--footer-gold);
    color: #174d35;
    font-size: .76rem;
    place-items: center;
}

#footerInfo .footer-social-links i img {
    display: block;
    width: 17px;
    height: 17px;
}

#footerInfo .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .5);
    font-size: .73rem;
}

#footerInfo .footer-bottom a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
}

#footerInfo .footer-bottom a:hover {
    color: var(--footer-gold);
}

#footerInfo .footer-bottom i {
    margin-left: 6px;
}

@media (max-width: 991.98px) {
    #footerInfo .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    #footerInfo .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    #footerInfo .footer-logo-group {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    #footerInfo {
        padding-top: 38px;
    }

    #footerInfo .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    #footerInfo .footer-brand {
        grid-column: auto;
    }

    #footerInfo .footer-register {
        padding: 18px;
    }

    #footerInfo .footer-social {
        text-align: center;
    }

    #footerInfo .footer-social-links a {
        justify-content: center;
    }

    #footerInfo .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
