
  .ms-animate-fade-in-left {
    animation: ms-fadeInLeft 1s ease-out forwards;
  }

  .ms-animate-fade-in-right {
    animation: ms-fadeInRight 1s ease-out forwards;
  }

  @keyframes ms-fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes ms-fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .ms-heart-shape path {
    transition: stroke-dashoffset 2.5s ease;
    stroke-dashoffset: 700;
  }

  .ms-modern-invite {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #1B396A;
    background: rgba(241, 190, 24, 0.12);
    padding: 6px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgb(241 190 24 / 0.3);
    user-select: none;
    transition: opacity 0.5s ease;
    z-index: 10;
  }

  .ms-service-bubble {
    position: absolute;
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: default;
    border: 2px solid #F1BE18;
    user-select: none;
    flex-direction: column;
    z-index: 10;
  }

  .ms-service-bubble .emoji {
    pointer-events: none;
    user-select: none;
  }

  .ms-service-bubble .label {
    position: absolute;
    top: 72px;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: #1B396A;
    font-weight: 600;
    white-space: nowrap;
    user-select: none;
  }

  /* MÓVIL */
  @media (max-width: 768px) {
    .modern-services-section {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

    .ms-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem !important;
      max-width: 95%;
      margin-left: auto;
      margin-right: auto;
    }

    .ms-heart-container {
      height: 500px;
      max-width: 100% !important;
      width: 100%;
      margin-top: -30px;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }

    .ms-heart-shape {
      width: 520px !important;
      height: 520px !important;
    }

    .ms-service-bubble {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }

    .ms-service-bubble .label {
      font-size: 12px;
      top: 66px;
    }

    .ms-text-content {
      max-width: 100% !important;
      padding: 0 1rem;
    }

    .ms-title {
      font-size: 2rem;
      line-height: 1.3;
      text-align: center;
    }

    .ms-description {
      text-align: justify;
      font-size: 1rem;
    }
  }