/* Estilos para o Footer */
.footer {
    background-color: var(--cor-escura);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    z-index: 1;
}

.footer:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    z-index: 1;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: auto;
    max-height: 150px;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    animation: pulse 3s infinite ease-in-out;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.footer-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.especialidades .badge {
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--cor-principal) !important;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.especialidades .badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: var(--cor-principal);
    color: white;
    transform: translateY(-5px);
}

.footer-social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-icon.whatsapp:hover {
    background-color: #25D366;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--cor-principal);
    bottom: -10px;
    left: 0;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 14px;
    color: var(--cor-principal);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    margin-right: 15px;
    color: var(--cor-principal);
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-designer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-designer a {
    color: var(--cor-principal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-designer a:hover {
    color: white;
}

@media (max-width: 991.98px) {
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
