#footer-container-custom {
    background-color: #014a7d;
    padding: 20px;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 450px; 
    margin-bottom: 15px;
}

.contact-info {
    gap: 10px; /* Espaçamento entre ícone e números */
}

#custom-menu-footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;    
}

#custom-menu-footer .footer-menu li {
    margin: 0; 
}

#custom-menu-footer .footer-menu li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    padding: 5px 10px; 
}

#custom-menu-footer .footer-menu li a:hover {
    color: #ccc; 
}

#custom-menu-footer .footer-menu li.mx-3 {
    margin: 0 15px; 
}


.contact-link {
    position: relative;
    color: white;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
}


.contact-link:hover {
    color: #fff; 
    text-decoration: underline;
    border-radius: 3px; 
    background-color: transparent; 
}

.contact-link::after {
    content: "Clique e ligue";  
    position: absolute;
    bottom: -25px;  
    left: 50%;  
    transform: translateX(-50%); 
    background-color: rgba(0, 0, 0, 0.9);
    color: white;  
    padding: 5px 10px;  
    border-radius: 5px;  
    font-size: 12px;  
    font-weight: 700;
    opacity: 0; 
    transition: opacity 0.3s ease;  
    pointer-events: none;  
    white-space: nowrap;  
    z-index: 10;  
}

.contact-link:hover::after {
    opacity: 1; 
}


.contact-link i {
    color: white;
    font-size: 16px;
    margin-right: 5px;
}

#custom-icon-phone {
    font-size: 35px;
    font-weight: bold; 
    flex-shrink: 0;  
}

#custom-icon-map {
    font-size: 35px;
    font-weight: bold; 
    flex-shrink: 0; 
}

#custom-icon-cellphone {
    font-size: 15px;
    font-weight: bold; 
    flex-shrink: 0; 
    margin-right: 8px;
}

.social-icons {
    font-size: 22px;
    font-weight: bold; 
    flex-shrink: 0;
    gap: 15px; 
}

.footer-copyright {
    background-color: #67c0ba; 
    color: #fff; 
    font-size: 12px; 
    padding: 5px 0; 
}

.footer-copyright p {
    margin: 0; 
    line-height: 1.5; 
}

#custom-text-footer {
    width: 200px;
    font-size: 1.2rem; 
    font-weight: bold;
}

#custom-text-footer-map {
    width: 200px;
    font-size: 1.2rem; 
    font-weight: bold;
    max-width: 400px; 
    line-height: 1.5; 
}


#custom-contact-footer {
    display: flex; 
    text-align: left; 
    flex-direction: column; 
    gap: 1rem; 
}

#custom-contact-footer .contact-info,
#custom-contact-footer .email-info,
#custom-contact-footer .map-info {
    display: flex;
    align-items: flex-start; 
    gap: 1rem; 
}


#social-contacts a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;
    font-size: 25px;
    margin-right: 10px;
}


#social-contacts a::after {
    content: ''; 
    position: absolute;
    bottom: -25px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}


#social-contacts a:hover::after {
    opacity: 1;
}


#social-contacts a[href*="instagram"]::after {
    content: 'Instagram';
}

#social-contacts a[href*="linkedin"]::after {
    content: 'LinkedIn';
}

#social-contacts a[href*="youtube"]::after {
    content: 'YouTube';
}

#social-contacts a[href*="facebook"]::after {
    content: 'Visite Nossa Página no Facebook';
}








