/* Contenedor principal fijo en inferior izquierdo */
.social-floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

/* Botón principal */
.social-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1e4356;
    color: white;
    border: none;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-main-btn:hover {
    background-color: #2c2fa5;
    /*background-color: #006a9f;*/
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

/* Botones sociales individuales */
.social-btns {
    position: absolute;
    bottom: 70px;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
}

.social-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}

/* Colores específicos para cada red social */
.share-clipboard { background-color: #6c757d; }
.share-twitter { background-color: #55acee; }
.share-facebook { background-color: #3b5998; }
.share-linkedin { background-color: #0082ca; }
.share-whatsapp { background-color: #25d366; }

/* Estilos para el tooltip de confirmación */

.tooltip .tooltiptext {
    visibility: hidden;
    width: 80px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 2px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    /*left: 50%;*/
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px ;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip.show .tooltiptext {
    visibility: visible;
    opacity: 1;
}
/* Ocultar tooltips vacíos incluso cuando tienen la clase show */
.tooltip .tooltiptext:empty {
    display: none !important;
}



/* Responsive para móviles */
@media only screen and (max-width: 600px) {
    .social-floating-container {
        bottom: 20px;
        left: 20px;
    }
    
    .social-main-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}