:root {
    --primary-blue: #5D9CEC;
    /* Soft Baby Blue */
    --primary-pink: #EC87C0;
    /* Soft Baby Pink */
    --accent-blue: #4A89DC;
    /* Darker Blue for text/buttons */
    --alert-red: #ff6b6b;
    /* Softer Red */
    --bg-light: #fdf5f8;
    /* Very light pinkish white */
    --text-dark: #555;
    --white: #ffffff;
    --shadow: 0 8px 20px rgba(236, 135, 192, 0.15);
    /* Pinkish shadow */
    --radius: 20px;
    /* Rounder corners for delicate look */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #fce4ec 100%);
    /* Blue to Pink Gradient */
    color: var(--text-dark);
    padding: 40px 0 60px;
    text-align: left;
    border-bottom: none;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
}

.badge {
    background-color: var(--primary-pink);
    color: var(--white);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(236, 135, 192, 0.4);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--accent-blue);
}

.hero .highlight {
    color: var(--primary-pink);
}

.subhead {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
    color: #666;
}

.amount {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-pink);
    background-color: var(--white);
    padding: 2px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.alert-text {
    background-color: #fff0f6;
    border: 1px solid #ffcce0;
    color: #d63384;
    padding: 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Start Form */
.start-form {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    display: inline-flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    border: 1px solid #f0f0f0;
}

input[type="text"],
input[type="tel"] {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    transition: border-color 0.3s;
    background-color: #f9f9f9;
}

input[type="text"]:focus,
input[type="tel"]:focus {
    border-color: var(--primary-blue);
    background-color: var(--white);
    outline: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-pink), #ff9eb5);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    box-shadow: 0 4px 15px rgba(236, 135, 192, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 135, 192, 0.6);
}

/* Questionnaire Section */
.questionnaire-section {
    padding: 40px 0;
    min-height: 400px;
}

.hidden {
    display: none !important;
}

.wizard-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #f0f0f0;
}

.progress-bar {
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
    width: 0%;
    transition: width 0.4s ease;
}

.question-title {
    font-size: 1.6rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    background-color: var(--white);
    border: 2px solid #f0f0f0;
    padding: 18px;
    border-radius: 12px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.option-btn:hover {
    border-color: var(--primary-blue);
    background-color: #f0f7ff;
    transform: translateX(5px);
    color: var(--primary-blue);
}

/* Result Messages */
.result-card {
    text-align: center;
}

.result-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.result-title {
    color: var(--primary-pink);
    font-size: 2rem;
    margin-bottom: 15px;
}

.result-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #666;
}

.disqualified-title {
    color: var(--alert-red);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.info-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
    align-items: center;
}

.info-content {
    flex: 1;
}

