.leads-ai .card-leads {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.leads-ai .card-leads:hover {
    transform: translateY(-3px);
}

.leads-ai h1 {
    color: #3EBBEB;
    font-weight: bold;
    font-size: 1.8rem;
}

.leads-ai p {
    color: #8A8A8A;
}

.parametros-analise h5 {
    color: #3EBBEB;
    font-weight: bold;
}

.card-analise {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.card-analise p {
    font-weight: 600;
}

.card-analise label {
    color: #8A8A8A;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.tabela-leads {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.tabela-leads thead {
    background-color: #f9fafe;
}

.tabela-leads th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eaeaea;
}

.tabela-leads td {
    padding: 12px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
}

/* Estilização dos botões */
.btn-exportar {
    background-color: #3EBBEB;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-exportar:hover {
    background-color: #0197d1;
}

.card-resumo {
    background-color: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.modal-upload {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-upload-content {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.modal-upload-content h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.modal-upload-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #6c757d;
}

.upload-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.upload-box:hover {
    border-color: #999;
}

.upload-box i {
    font-size: 18px;
}

#nomeArquivoTemplate,
#nomeArquivoImportar {
    font-size: 13px;
    color: #888;
    margin-top: 10px;
}

.close-modal-planilha {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal-planilha:hover {
    color: #000;
}