/* ============================================
   FOOTER - ESTILIZADO
   ============================================ */

.footer-section {
    background: linear-gradient(135deg, #2e1809 0%, #1f1005 50%, #2e1809 100%);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

/* ===== DECORAÇÃO DE FUNDO ===== */
.footer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 184, 141, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(214, 184, 141, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-section .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   COLUNA 1 - LOGO
   ============================================ */

.footer-brand {
    position: relative;
}

.footer-logo {
    color: #d6b88d;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d6b88d;
    opacity: 0.4;
}

.footer-description {
    color: #fff;
    line-height: 1.8;
    font-size: 15px;
    max-width: 320px;
    margin-top: 16px;
    margin-bottom: 20px;
}

/* ===== REDES SOCIAIS ===== */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 0;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 16px;
}

.social-link:hover {
    background: #572b07;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(87, 43, 7, 0.3);
    border-color: #572b07;
}

.social-link i {
    font-size: 16px;
}

/* ============================================
   COLUNA 2 - LINKS
   ============================================ */

.footer-title {
    color: #d6b88d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #d6b88d;
    opacity: 0.3;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-links a::before {
    content: '›';
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d6b88d;
    transform: translateX(6px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   COLUNA 3 - CONTATO
   ============================================ */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
}

.footer-contact-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    padding: 6px 0;
    border-radius: 8px;
    position: relative;
}

.footer-contact-link i {
    color: #d6b88d;
    font-size: 18px;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-contact-link:hover {
    color: #d6b88d;
    transform: translateX(4px);
}

.footer-contact-link:hover i {
    transform: scale(1.15);
    color: #fff;
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 50px;
    padding-top: 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #777;
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: #777;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d6b88d;
}

.footer-bottom-links .divider {
    color: #555;
    font-size: 13px;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 991px) {
    .footer-section {
        padding: 50px 0 30px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-title {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 40px 0 24px;
    }

    .footer-section::before,
    .footer-section::after {
        display: none;
    }

    .footer-logo {
        font-size: 26px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-title {
        font-size: 16px;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .footer-title::after {
        width: 24px;
    }

    .footer-links a,
    .footer-contact-link {
        font-size: 13px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-bottom-links {
        gap: 10px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .footer-contact-link i {
        font-size: 16px;
        width: 20px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 30px 0 20px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-title {
        font-size: 15px;
        margin-top: 20px;
    }

    .footer-links a,
    .footer-contact-link {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .footer-bottom-links a {
        font-size: 11px;
    }

    .social-link {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}