/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

ul {
    list-style-position: inside;
    padding-left: 10px;
}

/* Header */
.header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 2px solid #2c3e50;
    margin-bottom: 30px;
}

.header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #3498db;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 0.9rem;
    margin-top: 10px;
}

.availability {
    margin-top: 5px;
    font-style: italic;
    color: #e74c3c;
}

/* Layout principal */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.main-content {
    flex: 1 1 65%;
}

.sidebar {
    flex: 1 1 25%;
    min-width: 250px;
}

/* Seções principais */
.section {
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.section-content {
    padding: 0 10px;
}

.experience-item {
    margin-bottom: 20px;
}

.experience-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.experience-item p {
    font-size: 0.95rem;
}

/* Listas */
.agency-list, .awards-list, .skills-list, .education-list {
    list-style-type: none;
}

.agency-list li, .awards-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.agency-list li:before, .awards-list li:before {
    content: "•";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Sidebar */
.sidebar-section {
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

/* Imagem de perfil */
.profile-image {
    text-align: center;
    margin-bottom: 20px;
}

.placeholder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.placeholder-image i {
    font-size: 80px;
    color: #999;
}

/* Habilidades */
.skills-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.skills-list li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Idiomas */
.language-item {
    margin-bottom: 15px;
}

.language-name {
    font-weight: 600;
    display: block;
}

.language-level {
    font-size: 0.85rem;
    color: #666;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-top: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #3498db;
    border-radius: 4px;
}

/* Educação */
.education-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.education-list li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #666;
}

/* Responsividade */
@media (max-width: 991px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        order: -1;
    }
    
    .profile-image {
        float: left;
        margin-right: 20px;
    }
    
    .sidebar-section {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header h2 {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .sidebar-title {
        font-size: 1.2rem;
    }
    
    .profile-image {
        float: none;
        margin-right: 0;
    }
    
    .placeholder-image {
        width: 120px;
        height: 120px;
    }
    
    .placeholder-image i {
        font-size: 60px;
    }
    
    .container {
        padding: 10px;
    }
}

