@import url('style.css');

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

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

.background-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 #805ad5;
}

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

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

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

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

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

.btn-fechar {
    background: #718096;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-fechar:hover {
    background: #e53e3e;
    transform: scale(1.1);
}

.background-conteudo {
    padding: 2rem;
}

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

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

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

.background-talento-link {
    color: #805ad5;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px dashed #805ad5;
}

.background-talento-link:hover {
    color: #6b46c1;
    border-bottom-style: solid;
}

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