/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 18 2025 | 19:45:28 */
/*** Inicia AVSYS - Botones Contacto ***/
.floating-buttons {
    position: fixed;
    bottom: 82px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-button {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    position: relative;
	transition: background-color 0.3s ease;
}

.floating-button::before {
    position: absolute;
}

.whatsapp {
    background-color: #25D366;
}

.whatsapp:hover {
    background-color: #20b758;
}

.whatsapp::before {
    font-family: "FontAwesome"; /* Divi no lo Tiene */
    content: "\f232";
	font-size: 26px;
}

.email {
    background-color: #007BFF;
}

.email:hover {
    background-color: #006ee4;
}

.email::before {
    font-family: 'etModules';
    content: '\e076';
}

.phone {
    background-color: #007BFF;
    display: none;
}

.phone:hover {
    background-color: #006ee4;
}

.phone::before {
    font-family: 'etModules';
	font-size: 24px;
    content: '\e090';
}

@media (max-width: 768px) {
.floating-buttons {
    flex-direction: row;
    bottom: 0;
    right: 0;
    left: 0;
    width: auto;
    gap: 0;
    }

.floating-button {
    border-radius: 0;
    flex: 1;
    height: 7vh;
    min-height: 45px; /* Altura mínima */
    }

.email {
    display: none;
    }

.phone {
    display: flex;
    }
	
.whatsapp::before {
	font-size: 30px;
    }
}

/* Fix Footer - Activar si se utiliza el Footer Default */
@media (max-width: 768px) {
#footer-bottom {
    padding: 20px 0 60px 0;
    }
}

/*** Termina AVSYS - Botones Contacto ***/