/* Cliente Area Styles */

.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Campo de tipo de consórcio bloqueado (quando vem da simulação) */
#tipoInteresse:disabled {
    background-color: #e9ecef !important;
    cursor: not-allowed !important;
    opacity: 1;
}

.login-page .card {
    border-radius: 15px;
}

/* Cliente Dashboard — varejo x estruturadas */
.client-op-card {
    border-left: 4px solid transparent;
}

.client-op-card--varejo {
    border-left-color: #2563eb;
}

.client-op-card--estruturada {
    border-left-color: #0891b2;
}

.client-op-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.client-op-card--varejo .client-op-card__icon {
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
}

.client-op-card--estruturada .client-op-card__icon {
    background: rgba(8, 145, 178, 0.12);
    color: #0891b2;
}

.client-op-card__title {
    font-weight: 600;
    color: #1e293b;
}

#proposalsChannelFilter .btn {
    font-weight: 500;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -24px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.timeline-content h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 5px;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.card-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
}

/* Forms */
.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.form-control:focus,
.form-select:focus {
    border-color: #556ee6;
    box-shadow: 0 0 0 0.2rem rgba(85, 110, 230, 0.25);
}

.input-group-text {
    background: #f8f9fa;
    border: 1px solid #ced4da;
}

/* Logo Styles */
.logo-login {
    max-height: 50px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.logo-img {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Upload Area Styles */
.upload-area {
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #0d6efd !important;
    background-color: #f8f9fa !important;
}

.upload-area.border-primary {
    border-color: #0d6efd !important;
    background-color: #e7f1ff !important;
}

/* Navbar Cliente - Notifications (sino/dropdown) */
.notification-dropdown-client {
    width: 360px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.client-notification-item {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid #eef2f6;
}

.client-notification-item:last-child {
    border-bottom: none;
}

.client-notification-item:hover {
    background-color: #f8f9fa;
}

.client-notification-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-notification-content h6 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 700;
}

.client-notification-content p {
    margin: 0 0 6px 0;
    font-size: 13px;
    color: #6c757d;
}

.client-notification-cta {
    font-size: 13px;
}