.teachers-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

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

.teachers-section h2 {
    color: #FFFFFF;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
}

.teachers-section .intro-text {
    color: #E0E0E0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    line-height: 1.6;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.teacher-card {
    background-color: #1f1f1f;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid #70C945;
}

.teacher-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.teacher-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.teacher-info h3 {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.teacher-info h4 {
    font-size: 1.2em;
    color: #70C945;
    margin-bottom: 20px;
    font-weight: 600;
}

.teacher-info p {
    color: #E0E0E0;
    font-size: 1em;
    line-height: 1.6;
}

/* Responsividade para a seção de professores */
@media (max-width: 768px) {
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    
    .teacher-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .teacher-image {
        height: 250px;
    }
    
    .teacher-info {
        padding: 20px;
    }
    
    .teacher-info h3 {
        font-size: 1.5em;
    }
    
    .teacher-info h4 {
        font-size: 1.1em;
    }
}
