.whatsapp {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  line-height: 60px;
  flex-shrink: 0;
}

.whatsapp:hover {
  background-color: #FFF;
  color: #25D366;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transform: scale(1.1);
}

.facebook {
  width: 60px;
  height: 60px;
  background-color: #1877F2;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  line-height: 60px;
  flex-shrink: 0;
}

.facebook:hover {
  background-color: #FFF;
  color: #1877F2;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transform: scale(1.1);
}

.google {
  width: 60px;
  height: 60px;
  background-color: #EA4335;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  line-height: 60px;
  flex-shrink: 0;
}

.google:hover {
  background-color: #FFF;
  color: #EA4335;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transform: scale(1.1);
}

.call {
  width: 60px;
  height: 60px;
  background-color: #C8102E;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  line-height: 60px;
  flex-shrink: 0;
}

.call:hover {
  background-color: #FFF;
  color: #C8102E;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transform: scale(1.1);
}

.container-media {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  position: fixed;
  bottom: 95px;
  left: 20px;
  width: 60px;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  overflow: visible;
}

.whatsapp-icon,
.google-icon,
.facebook-icon,
.phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive - Ajustar para pantallas muy pequeñas */
@media (max-width: 480px) {
  .container-media {
    bottom: 80px;
    left: 10px;
  }
}