/* Reset e configuração base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #e8d5c4 0%, #f4e9e1 50%, #faf5f0 100%);
    min-height: 100vh;
    color: #333;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header com ícone */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 40px 0;
    position: relative;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: url('imagens/iconkm.jpeg') center center;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
    border: 3px solid #8b4513;
    flex-shrink: 0;
}

.header-content {
    text-align: center;
}

.header h1 {
    color: #8b4513;
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    color: #5d4037;
    font-size: 1.2em;
}

/* Botão da formadora */
.instructor-btn-section {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.instructor-btn {
    background: white;
    border: 2px solid #d4a574;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
    color: #8b4513;
}

.instructor-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    background: #faf5f0;
}

.instructor-btn.active {
    background: #8b4513;
    color: white;
    border-color: #8b4513;
}

/* Perfil da formadora */
.instructor-profile {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 50px;
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.instructor-profile.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.instructor-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
}

.instructor-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.instructor-image {
    max-width: 200px;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
    border-radius: 10px;
    border: 2px solid #8b4513;
}

.instructor-info h2 {
    color: #8b4513;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.instructor-info p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Qualificações */
.qualifications {
    margin-top: 20px;
}

.qualifications h3 {
    color: #8b4513;
    margin-bottom: 10px;
}

.qualifications ul {
    list-style: none;
}

.qualifications li {
    padding: 5px 0;
    color: #666;
}

.qualifications li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
}