/* Footer Styles - Loja Guedez Refined */
.site-footer {
    background: linear-gradient(160deg, #0a192f 0%, #0d2137 40%, #112240 100%);
    color: var(--color-white);
    padding: 56px 0 24px;
    font-size: 0.92rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

/* Subtle ambient glow */
.site-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(235, 133, 52, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Footer Grid — 3 Columns */
.footer-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Widget Titles */
.footer-widget h3 {
    color: var(--color-white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #eb8534, rgba(235, 133, 52, 0.3));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-widget:hover h3::after {
    width: 50px;
}

/* Menu Lists */
.footer-menu-list,
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li,
.footer-widget ul li {
    margin-bottom: 0;
}

.footer-menu-list li a,
.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 5px 0;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    position: relative;
}

.footer-menu-list li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #eb8534;
    margin-right: 0;
    transition: all 0.25s ease;
}

.footer-menu-list li a:hover::before {
    width: 12px;
    margin-right: 8px;
}

.footer-menu-list li a:hover,
.footer-widget ul li a:hover {
    color: #eb8534;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    color: #eb8534;
    margin-top: 2px;
    opacity: 0.85;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
    color: #eb8534;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-icon:hover {
    background: rgba(235, 133, 52, 0.12);
    color: #eb8534;
    border-color: rgba(235, 133, 52, 0.3);
    transform: translateY(-2px);
}

.social-whatsapp:hover {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

/* Copyright / Site Info */
.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/* Gradient separator above copyright */
.site-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(235, 133, 52, 0.4), transparent);
}