/* footer.css - Rodapé com contatos pessoais */

.main-footer {
    background: linear-gradient(135deg, #0f1423 0%, #181e32 100%);
    color: #e8dcc8;
    margin-top: 3rem;
    border-top: 2px solid #ff8c2e;
    position: relative;
}

/* Container principal */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

/* Seções */
.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffb347;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff9a44, #ff6a1a);
    border-radius: 2px;
}

.footer-section p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #c8b896;
    margin: 0.5rem 0;
}

.footer-note {
    font-size: 0.8rem;
    font-style: italic;
    color: #ffb347 !important;
    margin-top: 0.3rem !important;
}

/* Informações de contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.3rem 0;
    font-size: 0.85rem;
}

.contact-icon {
    font-size: 1rem;
    filter: drop-shadow(0 0 2px rgba(255, 140, 46, 0.5));
}

.contact-info a {
    color: #c8b896;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.contact-info a:hover {
    color: #ffb347;
    transform: translateX(3px);
    display: inline-block;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 140, 46, 0.25);
    margin-top: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    margin: 0.2rem 0;
    font-size: 0.8rem;
    color: #a89874;
}

.footer-dev {
    font-size: 0.75rem !important;
    opacity: 0.7;
    margin-top: 0.3rem !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .contact-info a,
    .contact-item {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
}