/* _content/GV/Pages/Shared/_Layout.cshtml.rz.scp.css */

.whatsapp-float[b-ya3y4exb4i] {
    position: fixed;
    bottom: 35px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #25D366; /* Color oficial de WhatsApp */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-icon-container[b-ya3y4exb4i] {
    width: 28px;
    height: 28px;
}

.whatsapp-svg[b-ya3y4exb4i] {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.whatsapp-float:hover[b-ya3y4exb4i] {
    background-color: #128C7E; /* Verde oscuro al hover */
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
      
/* -------------------------------- */
/* Redes Sociales Verticales Footer */
/* -------------------------------- */
.social-links-vertical[b-ya3y4exb4i] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-link[b-ya3y4exb4i] {
    display: flex;
    align-items: center;
    color: #666 !important; /* Mismo color que el texto normal */
    text-decoration: none !important; /* Sin subrayado */
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

    .social-link:hover[b-ya3y4exb4i] {
        color: #8fc843 !important; /* Color verde al hover */
        background-color: rgba(143, 200, 67, 0.1); /* Fondo muy suave al hover */
        transform: translateX(5px);
        text-decoration: none !important;
    }

    .social-link i[b-ya3y4exb4i] {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e9ecef;
        border-radius: 50%;
        transition: all 0.3s ease;
        color: #666; /* Color del icono */
    }

    .social-link:hover i[b-ya3y4exb4i] {
        background: #8fc843;
        color: #fff !important;
    }



