.elementor-617 .elementor-element.elementor-element-577b2f4{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a9f4edb *//* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: auto;
}

/* Header */
.header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #e8d5f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #ffffff;
}

/* Container principal */
.pipeline-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Colunas */
.column {
    background: #1b1b1b;
    border: 2px solid #9b59b6;
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 500px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(155, 89, 182, 0.1);
}

.column:hover {
    border-color: #8e44ad;
    box-shadow: 0 8px 30px rgba(155, 89, 182, 0.2);
    transform: translateY(-2px);
}

.column h3 {
    color: #9b59b6;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #9b59b6;
}

/* Formulário de adicionar cliente */
.add-client-form {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #444;
}

.add-client-form h4 {
    color: #9b59b6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.add-client-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.add-client-form input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    background: #1b1b1b;
    border: 2px solid #444;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-client-form input:focus {
    outline: none;
    border-color: #9b59b6;
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.1);
}

.add-client-form input::placeholder {
    color: #888;
}

.add-client-form button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-client-form button:hover {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

/* Container de cards */
.card-container {
    min-height: 200px;
}

/* Cards */
.card {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    padding: 1rem;
    margin: 0.75rem 0;
    border-radius: 8px;
    cursor: move;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(155, 89, 182, 0.2);
    position: relative;
    user-select: none;
}

.card:hover {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.3);
}

.card.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

/* Conteúdo do card */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.card-email {
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
}

/* Ícone de lixeira */
.delete-icon {
    background: rgba(231, 76, 60, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.card:hover .delete-icon {
    opacity: 1;
    transform: scale(1);
}

.delete-icon:hover {
    background: #c0392b;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

/* Painel de notificações */
.notifications-panel {
    background: #1b1b1b;
    border: 2px solid #9b59b6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.notifications-panel h3 {
    color: #9b59b6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.notification-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: #2a2a2a;
    border-radius: 6px;
    border-left: 4px solid #9b59b6;
}

.notification-icon {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.sender-info {
    border-left-color: #3498db;
}

.system-info {
    border-left-color: #2ecc71;
}

.email-sent {
    border-left-color: #f39c12;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(243, 156, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1b1b1b;
    margin: 10% auto;
    padding: 2rem;
    border: 2px solid #9b59b6;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-content h3 {
    color: #9b59b6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-content label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.modal-content input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9rem;
}

.modal-content input:focus {
    outline: none;
    border-color: #9b59b6;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

.close:hover {
    color: #9b59b6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.modal-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-buttons button:first-child {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.modal-buttons button:first-child:hover {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
}

.modal-buttons button:last-child {
    background: #444;
    color: white;
}

.modal-buttons button:last-child:hover {
    background: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .pipeline-container {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .column {
        padding: 1rem;
    }
    
    .add-client-form {
        padding: 1rem;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1b1b1b;
}

::-webkit-scrollbar-thumb {
    background: #9b59b6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8e44ad;
}

/* Animações de entrada */
.card {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estados de drag and drop */
.column.drag-over {
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

.column.drag-over h3 {
    color: #f39c12;
}

/* Contador de cards */
.column h3 span {
    background: rgba(155, 89, 182, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
}/* End custom CSS */