/* Modern Historical Evolution CSS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-color: #1a1a2e;
    --accent-color: #3f51b5;
    --card-bg: #ffffff;
    --bg-modern: #f8f9fa;
    --text-main: #2c3e50;
    --text-muted: #666;
    --shadow-premium: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.evolucao-container {
    padding: 60px 20px;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    background: #ffffff;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero-evolucao {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-evolucao h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}

.hero-evolucao .subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto;
}

/* Main Exhibit Layout */
.exhibit-layout {
    display: flex;
    gap: 50px;
    width: 100%;
    align-items: flex-start;
}

/* Graphic Presentation */
.graphic-frame {
    flex: 1.2;
    background: #2c3e50;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 5px solid #fff;
    animation: fadeInLeft 0.8s ease-out;
}

.graphic-frame img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.graphic-caption {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
}

/* Narrative Panels */
.narrative-container {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: fadeInRight 0.8s ease-out;
}

.narrative-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 6px solid var(--accent-color);
    transition: all 0.4s ease;
}

.narrative-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.narrative-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.narrative-year {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

.narrative-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.narrative-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .exhibit-layout { flex-direction: column; }
    .graphic-frame, .narrative-container { width: 100%; }
}

/* Fox Button Integration */
.fox-assistant-btn {
    bottom: 30px !important;
}
