/* sobre.css - Estilos específicos para a página sobre.html */

/* Quote styles */
.quote-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.subquote-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Main Content */
.main-content {
    padding: 6rem 0 4rem;
    min-height: 100vh;
    background: var(--bg-darker);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    position: relative;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    opacity: 0.5;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Styles */
.about-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-section:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-section:hover::before {
    opacity: 1;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-title i {
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.section-content {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.4;
    border-radius: 1.5px;
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-year {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 1.05rem;
    line-height: 1.6;
}

.timeline-item:hover {
    opacity: 1;
}

.timeline-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.3);
}

.timeline-content:hover {
    transform: translateX(8px);
    border-color: rgba(37, 99, 235, 0.2);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .timeline {
        padding: 1rem;
    }

    .timeline-item {
        padding-left: 2rem;
        margin-bottom: 2rem;
    }

    .timeline-year {
        font-size: 1.1rem;
    }

    .timeline-content {
        padding: 1.2rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .about-title {
        font-size: 2.4rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .timeline-content {
        padding: 1rem;
    }
}
