img.premio-rosy {
    width: 70%;
    margin: 0 auto
}

.timeline-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px
}

.timeline-header {
    text-align: center;
    margin-bottom: 50px
}

.timeline-header h2 {
    color: #51287d;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #51287d, #39175e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.timeline-header p {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0
}

.timeline {
    position: relative;
    padding: 20px 0
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #51287d, #7d54a8, #a27ec9);
    transform: translateX(-50%);
    border-radius: 2px
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .6s ease forwards
}

.timeline-item:nth-child(1) {
    animation-delay: .1s
}

.timeline-item:nth-child(2) {
    animation-delay: .2s
}

.timeline-item:nth-child(3) {
    animation-delay: .3s
}

.timeline-item:nth-child(4) {
    animation-delay: .4s
}

.timeline-item:nth-child(5) {
    animation-delay: .5s
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, .1);
    border: 1px solid rgba(107, 70, 193, .1);
    position: relative;
    width: 45%;
    transition: all .3s ease
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, .15)
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 55%
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #51287d, #8b5cf6);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(107, 70, 193, .2);
    z-index: 10
}

.timeline-date {
    display: inline-block;
    background: #51287d;
    background: #51287d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 15px
}

.timeline-title {
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center
}

.timeline-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px
}

.homenageadas-list {
    margin-top: 15px
}

.homenageadas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    margin-top: 10px
}

.homenageada-item {
    background: rgba(107, 70, 193, .05);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: .9rem;
    color: #51287d;
    font-weight: 500;
    border-left: 3px solid #51287d
}

.stats-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd95e, #ebc750);
    color: #51287d;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: .8rem;
    font-weight: 600;
    margin-left: 10px
}

@media (max-width:768px) {
    .timeline::before {
        left: 30px
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        margin-right: 0 !important
    }

    .timeline-dot {
        left: 30px
    }

    .timeline-header h2 {
        font-size: 2rem
    }

    .homenageadas-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {
    .timeline-container {
        padding: 10px
    }

    .timeline-content {
        padding: 20px;
        width: calc(100% - 60px);
        margin-left: 40px !important
    }

    .timeline::before {
        left: 20px
    }

    .timeline-dot {
        left: 20px;
        width: 16px;
        height: 16px
    }
}