/* Customizações do tema comercial */

/* Menu sticky com backdrop-filter ao invés de fundo branco */
.navigation.navbar-sticky {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Logo e links do menu mantêm visibilidade no sticky */
.navigation.navbar-sticky .navbar-brand img {
    filter: invert(1);
    -webkit-filter: invert(1);
}

.navigation.navbar-sticky .nav-link {
    color: #333 !important;
}

.navigation.navbar-sticky .nav-link:hover,
.navigation.navbar-sticky .nav-link.active {
    color: #9f55ff !important;
}

/* Cards de Redes Sociais Modernos */
.social-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
    border-color: transparent;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.social-icon i {
    font-size: 1.75rem;
    color: white;
}

.social-content {
    flex: 1;
    min-width: 0;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.25rem;
}

.social-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.social-verified {
    font-size: 0.875rem;
    color: #1877f2;
}

.social-handle {
    display: block;
    font-size: 0.875rem;
    color: #65676b;
    margin-bottom: 0.625rem;
}

.social-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #65676b;
}

.social-stats strong {
    color: #1a1a1a;
    font-weight: 600;
}

.social-cta {
    font-weight: 600;
    transition: all 0.2s ease;
}

/* Facebook Card */
.facebook-card .social-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.facebook-card:hover {
    box-shadow: 0 12px 32px rgba(24, 119, 242, 0.25);
}

.facebook-card:hover .social-cta {
    color: #1877f2;
}

/* Twitter Card */
.twitter-card .social-icon {
    background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%);
}

.twitter-card:hover {
    box-shadow: 0 12px 32px rgba(29, 161, 242, 0.25);
}

.twitter-card:hover .social-cta {
    color: #1da1f2;
}

/* Responsivo */
@media (max-width: 767px) {
    .social-card {
        padding: 1rem;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
    }
    
    .social-icon i {
        font-size: 1.5rem;
    }
    
    .social-name {
        font-size: 1rem;
    }
    
    .social-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
    }
}
