@media only screen and (min-width: 320px) and (max-width: 400px) {
  #pwdchange {
    font-size: 35px;
  }
  #aseguramiento {
    font-size: 35px;
  }
  body p {
    font-size: 20px;
  }
  .content-mod-vertical {
    padding: 20px 20px 15px;
  }
  .footer-banner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

#tel-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 70px;
  height: 70px;
  background-color: #25d366;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition:
    transform 0.3s ease,
    width 0.3s ease,
    height 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#tel-float:hover {
  transform: scale(1.1);
  width: 70px;
  height: 70px;
}

#tel-float img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

#tel-float:hover > img {
  transform: rotate(15deg);
}

@media (max-width: 600px) {
  #tel-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }

  #tel-float:hover {
    width: 60px;
    height: 60px;
  }
}

