/* Estilos para el título premium con animación */
.premium-title-container {
    position: relative;
    text-align: center;
    margin: 40px 0;
    padding-bottom: 15px;
}

.premium-title {
    font-size: 2.75rem; /* 25% más grande que el original */
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #0080ff, #ED267A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.3s;
    letter-spacing: 0.5px; /* Ligero aumento de espaciado */
    text-shadow: 0 5px 15px rgba(0, 157, 255, 0.2);
    position: relative;
}

/* Animación para palabras individuales */
.premium-word {
    display: inline-block;
    margin-right: 0.3rem;
    opacity: 0;
    transform: translateY(20px);
}

.premium-word:nth-child(1) { animation: fadeInWord 0.5s forwards 0.1s; }
.premium-word:nth-child(2) { animation: fadeInWord 0.5s forwards 0.2s; }
.premium-word:nth-child(3) { animation: fadeInWord 0.5s forwards 0.3s; }
.premium-word:nth-child(4) { animation: fadeInWord 0.5s forwards 0.4s; }
.premium-word:nth-child(5) { animation: fadeInWord 0.5s forwards 0.5s; }
.premium-word:nth-child(6) { animation: fadeInWord 0.5s forwards 0.6s; }
.premium-word:nth-child(7) { animation: fadeInWord 0.5s forwards 0.7s; }

/* Línea decorativa que se dibuja debajo del texto */
.premium-underline {
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #0080ff, #ED267A);
    margin: 10px auto 0;
    animation: drawLine 1.5s forwards 1s;
    box-shadow: 0 2px 10px rgba(237, 38, 122, 0.3);
    border-radius: 2px;
}

/* Animación de gradiente */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animación para las palabras individuales */
@keyframes fadeInWord {
    0% { 
        opacity: 0;
        transform: translateY(20px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación para dibujar la línea */
@keyframes drawLine {
    0% { width: 0; }
    100% { width: 80%; }
}

/* Efecto hover para la interactividad */
.premium-title-container:hover .premium-title {
    text-shadow: 0 5px 15px rgba(0, 157, 255, 0.4);
    transition: text-shadow 0.3s ease;
}

.premium-title-container:hover .premium-underline {
    box-shadow: 0 3px 15px rgba(237, 38, 122, 0.5);
    transition: box-shadow 0.3s ease;
}

/* Responsividad */
@media (max-width: 768px) {
    .premium-title {
        font-size: 2.2rem;
    }
    
    .premium-underline {
        height: 2px;
    }
}

@media (max-width: 480px) {
    .premium-title {
        font-size: 1.8rem;
    }
}