.footer {
            background-color: #f8f8f8;
            padding: 25px 20px;
            font-family: 'Arial', sans-serif;
            border-top: 1px solid #e7e7e7;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .instagram-link {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .instagram-link i {
            color: #075E54;
            font-size: 1.2rem;
        }
        
        .phone-number {
            color: #333;
            font-weight: 600;
        }
        
        .copyright {
            color: #777;
            font-size: 0.9rem;
            text-align: center;
        }
        
        .signature img {
        width: 200px;
        height: auto; /* Mantém a proporção */
        }
        
        /* RESPONSIVIDADE */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .instagram-link, .phone-number, .copyright {
                width: 100%;
                justify-content: center;
            }
            
            .signature img{
                text-align: center;
                justify-content: center;
                place-items: center;
            }
        }