/* ========================================
   PROFESSIONAL FOOTER
   Bemfica Machado | Contact Page Footer
   ======================================== */

.professional-footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark-secondary) 100%);
    color: var(--text-light);
    padding: 3.2rem 0 2.4rem;
    margin-top: 4.8rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.professional-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Vertical Logo Space */
.footer-logo-space {
    width: 112px;
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.05);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(1.2) contrast(1.1);
    transform: scale(1.02);
}

/* Dividing Line */
.footer-divider {
    width: 160px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.6) 50%, transparent 100%);
    margin-bottom: 2rem;
}

/* Copyright */
.footer-copyright {
    opacity: 0.9;
}

.footer-copyright p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .professional-footer {
        padding: 2.4rem 0 2rem;
        margin-top: 3.2rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-logo-space {
        width: 96px;
        height: 128px;
        margin-bottom: 1.6rem;
    }

    .footer-divider {
        width: 120px;
        margin-bottom: 1.6rem;
    }

    .footer-copyright p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .professional-footer {
        padding: 2rem 0 1.6rem;
        margin-top: 2.4rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-logo-space {
        width: 80px;
        height: 112px;
        margin-bottom: 1.2rem;
    }

    .footer-divider {
        width: 96px;
        margin-bottom: 1.2rem;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }
}
