/* Remove qualquer animação do texto 'deslize para explorar' */
.scroll-indicator span {
    animation: none !important;
    transform: none !important;
    transition: none !important;
}
.timeline-item.highlighted .timeline-content {
    transform: scale(1.07);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.18);
    border-color: var(--primary-red);
    z-index: 2;
}

.timeline-item.highlighted .timeline-year {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.13);
}

.timeline-item.highlighted .timeline-header h3 {
    color: var(--primary-red);
    transform: scale(1.09);
}

.timeline-circle.highlighted {
    transform: translateX(-50%) scale(1.25);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.35);
    z-index: 20;
}
/* Timeline Specific Styles */
.about-page {
    background: linear-gradient(135deg, #fff6f6 0%, #faeaea 100%);
    min-height: 100vh;
}

/* Timeline Hero Section */
.timeline-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #fbeff2 0%, #fbe4e4 40%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.timeline-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.09) 0%, transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(30, 64, 175, 0.09) 0%, transparent 55%);
    animation: gradientShift 12s ease infinite;
}

.timeline-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(60px); /* Move mais para baixo */
    animation: heroFadeIn 1s ease 0.5s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.timeline-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    color: var(--gray);
    margin-top: 3.5rem;
    /* animação removida do texto */
}

/* Seta animada para baixo */
.scroll-arrow {
    display: block;
    margin: 0 auto;
    margin-top: 1.2rem;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    animation: arrowBounce 2s infinite;
}

.scroll-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--primary-red);
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(16px); }
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    min-height: 250vh;
    position: relative;
}

.timeline-container {
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 1400px;
}

/* Timeline Spine - Sistema centralizado de linha e bolas */
.timeline-spine {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px;
    background: var(--primary-red);
    transform: translateX(-50%);
    height: 0;
    transition: height 0.12s cubic-bezier(0.7,0,0.7,1); /* Transição mais rápida */
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.timeline-circles {
    position: relative;
    height: 100%;
}

.timeline-circle {
    position: absolute;
    left: 50%;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary-red);
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 15;
}

.timeline-circle.visible {
    opacity: 1;
    animation: circleAppear 0.6s ease forwards;
}

.timeline-circle.active {
    animation: pulse 2s infinite;
}


.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Itens ímpares à esquerda */
.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: calc(50% + 100px);
}

/* Itens pares à direita */
.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 100px);
}

/* Timeline Content - Efeitos de hover melhorados */
.timeline-content {
    background: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    max-width: 650px;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}


/* Setas dos balões */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transition: all 0.3s ease;
}

/* Setas para itens à esquerda (ímpares) */
.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: var(--white);
}

/* Setas para itens à direita (pares) */
.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: var(--white);
}

/* Timeline Header - Layout simplificado */
.timeline-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

@keyframes circleAppear {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
    }
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    background: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
    align-self: flex-start;
    transition: all 0.3s ease;
}


.timeline-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    transition: all 0.3s ease;
}


/* Timeline Content - Mantém o estilo original */

/* Setas dos balões */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transition: all 0.3s ease;
}

/* Setas para itens à esquerda (ímpares) */
.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: var(--white);
}

/* Setas para itens à direita (pares) */
.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: var(--white);
}

.timeline-tags{
    margin-top: 18px;
}

.tag {
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Timeline Stats */
.timeline-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

/* Timeline Achievements */
.timeline-achievements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-gray);
}

.achievement i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Timeline Partners */
.timeline-partners {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.partner-mini-logo {
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-mini-logo:hover {
    filter: grayscale(0%);
}

.partners-text {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Timeline Awards */
.timeline-awards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.award {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-gray);
    background: var(--light-gray);
    padding: 0.8rem 1rem;
    border-radius: 10px;
}

.award i {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Timeline Future */
.timeline-future {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.future-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    padding: 0.8rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.future-item i {
    font-size: 1rem;
}

/* Timeline CTA */
.timeline-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.timeline-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-cta .btn-primary {
    background: var(--white);
    color: var(--dark-gray);
}

.timeline-cta .btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.timeline-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.timeline-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-title {
        font-size: 2.5rem;
    }
    
    .timeline-container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .timeline-spine {
        left: 40px;
        transform: none;
    }
    
    .timeline-line {
        left: 0;
        width: 6px;
        transform: none;
    }
    
    .timeline-circles .timeline-circle {
        left: 0;
        transform: translateX(-50%);
        width: 32px;
        height: 32px;
    }
    
    /* Reposicionar círculos para mobile */
    .timeline-circle[data-year="2019"] { top: 100px; }
    .timeline-circle[data-year="2020"] { top: 280px; }
    .timeline-circle[data-year="2021"] { top: 460px; }
    .timeline-circle[data-year="2022"] { top: 640px; }
    .timeline-circle[data-year="2023"] { top: 820px; }
    .timeline-circle[data-year="2024"] { top: 1000px; }
    .timeline-circle[data-year="2025"] { top: 1180px; }
    
    .timeline-item {
        justify-content: flex-start !important;
        margin-bottom: 180px;
        min-height: auto;
        padding: 0 !important;
        padding-left: 100px !important;
    }
    
    .timeline-content {
        max-width: calc(100vw - 140px);
        width: auto;
    }
    
    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-left-color: transparent !important;
        border-right-color: var(--white) !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .timeline-stats {
        gap: 1rem;
    }
    
    .timeline-future {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
