@import url('style.css');

.feats-lista h2 {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.feats-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}

.feat-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border-left: 4px solid #38a169;
}

.feat-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left-color: #2f855a;
}

.feat-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
}

.feat-card .requisitos {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
}

/* Detalhes do Feat */
.detalhes-feat {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.feat-header {
    background: white;
    padding: 2rem;
    border-bottom: 3px solid #38a169;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feat-titulo {
    font-size: 2.2rem;
    color: #2d3748;
    margin: 0;
}

.feat-conteudo {
    padding: 2rem;
}

.feat-descricao {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
}

.feat-info {
    margin: 1.5rem 0;
}

.feat-info h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Estilos para talentos com múltiplos níveis */
.feat-nivel {
    background: #f0fff4;
    border-left: 4px solid #38a169;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.feat-nivel-titulo {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: bold;
}

.feat-requisitos {
    background: #edf2f7;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
    .feat-titulo {
        font-size: 1.8rem;
    }
    
    .feat-conteudo {
        padding: 1.5rem;
    }
}