/* ===== FOOTER ELEGANTE COM REDES SOCIAIS ===== */
.site-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 44px 0 22px;
    margin-top: 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #2563eb;
    border-radius: 2px;
}

.footer-section p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #a0aec0;
}

/* Menu do footer */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #93c5fd;
    transform: none;
}

/* Redes Sociais - Estilo elegante */
.social-links {
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 40px;
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon svg {
    transition: transform 0.2s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F56040, #FCAF45);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.social-icon:hover svg {
    transform: scale(1.05);
}

/* Estilo específico para Instagram sem hover */
.social-icon.instagram {
    background: rgba(255, 255, 255, 0.06);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #718096;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 32px;
    }
    
    .social-icon {
        padding: 7px 16px;
        font-size: 0.8rem;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .footer-section h3::after {
        width: 30px;
    }
    
    .social-icon span {
        display: inline; /* mantém o texto visível */
    }
}

/* Acessibilidade */
.social-icon:focus-visible {
    outline: 2px solid #e53e3e;
    outline-offset: 2px;
    border-radius: 40px;
}
	
	/* CTA Google Avaliações */
.google-review {
    margin-top: 16px;
}

.google-review a {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: #34a853;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.google-review a:hover {
    background: #2c8e47;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
	
.footer-section p{max-width:34ch}.footer-menu a{padding:2px 0}.site-footer{border-top:1px solid rgba(255,255,255,.08)}
