/* Estilos específicos para a página de Gestão de Redes Sociais */
#social-hero .hero-content {
    width: 500px;
    /* max-width: 600px; */
}

.social-section {
    padding: 50px 0;
}

.tech-tabs ion-icon {
    margin: 0 auto;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.platform-card img {
    height: 60px;
    max-width: 100%;
    margin-bottom: 20px;
    object-fit: contain;
}

.platform-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.platform-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-badge {
    background: #f8f9ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-badge ion-icon {
    color: #5b6bf0;
}

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}