.cta2-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  border-radius: 80px 80px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta2-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta2-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta2-btn span {
  position: relative;
  z-index: 2;
}

.cta2-btn i {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.cta2-btn:hover i {
  transform: translateX(5px);
}

.cta2-btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(2, 44, 130, 0.25);
}

.cta2-btn-primary:hover {
  background: #01357a;
  border-color: #01357a;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(2, 44, 130, 0.35);
}

.cta2-btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid rgba(2, 44, 130, 0.2);
}

.cta2-btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(235, 190, 0, 0.3);
}

.floating {
  position: fixed;

  width: 60px;

  height: 60px;

  bottom: 30px;

  left: 25px;

  background-color: #25d366;

  color: #fff;

  border-radius: 50px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;
}

.float-button {
  margin-top: 16px;
}
