/*Estilos Omar Basurto R para suministros*/

.service-box {
    background-color: #f6f6f6;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  
.service-box:hover {
  background-color: #ffdd57;
}

.section-footer{
  margin-right: 80px;
}

.footer-link {

color: #fff;
}

.footer-link:hover {
text-decoration: underline;
color:aquamarine;
}

.footer-social-icon {
font-size: 20px;
margin-right: 10px;
color: #fff;
}  

/* Estilos contacto */
 .contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.contact-form-title {
  margin-bottom: 1.5rem;
}

.contact-form-field {
  margin-bottom: 1.5rem;
}

.contact-form-captcha {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-form-captcha img {
  margin-right: 0.5rem;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-end;
}


/* Botones flotantes*/

/*--------------------------------------------------------------------------------------------------------------------------------*/


.floating-button {
  position: fixed;
  
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.floating-button a {
  display: block;
  margin-bottom: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #f14668; 
  transition: background-color 0.3s ease;
}

.floating-button a i {
  width: 30px;
  height: 30px;
  margin-top: 8px;
}

.floating-button a i {
  color: #FCE4EC; /* Cambia el color de fondo al pasar el cursor por encima */
}


.floating-button a:hover {
  background-color: #3f3e3e; /* Cambia el color de fondo al pasar el cursor por encima */  
  
}

/*--------------------------------------------------------------------------------------------------------------------------------*/

/*Zoom a botones*/
.is-zoomed {
  /*transition: transform 0.5s;*/
  transition: all 0.3s ease;
  
}

.is-zoomed:hover {
  transform: scale(1.5);
}/**/


