body {
    background-color: #FEF9F2;
}

.circulo {
    width: 150px;
    height: 150px;
    background: #027BE4;
}

.bg-primary {
    background: linear-gradient(#027BE4, #06BFE2);

}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.telefono-hover:hover {
    color: #0d6efd;
    /* Azul Bootstrap */
    cursor: pointer;
}

.social-icon {
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  color: white;
  font-size: 24px;
  transition: transform 0.3s;
}

.social-icon i {
  transform: translateY(1px);
}

  .bg-instagram {
    background: #E1306C;
  }

  .bg-facebook {
    background: #1877F2;
  }

  .bg-linkedin {
    background: #0077B5;
  }

  a {
    text-decoration: none;
  }

  .btn-primary {
        background-color: #1f120a;
        border: #1f120a;
  }