/* css/fab.css (VERSÃO COM HOVERS ÚNICOS E ELEGANTES) */

.social-fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--highlight-gradient);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.main-fab:hover {
    transform: scale(1.1);
}

.main-fab.active {
    transform: rotate(45deg);
}

.main-fab img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.social-links-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    transform: scale(0);
    transform-origin: bottom center;
    opacity: 0;
}

.social-links-menu.active {
    transform: scale(1);
    opacity: 1;
}

/* --- Ícones Sociais (Estilo Base) --- */
.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-card);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden; /* Essencial para os efeitos de hover */
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease; /* ADICIONE ESTA LINHA */
}

/* --- Efeitos de Hover Únicos --- */

/* Efeito genérico de flutuar */
.social-link:hover {
    transform: translateY(-5px);
}

/* Efeito de Gradiente para Instagram */
.social-link.insta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    z-index: 1;
    transform: scale(0);
    transition: transform 0.4s ease;
}
.social-link.insta:hover::before {
    transform: scale(1);
}

.social-link.insta:hover i {
    color: #fff; /* Força o ícone a ficar branco sobre o fundo azul */
}

/* Efeito de Preenchimento para LinkedIn */
.social-link.linkedin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0A66C2;
    z-index: 1;
    border-radius: 50%;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.social-link.linkedin:hover::before {
    transform: translateY(0);
}

.social-link.linkedin:hover i {
    color: #fff; /* Força o ícone a ficar branco sobre o fundo azul */
}

.social-link.tiktok:hover {
    background-color: #000000; /* Fundo fica preto */
    border-color: #000000;
}

.social-link.tiktok:hover i {
    color: #fff; /* Ícone fica branco */
    /* Sombra com as cores ciano e magenta da marca, criando o efeito 3D */
    text-shadow: -1px -1px 0 #00f2ea, 2px 2px 0 #ff0050;
}
/* Efeito de Brilho para WhatsApp */
.social-link.whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.social-link.whatsapp:hover i {
    color: #fff; /* Força o ícone a ficar branco sobre o fundo azul */
}

/* Efeito Sutil para Compartilhar */
.social-link.share:hover {
    background-color: var(--gradient-start);
    border-color: var(--gradient-start);
}

.social-link.share:hover i {
    color: #fff; /* Força o ícone a ficar branco sobre o fundo azul */
}