.info-image {
    flex: 1;
    max-width: 400px;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.info-section h2 {
    color: var(--accent-blue);
    margin-bottom: 40px;
    font-size: 2.2rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: var(--radius);
    background-color: #f8fbff;
    /* Very light blue bg */
    transition: transform 0.3s;
    border: 1px solid #eef2f7;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer {
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 0.85rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Validation Result */
.validation-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.validation-result {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.validation-success {
    color: var(--primary-green);
}

.validation-error {
    color: var(--alert-red);
}

.validation-loading {
    color: var(--primary-blue);
}

/* Responsive */
@media (min-width: 768px) {
    .hero-grid {
        flex-direction: row;
        text-align: left;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .start-form {
        flex-direction: row;
        max-width: 500px;
    }

    .info-grid {
        flex-direction: row;
    }

    .info-section h2 {
        text-align: left;
    }
}

/* Small Asterisk */
.asterisk-small {
    font-size: 0.6em;
    vertical-align: top;
    margin-left: 2px;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background-color: #fff;
}

.content-article {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.content-article h2 {
    color: var(--accent-blue);
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f7ff;
    padding-bottom: 10px;
}

.content-article h2:first-child {
    margin-top: 0;
}

.content-article h3 {
    color: var(--primary-pink);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-article p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-article ul,
.content-article ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-article li {
    margin-bottom: 10px;
    color: #555;
}

.content-article strong {
    color: var(--text-dark);
}

.content-article .highlight-box {
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.content-article .alert-box {
    background-color: #fff0f6;
    border-left: 4px solid var(--primary-pink);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.modal.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #999;
}

/* Footer Buttons */
.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-footer {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Validation Result */
.validation-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.validation-result {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.validation-success {
    color: var(--primary-green);
}

.validation-error {
    color: var(--alert-red);
}

.validation-loading {
    color: var(--primary-blue);
}

/* Responsive */
@media (min-width: 768px) {
    .hero-grid {
        flex-direction: row;
        text-align: left;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .start-form {
        flex-direction: row;
        max-width: 500px;
    }

    .info-grid {
        flex-direction: row;
    }

    .info-section h2 {
        text-align: left;
    }
}

/* Small Asterisk */
.asterisk-small {
    font-size: 0.6em;
    vertical-align: top;
    margin-left: 2px;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background-color: #fff;
}

.content-article {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.content-article h2 {
    color: var(--accent-blue);
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f7ff;
    padding-bottom: 10px;
}

.content-article h2:first-child {
    margin-top: 0;
}

.content-article h3 {
    color: var(--primary-pink);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-article p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-article ul,
.content-article ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-article li {
    margin-bottom: 10px;
    color: #555;
}

.content-article strong {
    color: var(--text-dark);
}

.content-article .highlight-box {
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.content-article .alert-box {
    background-color: #fff0f6;
    border-left: 4px solid var(--primary-pink);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.modal.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #999;
}

/* Footer Buttons */
.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-footer {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-footer:hover {
    background: var(--white);
    color: var(--accent-blue);
}

/* Admin Dashboard Styles */
.admin-login-screen {
    max-width: 400px;
    margin: 100px auto;
    text-align: center;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.admin-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    background: #eee;
}

.admin-tab.active {
    background: var(--primary-blue);
    color: #fff;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.admin-table tr:hover {
    background: #f1f1f1;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-Qualified {
    background: #d4edda;
    color: #155724;
}

.status-Disqualified {
    background: #f8d7da;
    color: #721c24;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s;
}

.modal.hidden {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.answer-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.answer-question {
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.content-article .alert-box {
    background-color: #fff0f6;
    border-left: 4px solid var(--primary-pink);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.modal.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #999;
}

/* Footer Buttons */
.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-footer {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-footer:hover {
    background: var(--white);
    color: var(--accent-blue);
}

/* Admin Dashboard Styles */
.admin-login-screen {
    max-width: 400px;
    margin: 100px auto;
    text-align: center;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.admin-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    background: #eee;
}

.admin-tab.active {
    background: var(--primary-blue);
    color: #fff;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.admin-table tr:hover {
    background: #f1f1f1;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-Qualified {
    background: #d4edda;
    color: #155724;
}

.status-Disqualified {
    background: #f8d7da;
    color: #721c24;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s;
}

.modal.hidden {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.answer-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.answer-question {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.answer-value {
    color: var(--primary-blue);
    margin-top: 2px;
}

/* Kanban Board Styles */
.kanban-board {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding: 20px 0;
    align-items: flex-start;
    height: calc(100vh - 140px);
    /* Fixed height for scrolling */
}

.kanban-column {
    background: #f4f5f7;
    min-width: 300px;
    max-width: 300px;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #ebecf0;
    max-height: 100%;
    /* For internal scrolling */
}

.kanban-header {
    font-weight: 700;
    color: #42526e;
    padding-bottom: 12px;
    border-bottom: 2px solid #dfe1e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.kanban-count {
    background: #dfe1e6;
    color: #42526e;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Scrollable area within column */
.kanban-column-content {
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 4px;
    /* Space for scrollbar */
}

/* Custom Scrollbar for columns */
.kanban-column-content::-webkit-scrollbar {
    width: 6px;
}

.kanban-column-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.kanban-card {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 2px rgba(9, 30, 66, 0.25);
    cursor: grab;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
    /* For status color */
    position: relative;
}

.kanban-card:hover {
    box-shadow: 0 4px 8px rgba(9, 30, 66, 0.25);
    transform: translateY(-2px);
    background: #fff;
}

.kanban-card:active {
    cursor: grabbing;
    transform: rotate(2deg);
}

.card-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #172b4d;
    font-size: 0.95rem;
}

.card-info {
    font-size: 0.8rem;
    color: #6b778c;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    border-top: 1px solid #f4f5f7;
    padding-top: 12px;
}

.btn-card {
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex: 1;
}

.btn-whatsapp {
    background-color: #36B37E;
    /* Green */
}

.btn-whatsapp:hover {
    background-color: #00875A;
}

.btn-details {
    background-color: #0052CC;
    /* Blue */
}

.btn-details:hover {
    background-color: #0747A6;
}

/* Drag & Drop Visuals */
.kanban-column.drag-over {
    background: #E3FCEF;
    border: 2px dashed #36B37E;
}

.kanban-card.dragging {
    opacity: 0.4;
    background: #ebecf0;
    box-shadow: none;
}

/* Column Specific Colors (Optional Borders) */
.kanban-column[data-stage="Lead Novo"] .kanban-card {
    border-left-color: #0052CC;
}

.kanban-column[data-stage="Contato Feito"] .kanban-card {
    border-left-color: #FFAB00;
}

.kanban-column[data-stage="Follow-up"] .kanban-card {
    border-left-color: #6554C0;
}

.kanban-column[data-stage="Coleta de Documentos"] .kanban-card {
    border-left-color: #00B8D9;
}

.kanban-column[data-stage="Proposta/Contrato"] .kanban-card {
    border-left-color: #FF5630;
}

.kanban-column[data-stage="Fechado"] .kanban-card {
    border-left-color: #36B37E;
}

.kanban-column[data-stage="Perdido"] .kanban-card {
    border-left-color: #505F79;
}

/* Mobile 'Move' Button (Hidden on Desktop) */
.btn-move {
    display: none;
    /* Hidden by default */
    background-color: #6554C0;
    /* Purple */
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    color: white;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex: 1;
}

.btn-move:hover {
    background-color: #5243AA;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .crm-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        text-align: center;
    }

    .crm-container {
        padding: 10px;
        height: calc(100vh - 110px);
        /* Adjust for taller header */
    }

    .kanban-board {
        gap: 15px;
        padding: 10px 0;
        scroll-snap-type: x mandatory;
        /* Snap effect */
    }

    .kanban-column {
        min-width: 85vw;
        /* Show 85% of width */
        max-width: 85vw;
        scroll-snap-align: center;
        /* Center the column */
    }

    /* Show 'Move' button on mobile */
    .btn-move {
        display: inline-flex;
    }

    /* Hide drag handle visual cues since drag is disabled/hard */
    .kanban-card:active {
        transform: none;
    }

    /* Enhance Card Look on Mobile */
    .kanban-column {
        background: #ebecf0;
        /* Slightly darker to make white cards pop */
        border: 1px solid #dfe1e6;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        /* Shadow for the column itself */
    }

    .kanban-card {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        /* Stronger shadow for leads */
        border: 1px solid #e0e0e0;
        margin-bottom: 10px;
    }
}