﻿

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}



.title-linePe {
    display: block;
    position: relative;
}

.title-line-1Pe {
    background: linear-gradient(135deg, var(--Titulo1) 0%, var(--secondary-eco) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 15px;
}

.title-line-2Pe {
    background: var(--eco-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-line-2Pe::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* Subtítulo y decoración */
.title-subtitlePe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    width: 100%;
}

.subtitle-decorationPe {
    display: flex;
    align-items: center;
    gap: 10px;
}

.decoration-dotPe {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.decoration-linePe {
    width: 60px;
    height: 2px;
    background: var(--eco-gradient);
    border-radius: 1px;
}

.subtitlePe {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 3px;
    /*text-transform: uppercase;*/
    margin: 0 10px;
    width: 100%;
    text-align: center;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}
