/*
 Theme Name: Divi Child
 Theme URI: https://genssa.com
 Description: Tema hijo de Divi para el sitio GENSSA SAS
 Author: GENSSA SAS
 Author URI: https://genssa.com
 Template: Divi
 Version: 1.0
*/

/* Agrega aquí tus estilos personalizados
/* Contenedor de botones */
.social-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start; /* Alinear los botones a la izquierda */
    margin-top: 20px;
}

/* Botones circulares */
.social-share-buttons a {
    display: flex;
    align-items: center; /* Centrar íconos verticalmente */
    justify-content: center; /* Centrar íconos horizontalmente */
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Forma circular */
    text-decoration: none;
    font-size: 24px; /* Tamaño del ícono */
    color: #fff;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

/* Efecto hover: Ampliar y sombra */
.social-share-buttons a:hover {
    transform: scale(1.1); /* Ampliar ligeramente */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra al pasar el mouse */
}

/* Colores de cada red social */
.social-button.facebook { background-color: #3b5998; }
.social-button.twitter { background-color: #1da1f2; }
.social-button.linkedin { background-color: #0077b5; }
.social-button.email { background-color: #6c757d; }
.social-button.whatsapp { background-color: #25d366; }
.social-button.telegram { background-color: #0088cc; }

