.hero-section-h {
    position: relative;
    padding: 0rem 4rem;
    padding-top: 1rem;
    padding-bottom: 4rem;
    top: 1;
    overflow: hidden;
    width: 100%;
    overflow: hidden;
}

.container-h {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.hero-content-h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-text-h {
    flex: 1 1 500px;
}

.badge-h {
    display: inline-block;
    padding: .6rem 1.2rem;
    border-radius: 999px;
    background: rgba(144, 84, 249, .1);
    border: 1px solid rgba(144, 84, 249, .2);
    color: #9054f9;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.title-h {
    font-size: 5rem;
    line-height: .95;
    font-weight: 900;
    color: #111827;
    margin-bottom: 1.5rem;
}

.gradient-text-h {
    background: linear-gradient(90deg, #ff66c4, #9054f9, #fb8f53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description-h {
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 2rem;
}

.buttons-h {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-h,
.btn-secondary-h {
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-h {
    background: #111827;
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}

.btn-primary-h:hover {
    transform: translateY(-4px);
}

.btn-secondary-h {
    background: rgba(255, 255, 255, .7);
    color: #111827;
    border: 1px solid rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
}

.btn-secondary-h:hover {
    transform: translateY(-4px);
}

.hero-image-wrapper-h {
    flex: 1 1 450px;
    position: relative;
}

.hero-image-container-h {
    position: relative;
    width: 70%;
    max-width: 500px;
    margin: auto;
}

.hero-image-h {
    position: relative;
    overflow: hidden;
    border-radius: 8rem 8rem 1.5rem 1.5rem;
    border: 8px solid #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .2);
}

.hero-image-h img {
    width: 100%;
    display: block;
}

.overlay-h {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(144, 84, 249, .25), transparent);
}

.floating-card-h {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    z-index: 20;
}

.card-top-h {
    top: 2rem;
    left: -4rem;
    animation: float-h 3s ease-in-out infinite;
}

.card-bottom-h {
    bottom: 3rem;
    right: -3rem;
}

.icon-h {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fb8f53;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-title-h {
    font-weight: 900;
    color: #111827;
    margin-bottom: .25rem;
}

.card-subtitle-h {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b7280;
}

.avatars-h {
    display: flex;
}

.avatars-h img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
}

.blob-h{
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    opacity:.18;
    animation:floatBlob-h 8s ease-in-out infinite;
    pointer-events:none;
}

/* CÍRCULO 1 */
.blob-pink-h{
    width:320px;
    height:320px;
    background:#ff66c4;

    top:8%;
    left:-120px;
}

/* CÍRCULO 2 */
.blob-purple-h{
    width:260px;
    height:260px;
    background:#9054f9;

    top:35%;
    left:-80px;

    animation-delay:2s;
}

/* CÍRCULO 3 */
.blob-orange-h{
    width:220px;
    height:220px;
    background:#fb8f53;

    bottom:5%;
    left:40px;

    animation-delay:4s;
}

@keyframes floatBlob-h{

    0%{
        transform:translateY(0) translateX(0) scale(1);
    }

    25%{
        transform:translateY(-20px) translateX(10px) scale(1.05);
    }

    50%{
        transform:translateY(10px) translateX(-10px) scale(.98);
    }

    75%{
        transform:translateY(-15px) translateX(5px) scale(1.03);
    }

    100%{
        transform:translateY(0) translateX(0) scale(1);
    }
}

@keyframes float-h {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}
@media(min-width: 768px){
.clase-prueba{
    position: sticky;
    top: 6rem;

    align-self: start;
}
}

@media(max-width:992px) {
    .hero-section-h{
        padding: 0rem;
        padding-bottom: 4rem;
    }
    .hero-content-h {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-h {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title-h {
        font-size: 4rem;
    }

    .hero-image-container-h {
        width: 90%;
    }

    .card-top-h {
        left: -1rem;
    }

    .card-bottom-h {
        right: -1rem;
    }
}

@media(max-width:576px) {
    .title-h {
        font-size: 3rem;
    }

    .description-h {
        font-size: .95rem;
    }

    .buttons-h {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-h,
    .btn-secondary-h {
        width: 100%;
    }

    .hero-image-h {
        border-radius: 5rem 5rem 1.5rem 1.5rem;
    }
}