.interview-header {
    margin-bottom: 2rem;
}

.interview-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.interview-image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #eee;
    background-image: url('../images/sam-altman.jpg');
    background-size: cover;
    background-position: center;
}

.interview-info h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.interview-title {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.interview-bio {
    font-size: 0.95rem;
    line-height: 1.6;
}

.interview-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--dark-color);
}

.interview-question {
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.question {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.answer {
    margin-bottom: 1rem;
}

.answer:last-child {
    margin-bottom: 0;
}

.interview-conclusion {
    margin-top: 3rem;
    font-style: italic;
    color: var(--gray-color);
    text-align: center;
}

.case-study {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.case-study:last-child {
    border-bottom: none;
}

.global-map {
    margin: 3rem 0;
}

.map-container {
    height: 400px;
    background-color: #eee;
    border-radius: 8px;
    position: relative;
    background-image: url('../images/world-map.jpg');
    background-size: cover;
    background-position: center;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 2rem;
}

.map-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.map-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.category-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.category-section:last-child {
    border-bottom: none;
}

.page-navigation {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .interview-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .interview-image-placeholder {
        margin: 0 auto;
    }
    
    .map-legend {
        flex-direction: column;
        align-items: center;
    }
}

/* Animações para elementos */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para imagens responsivas */
.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Melhorias para acessibilidade */
:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Melhorias para impressão */
@media print {
    .header, .footer, .page-navigation {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .content-container {
        max-width: 100%;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    p, blockquote {
        orphans: 3;
        widows: 3;
    }
}
