/* Contenedor */
.titulo-elegante {
    position: relative;
    display: inline-block;
    width: auto;
}

/* Texto */
.titulo-elegante h2 {
    position: relative;
    margin: 0;
    padding-bottom: 12px;
    font-size: 6.5vh;
    font-family: Calibri, Arial, sans-serif;
    color: #0A3F5E;
    font-weight: 600;
    white-space: nowrap;

    transform: translateX(-50px);
    opacity: 0;
}

/* Línea elegante debajo */
.titulo-elegante h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(to right, #FE921B, #FFB56A);

    border-radius: 10px;

    transform: scaleX(0);
    transform-origin: left;
}

/* Animación texto */
.titulo-elegante.visible h2 {
    animation: aparecerTexto 1s ease forwards;
}

/* Animación línea */
.titulo-elegante.visible h2::after {
    animation: crecerSubrayado 1s ease forwards;
    animation-delay: .4s;
}

/* Texto aparece */
@keyframes aparecerTexto {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Línea crece */
@keyframes crecerSubrayado {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

/* Responsive */
@media screen and (max-width: 800px) {

    .titulo-elegante h2 {
        font-size: 3vh;
    }

    .titulo-elegante h2::after {
        width: 50px;
        height: 3px;
    }
}