/* Variables */
:root {
    /* Colors */
    --primary: #0d6efd;
    --primary-light: #2987e0;
    --primary-dark: #004c99;
    --secondary: #6c757d;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #0dcaf0;
    --light: #f8f9fa;
    --dark: #212529;
    
    /* Neutrals */
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* UI */
    --body-bg: var(--neutral-100);
    --card-bg: white;
    --text-color: var(--neutral-700);
    --text-muted: var(--neutral-500);
    --border-color: var(--neutral-200);
    
    /* Sizes */
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 70px;
    --topbar-height: 70px;
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Animation */
    --transition-fast: 0.15s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode variables */
[data-bs-theme="dark"] {
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #2563eb;
    
    --body-bg: var(--neutral-900);
    --card-bg: var(--neutral-800);
    --text-color: var(--neutral-200);
    --text-muted: var(--neutral-400);
    --border-color: var(--neutral-700);
    
    color-scheme: dark;
    --light: #343a40;
    --dark: #f8f9fa;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 11.5pt;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--neutral-800);
    font-weight: 600;
    line-height: 1.3;
}

[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5,
[data-bs-theme="dark"] h6 {
    color: var(--neutral-100);
}

/* Layout Structure */
.main-content-full {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.sidebar {
    width: var(--sidebar-width);
    background-color: white;
    border-right: 1px solid #eaeaea;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
    overflow-y: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: all 0.3s;
    background-color: #f5f7fa;
}

.sidebar-collapsed .sidebar {
    width: var(--sidebar-collapsed-width);
}

.sidebar-collapsed .main-content {
    margin-left: var(--sidebar-collapsed-width);
}

@media (max-width: 991.98px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-sidebar-open .sidebar {
        transform: translateX(0);
    }
}

/* Sidebar Components */
.sidebar-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 1rem;
}

.sidebar-header h5 {
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    opacity: 1;
    transition: opacity var(--transition);
}

.sidebar-collapsed .sidebar-header h5 {
    opacity: 0;
    width: 0;
}

.sidebar-menu {
    flex: 1;
    padding: 1rem 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-item i {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.sidebar-item span {
    white-space: nowrap;
    overflow: hidden;
    opacity: 1;
    transition: opacity var(--transition);
}

.sidebar-collapsed .sidebar-item span {
    opacity: 0;
    width: 0;
}

.sidebar-item:hover {
    background-color: rgba(13, 110, 253, 0.05);
    color: var(--primary);
}

[data-bs-theme="dark"] .sidebar-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-item.active {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    font-weight: 500;
    border-left: 3px solid var(--primary);
}

.sidebar-footer {
    padding: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
    border-top: 1px solid #eaeaea;
    text-align: center;
}

.sidebar-collapsed .sidebar-footer span {
    display: none;
}

/* Topbar */
.topbar {
    height: var(--topbar-height);
    background-color: white;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.topbar-title {
    display: flex;
    align-items: center;
}

.topbar-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    margin-right: 0.75rem;
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    margin-right: 1rem;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.sidebar-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

[data-bs-theme="dark"] .sidebar-toggle:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.topbar-title h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.topbar-actions {
    display: flex;
    align-items: center;
}

.last-update {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.last-update i {
    margin-right: 0.5rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #495057;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s;
}

.theme-toggle i {
    font-size: 1.2rem;
    color: #495057;
}

[data-bs-theme="dark"] .theme-toggle {
    background-color: #495057;
}

[data-bs-theme="dark"] .theme-toggle i {
    color: #f8f9fa;
}

/* Dashboard Content */
.dashboard-content {
    padding: 2rem;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.card-widget {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.card-widget:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.card-widget.small {
    grid-column: span 3;
}

.card-widget.medium {
    grid-column: span 6;
}

.card-widget.large {
    grid-column: span 9;
}

.card-widget.full {
    grid-column: span 12;
}

@media (max-width: 1199.98px) {
    .card-widget.small {
        grid-column: span 4;
    }
    
    .card-widget.medium {
        grid-column: span 6;
    }
    
    .card-widget.large {
        grid-column: span 12;
    }
}

@media (max-width: 991.98px) {
    .card-widget.small {
        grid-column: span 6;
    }
    
    .card-widget.medium {
        grid-column: span 12;
    }
}

@media (max-width: 767.98px) {
    .card-widget.small {
        grid-column: span 12;
    }
}

/* Widget Styles */
.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.widget-header h2 {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.widget-header h2 i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    color: var(--primary);
}

.widget-header.alert h2 i {
    color: var(--warning);
}

.widget-actions {
    display: flex;
    align-items: center;
}

.widget-body {
    padding: 1.25rem;
}

/* Stat Widgets Row */
.widgets-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1199.98px) {
    .widgets-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .widgets-row {
        grid-template-columns: 1fr;
    }
}

.widget {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.widget:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Stat Widget */
.stat-widget {
    display: flex;
    align-items: center;
    padding: 1.25rem;
}

.widget-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
    color: white;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-success {
    background-color: var(--success);
}

.bg-warning {
    background-color: var(--warning);
}

.bg-danger {
    background-color: var(--danger);
}

.bg-info {
    background-color: var(--info);
}

.widget-content {
    display: flex;
    flex-direction: column;
}

.widget-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-800);
}

[data-bs-theme="dark"] .widget-value {
    color: var(--neutral-100);
}

.widget-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Progress Container */
.progress-container {
    display: flex;
    flex-wrap: wrap;
}

.progress-stats {
    flex: 1;
    min-width: 250px;
    padding-right: 1.5rem;
}

.progress-overview {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .progress-container {
        flex-direction: column-reverse;
    }
    
    .progress-stats {
        padding-right: 0;
        margin-top: 1.5rem;
    }
    
    .progress-overview {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.progress-stat {
    margin-bottom: 1.25rem;
}

.progress-stat:last-child {
    margin-bottom: 0;
}

.progress-label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.progress-bar-container {
    display: flex;
    align-items: center;
}

.progress {
    flex: 1;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-value {
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.75rem;
    min-width: 36px;
    text-align: right;
}

/* Circular Progress */
.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
}

.circular-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 8;
}

.progress-value {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
    transform-origin: center;
    transform: rotate(0deg);
}

.progress-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-800);
    transition: all 0.5s ease;
}

[data-bs-theme="dark"] .progress-text {
    color: var(--neutral-100);
}

.progress-legend {
    margin-top: 0.75rem;
    text-align: center;
}

.progress-legend span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Timeline */
.timeline {
    padding: 0.5rem 0;
}

.timeline.compact .timeline-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline.compact .timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
}

.timeline-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    color: white;
    background-color: var(--neutral-300);
}

.timeline-icon.active {
    background-color: var(--primary);
}

.timeline-icon.pending {
    background-color: var(--warning);
}

.timeline-icon.completed {
    background-color: var(--success);
}

.timeline-icon.flagged {
    background-color: #ff9800;  /* Cor laranja de alerta */
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* Status Badges */
.status {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.status:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 0.35rem;
}

.status.active {
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary);
}

.status.active:before {
    background-color: var(--primary);
}

.status.pending {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.status.pending:before {
    background-color: var(--warning);
}

.status.completed {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.status.completed:before {
    background-color: var(--success);
}

.status.flagged {
    background-color: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.status.flagged:before {
    background-color: #ff9800;
}

/* Tasks Container */
.tasks-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.task-group {
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.task-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid var(--border-color);
}

[data-bs-theme="dark"] .task-group-header {
    background-color: rgba(255, 255, 255, 0.02);
}

.task-assignee {
    display: flex;
    align-items: center;
}

.assignee-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.5rem;
}

.task-assignee span {
    font-weight: 500;
    font-size: 0.9rem;
}

.task-stats {
    font-size: 0.8rem;
}

.task-list {
    padding: 0.75rem;
}

/* Ajuste para os itens do checklist */
.task-item {
    padding: 0.4rem 0.75rem;
    border-radius: var(--border-radius-sm);
    background-color: var(--card-bg);
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.form-check-label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.task-item:last-child {
    margin-bottom: 0;
}

.task-item.completed .form-check-label {
    text-decoration: line-through;
    color: var(--text-muted);
}

.task-meta {
    margin-top: 0.5rem;
    padding-left: 1.75rem;
    font-size: 0.8rem;
}

.task-info {
    color: var(--text-muted);
}

.task-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.task-tag.warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.task-tag.danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.task-tag.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.task-tag.info {
    background-color: rgba(6, 182, 212, 0.1);
    color: var(--info);
}

.task-tag.flagged {
    background-color: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.task-info {
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Form Check */
.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.form-check-label {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Alert List */
.alert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alert-item {
    display: flex;
    background-color: var(--card-bg);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    padding: 1rem;
}

.alert-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.alert-icon.warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.alert-icon.info {
    background-color: rgba(6, 182, 212, 0.1);
    color: var(--info);
}

.alert-content {
    flex: 1;
}

.alert-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.alert-content p {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.alert-details {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.alert-details li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
}

.alert-details li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.alert-details li:last-child {
    margin-bottom: 0;
}

/* Platform Chips */
.platform-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.platform-chip {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
}

.platform-chip img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 0.5rem;
}

.status-dot.active {
    background-color: var(--success);
}

.status-dot.pending {
    background-color: var(--warning);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 1.25rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.divider:before,
.divider:after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.divider span {
    padding: 0 0.75rem;
}

/* Product Chips */
.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-chip {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.product-chip img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 0.5rem;
}

.product-chip.primary {
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary);
}

.product-chip.secondary {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--secondary);
}

/* Flow Diagram */
.flow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.flow-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 0.75rem;
}

.flow-node.success {
    background-color: var(--success);
}

.flow-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.flow-connector {
    height: 24px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* Team Avatars */
.team-avatars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.team-avatar {
    position: relative;
}

.team-avatar img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--card-bg);
    transition: transform var(--transition-fast);
}

.team-avatar img:hover {
    transform: scale(1.15);
    z-index: 2;
}

.team-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.team-stat {
    text-align: center;
}

.team-stat .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.event-date {
    width: 40px;
    text-align: center;
    margin-right: 0.75rem;
}

.event-day {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    display: block;
}

.event-month {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.event-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.event-time i {
    font-size: 0.7rem;
    margin-right: 0.25rem;
}

/* Toast */
.toast {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
}

.toast-header {
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
}

/* Dropdown */
.dropdown-menu {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    padding: 0.5rem;
    min-width: 180px;
}

.dropdown-item {
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

[data-bs-theme="dark"] .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.dropdown-divider {
    border-top: 1px solid var(--border-color);
    margin: 0.5rem 0;
}

/* Print Styles */
@media print {
    @page {
        size: A4;
        margin: 15mm 10mm 15mm 15mm;
    }
    
    html, body {
        background-color: white !important;
        color: black !important;
        font-size: 11.5pt;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
        max-width: 100% !important;
    }
    
    .sidebar, .topbar, .theme-toggle, .toast-container {
        display: none !important;
    }
    
    .main-content {
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }
    
    .main-content-full {
        display: block !important;
        width: 95% !important;
        max-width: 95% !important;
        margin: 0 auto !important;
        padding: 15px !important;
    }
    
    .journey-section {
        page-break-after: always !important;
        break-after: page !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        background-color: white !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .process-step {
        border-left: 4px solid #0066cc !important;
        padding-left: 15px !important;
        margin: 0 auto 25px !important;
        position: relative !important;
        width: 90% !important;
        max-width: 90% !important;
    }
    
    .process-step.step-0 { border-left-color: #0066cc !important; }
    .process-step.step-1 { border-left-color: #22c55e !important; }
    .process-step.step-2 { border-left-color: #06b6d4 !important; }
    .process-step.step-3 { border-left-color: #f59e0b !important; }
    
    .process-step:before {
        display: none !important;
    }
    
    .step-header {
        margin-bottom: 15px !important;
    }
    
    .step-number {
        font-size: 16pt !important;
        font-weight: bold !important;
        color: #0066cc !important;
        margin-right: 8px !important;
        min-width: 30px !important;
    }
    
    .step-0 .step-number { color: #0066cc !important; }
    .step-1 .step-number { color: #22c55e !important; }
    .step-2 .step-number { color: #06b6d4 !important; }
    .step-3 .step-number { color: #f59e0b !important; }
    
    .step-title {
        font-size: 16pt !important;
        font-weight: bold !important;
        color: #333 !important;
    }
    
    .step-objective {
        background-color: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        padding: 10px !important;
        margin-bottom: 15px !important;
        border-radius: 6px !important;
    }
    
    .etapa-numerada .numero {
        font-weight: 700 !important;
        margin-right: 8px !important;
        font-size: 12pt !important;
    }
    
    .process-step.step-0 .etapa-numerada .numero { color: #0066cc !important; }
    .process-step.step-1 .etapa-numerada .numero { color: #22c55e !important; }
    .process-step.step-2 .etapa-numerada .numero { color: #06b6d4 !important; }
    .process-step.step-3 .etapa-numerada .numero { color: #f59e0b !important; }
    
    .etapa-detalhe {
        margin-left: 20px !important;
        margin-bottom: 15px !important;
        padding-left: 8px !important;
        border-left: 2px dashed #e2e8f0 !important;
    }
    
    .destaque-box {
        background-color: #f8fafc !important;
        border-left: 4px solid #0d6efd !important;
        border-radius: 5px !important;
        padding: 10px !important;
        margin: 12px 0 !important;
        box-shadow: none !important;
    }
    
    .destaque-box.warning {
        border-left-color: #ffc107 !important;
        background-color: #fff8e6 !important;
    }
    
    .destaque-box.success {
        border-left-color: #198754 !important;
        background-color: #e8f5e9 !important;
    }
    
    .destaque-box.info {
        border-left-color: #0dcaf0 !important;
        background-color: #e6f7fb !important;
    }
    
    .destaque-box.roteiro {
        border-left-color: #6f42c1 !important;
        background-color: #f3eefb !important;
    }
    
    .documentos-container {
        background-color: #f8fafc !important;
        border-radius: 5px !important;
        padding: 10px !important;
        margin: 12px 0 !important;
        border: 1px solid #e2e8f0 !important;
    }
    
    .documento-tag {
        background-color: white !important;
        border-radius: 3px !important;
        padding: 6px 8px !important;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
        margin: 3px !important;
        border: 1px solid #e9ecef !important;
    }
    
    .documento-tag.pessoal i {
        color: #0d6efd !important;
    }
    
    .documento-tag.financeiro i {
        color: #198754 !important;
    }
    
    .step-checklist {
        background-color: #f8fafc !important;
        border-radius: 5px !important;
        padding: 10px !important;
        margin: 12px 0 !important;
        border: 1px solid #e2e8f0 !important;
    }
    
    .responsaveis-container {
        margin-bottom: 15px !important;
    }
    
    .responsavel-tag {
        background-color: white !important;
        border: 1px solid #e2e8f0 !important;
        padding: 4px 8px !important;
        border-radius: 4px !important;
    }
    
    .termo-empresa { font-weight: 700 !important; color: #0066cc !important; }
    .termo-cliente { font-weight: 700 !important; color: #22c55e !important; }
    .termo-responsavel.bancario { font-weight: 700 !important; color: #3b82f6 !important; }
    .termo-responsavel.imoveis { font-weight: 700 !important; color: #10b981 !important; }
    .termo-responsavel.juridico { font-weight: 700 !important; color: #8b5cf6 !important; }
    .termo-responsavel.operacional { font-weight: 700 !important; color: #f59e0b !important; }
    
    a {
        text-decoration: none !important;
        color: black !important;
    }
    
    /* Garantir que as imagens não sejam cortadas */
    img {
        max-width: 100% !important;
        page-break-inside: avoid !important;
    }
    
    /* Evitar quebras dentro de elementos importantes */
    .task-item, .detail-item, .etapa-detalhe {
        page-break-inside: avoid !important;
    }
    
    /* Remover animações */
    .fade-in, .slide-up {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    /* Forçar cores em elementos específicos */
    .detail-number { 
        font-weight: 600 !important;
        min-width: 40px !important;
    }
    
    .step-0 .detail-number { color: #0066cc !important; }
    .step-1 .detail-number { color: #22c55e !important; }
    .step-2 .detail-number { color: #06b6d4 !important; }
    .step-3 .detail-number { color: #f59e0b !important; }
    
    /* Melhorar visibilidade de texto */
    p, li, .form-check-label {
        color: #333333 !important;
    }
    
    /* Melhorar visibilidade de títulos */
    h1, h2, h3, h4, h5, h6 {
        color: #111111 !important;
    }

    /* Overrides quando o JS adiciona a classe 'printing' no body */
    body.printing { 
        transform: none !important; 
        transform-origin: initial !important; 
    }
    body.printing .main-content { 
        width: 100% !important; 
        max-width: 100% !important; 
        margin: 0 !important; 
        padding: 0 !important; 
    }
    body.printing .journey-section { 
        width: 100% !important; 
        max-width: 100% !important; 
        margin: 0 !important; 
        padding: 0 !important; 
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 0.5s ease;
}

.slide-up {
    animation: slideUp 0.5s ease;
}

/* Personalização da jornada com estilo de activity-timeline */
.journey-section {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.journey-timeline .activity-indicator {
    width: 24px;
    height: 24px;
}

.journey-timeline .activity-content {
    margin-bottom: 2rem;
}

.journey-timeline .activity-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.journey-timeline .activity-time {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.journey-timeline .activity-details p {
    font-size: 1rem;
}

.journey-timeline .link-highlight {
    color: var(--primary);
    font-weight: 500;
    border-bottom: 1px dashed var(--primary-light);
    text-decoration: none;
    transition: color var(--transition-fast), border-bottom var(--transition-fast);
}

.journey-timeline .link-highlight:hover {
    color: var(--primary-light);
    border-bottom: 1px solid var(--primary-light);
}

.journey-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .journey-section {
        padding: 2rem 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .journey-timeline .activity-header h4 {
        font-size: 1rem;
    }
    
    .journey-timeline .activity-details p {
        font-size: 0.9rem;
    }
}

/* Timeline Moderna */
.timeline-modern {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-modern:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    width: 2px;
    background-color: var(--neutral-200);
    z-index: 1;
}

.timeline-item-modern {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-item-modern:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 10px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    z-index: 2;
}

.timeline-dot.primary { background-color: var(--primary); }
.timeline-dot.success { background-color: var(--success); }
.timeline-dot.warning { background-color: var(--warning); }
.timeline-dot.info { background-color: var(--info); }
.timeline-dot.danger { background-color: var(--danger); }
.timeline-dot.secondary { background-color: var(--secondary); }

.timeline-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.timeline-content-modern {
    position: relative;
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.timeline-content-modern h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.timeline-content-modern p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.timeline-icon-circle {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .timeline-modern:before {
        left: 50%;
        margin-left: -1px;
    }
    
    .timeline-item-modern {
        padding-left: 0;
        margin-bottom: 3rem;
    }
    
    .timeline-item-modern:nth-child(odd) {
        padding-right: 50%;
        padding-left: 0;
        text-align: right;
    }
    
    .timeline-item-modern:nth-child(even) {
        padding-left: 50%;
        padding-right: 0;
    }
    
    .timeline-dot {
        left: 50%;
        margin-left: -7px;
    }
    
    .timeline-item-modern:nth-child(odd) .timeline-content-modern {
        margin-right: 40px;
    }
    
    .timeline-item-modern:nth-child(even) .timeline-content-modern {
        margin-left: 40px;
    }
    
    .timeline-item-modern:nth-child(odd) .timeline-icon-circle {
        right: auto;
        left: 0.75rem;
    }
    
    .timeline-date {
        position: absolute;
        top: 8px;
        width: 100%;
    }
    
    .timeline-item-modern:nth-child(odd) .timeline-date {
        left: 54%;
        text-align: left;
    }
    
    .timeline-item-modern:nth-child(even) .timeline-date {
        right: 54%;
        text-align: right;
    }
}

@media (max-width: 767.98px) {
    .timeline-modern {
        padding-left: 1rem;
    }
    
    .timeline-content-modern {
        padding-right: 3.5rem;
    }
}

/* Campaign Banner */
.campaign-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    max-height: 300px;
    overflow: hidden;
}

.campaign-banner img {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
}

.banner-content {
    padding: 2rem;
    color: white;
    max-width: 600px;
    z-index: 3;
}

.banner-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-content .btn-lg {
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
}

.banner-content .btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .campaign-banner {
        max-height: 250px;
    }
    
    .campaign-banner img {
        height: 250px;
    }
    
    .banner-content h2 {
        font-size: 1.6rem;
    }
    
    .banner-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .campaign-banner {
        max-height: 200px;
    }
    
    .campaign-banner img {
        height: 200px;
    }
    
    .banner-content {
        padding: 1rem;
    }
    
    .banner-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .banner-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .banner-content .btn-lg {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

/* Animações da Timeline Moderna */
.timeline-item-modern {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.timeline-animated:before {
    transform: scaleY(1);
}

.timeline-modern:before {
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 1.5s ease;
}

/* Activity Timeline */
.activity-timeline {
    position: relative;
    padding: 0.5rem 0;
}

.activity-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 2px;
    background-color: var(--neutral-200);
}

.activity-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.75rem;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-indicator {
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 2;
}

.activity-indicator.primary { background-color: var(--primary); }
.activity-indicator.success { background-color: var(--success); }
.activity-indicator.warning { background-color: var(--warning); }
.activity-indicator.info { background-color: var(--info); }
.activity-indicator.danger { background-color: var(--danger); }

.activity-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.activity-header h4 {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
}

.activity-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.activity-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.activity-attachment {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background-color: var(--neutral-100);
    border-radius: 4px;
    font-size: 0.8rem;
}

.activity-attachment i {
    color: #e74c3c;
    margin-right: 0.5rem;
}

.activity-person {
    display: flex;
    align-items: center;
}

.activity-person img, 
.activity-persons img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.5rem;
    border: 2px solid var(--card-bg);
}

.activity-person span {
    font-size: 0.85rem;
}

.activity-persons {
    display: flex;
    align-items: center;
}

.activity-persons img {
    margin-right: -10px;
}

.activity-persons-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--neutral-200);
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Layout ajustado sem sidebar */
.main-content-full {
    width: 100%;
    min-height: 100vh;
}

/* Estilo para o widget de links e mensagens */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.resource-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-right: 1rem;
}

.resource-icon {
    font-size: 2.5rem;
    color: #ff0000;
    margin-right: 1rem;
    width: 48px;
    text-align: center;
}

.resource-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.resource-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Estilo para mensagens do WhatsApp */
.whatsapp-messages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #e5ddd5;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAApgAAAKYB3X3/OAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAANCSURBVEiJtZZPbBtFFMZ/M7ubXdtdb1xSFyeilBapySVU8h8OoFaooFSqiihIVIpQBKci6KEg9Q6H9kovIHoCIVQJJCKE1ENFjnAgcaSGC6rEnxBwA04Tx43t2FnvDAfjkNibxgHxnWb2e/u992bee7tCa00YFsffekFY+nUzFtjW0LrvjRXrCDIAaPLlW0nHL0SsZtVoaF98mLrx3pdhOqLtYPHChahZcYYO7KvPFxvRl5XPp1sN3adWiD1ZAqD6XYK1b/dvE5IWryTt2udLFedwc1+9kLp+vbbpoDh+6TklxBeAi9TL0taeWpdmZzQDry0AcO+jQ12RyohqqoYoo8RDwJrU+qXkjWtfi8Xxt58BdQuwQs9qC/afLwCw8tnQbqYAPsgxE1S6F3EAIXux2oQFKm0ihMsOF71dHYx+f3NND68ghCu1YIoePPQN1pGRABkJ6Bus96CutRZMydTl+TvuiRW1m3n0eDl0vRPcEysqdXn+jsQPsrHMquGeXEaY4Yk4wxWcY5V/9scqOMOVUFthatyTy8QyqwZ+kDURKoMWxNKr2EeqVKcTNOajqKoBgOE28U4tdQl5p5bwCw7BWquaZSzAPlwjlithJtp3pTImSqQRrb2Z8PHGigD4RZuNX6JYj6wj7O4TFLbCO/Mn/m8R+h6rYSUb3ekokRY6f/YukArN979jcW+V/S8g0eT/N3VN3kTqWbQ428m9/8k0P/1aIhF36PccEl6EhOcAUCrXKZXXWS3XKd2vc/TRBG9O5ELC17MmWubD2nKhUKZa26Ba2+D3P+4/MNCFwg59oWVeYhkzgN/JDR8deKBoD7Y+ljEjGZ0sosXVTvbc6RHirr2reNy1OXd6pJsQ+gqjk8VWFYmHrwBzW/n+uMPFiRwHB2I7ih8ciHFxIkd/3Omk5tCDV1t+2nNu5sxxpDFNx+huNhVT3/zMDz8usXC3ddaHBj1GHj/As08fwTS7Kt1HBTmyN29vdwAw+/wbwLVOJ3uAD1wi/dUH7Qei66PfyuRj4Ik9is+hglfbkbfR3cnZm7chlUWLdwmprtCohX4HUtlOcQjLYCu+fzGJH2QRKvP3UNz8bWk1qMxjGTOMThZ3kvgLI5AzFfo379UAAAAASUVORK5CYII=");
    border-radius: var(--border-radius);
    padding: 12px;
    max-height: 500px;
    overflow-y: auto;
    font-family: "Segoe UI", Helvetica, Arial, sans-serif;
}

.message-header {
    font-size: 0.75rem;
    font-weight: 500;
    color: #1f7aec;
    margin-bottom: 2px;
    padding-left: 8px;
}

.whatsapp-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
    position: relative;
    margin-bottom: 4px;
}

.whatsapp-message.received {
    align-self: flex-start;
}

.whatsapp-message.sent {
    align-self: flex-end;
}

.message-content {
    padding: 8px 10px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.whatsapp-message.received .message-content {
    background-color: white;
    border-top-left-radius: 0;
}

.whatsapp-message.sent .message-content {
    background-color: #dcf8c6;
    border-top-right-radius: 0;
}

.whatsapp-message.sent .message-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 8px;
    height: 13px;
    background-color: #dcf8c6;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: rotate(90deg);
}

.whatsapp-message.received .message-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 8px;
    height: 13px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    transform: rotate(0deg);
}

.message-content p {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-time {
    font-size: 0.7rem;
    color: #8c8c8c;
    align-self: flex-end;
    margin-top: 2px;
    margin-right: 8px;
}

.message-content strong {
    font-weight: 600;
}

.whatsapp-link {
    color: #1f7aec;
    text-decoration: none;
}

.whatsapp-button {
    background-color: #ebedf0;
    color: #262626;
    padding: 8px 12px;
    border-radius: 24px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 6px 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.message-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.status-message {
    background-color: #f9f9c0 !important;
    align-self: center;
    max-width: 90%;
    border-radius: 8px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.system-message {
    background-color: rgba(225, 245, 254, 0.92) !important;
    align-self: center;
    max-width: 90%;
    border-radius: 8px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    color: #444;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    html, body {
        font-size: 14px;
    }
    
    .youtube-banner {
        max-width: 100%;
    }
    
    .whatsapp-messages {
        max-height: 400px;
    }
    
    .whatsapp-message {
        max-width: 90%;
    }
    
    .journey-section {
        padding: 1rem 0.75rem;
        margin: 1rem 0;
    }
    
    .process-step {
        padding-left: 1rem;
        margin-bottom: 1.5rem;
        border-left-width: 3px;
    }
    
    .step-header {
        margin-bottom: 0.75rem;
    }
    
    .step-number {
        font-size: 1.25rem;
        margin-right: 0.5rem;
        min-width: 30px;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-objective {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }
    
    .etapa-numerada {
        margin-bottom: 0.5rem;
    }
    
    .etapa-numerada .numero {
        font-size: 0.9rem;
        margin-right: 0.5rem;
    }
    
    .etapa-detalhe {
        margin-left: 1rem;
        margin-bottom: 1rem;
        padding-left: 0.5rem;
    }
    
    .destaque-box {
        padding: 0.75rem;
        margin: 0.75rem 0;
        font-size: 0.9rem;
    }
    
    .documentos-container {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .documento-tag {
        padding: 0.35rem 0.5rem;
        margin: 0.25rem;
        font-size: 0.8rem;
    }
    
    .responsavel-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .step-checklist {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .form-check-label {
        font-size: 0.9rem;
    }
    
    /* Ajustes específicos para mobile */
    .sidebar {
        position: fixed;
        width: 100%;
        height: 100%;
        left: -100%;
        transition: left 0.3s ease;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .topbar {
        padding: 0 1rem;
    }
    
    .topbar-title h1 {
        font-size: 1.2rem;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .theme-toggle {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .btn-mobile-menu {
        display: block;
        margin-right: 1rem;
    }
}

/* Botão de menu mobile */
.btn-mobile-menu {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #495057;
    cursor: pointer;
}

@media (max-width: 768px) {
    .btn-mobile-menu {
        display: block;
    }
    
    .last-update {
        display: none;
    }
    
    .topbar-actions .btn-primary {
        padding: 0.375rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* Overlay para quando o menu mobile está aberto */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

/* Ajustes para impressão */
@media print {
    body {
        font-size: 11.5pt;
        width: 100%;
    }
    
    .sidebar, .topbar, .theme-toggle {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0;
        padding: 0;
    }
    
    .dashboard-content {
        padding: 0;
    }
    
    .journey-section {
        break-inside: avoid;
        page-break-inside: avoid;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
}

/* Estilos para banners do YouTube */
.youtube-partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px auto;
    max-width: 500px;
}

.youtube-link {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.youtube-banner {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .youtube-banner {
        max-width: 100%;
    }
}

/* Estilos para o Simulador de WhatsApp */
.whatsapp-simulator {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: "Segoe UI", Helvetica, Arial, sans-serif;
    background-color: #111B21;
    height: 80vh;
    max-height: 700px;
    display: flex;
    flex-direction: column;
}

/* Cabeçalho do WhatsApp */
.whatsapp-header {
    background-color: #075E54;
    color: white;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    margin-right: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-avatar img {
    width: 80%;
    height: auto;
}

.contact-name {
    font-weight: 600;
    font-size: 16px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.header-actions i {
    font-size: 18px;
}

/* Área da Conversa */
.whatsapp-chat {
    flex: 1;
    background-color: #0B141A;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFHGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyMC0wMS0xMFQxMzozODozNCswNTozMCIgeG1wOk1vZGlmeURhdGU9IjIwMjAtMDEtMTBUMTM6NDI6MTkrMDU6MzAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjAtMDEtMTBUMTM6NDI6MTkrMDU6MzAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0ic1JHQiBJRUM2MTk2Ni0yLjEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODFjMzVmYzQtMGE4ZC1jMzQ5LWI5YWMtYjYzOTFkODRhZmJkIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjgxYzM1ZmM0LTBhOGQtYzM0OS1iOWFjLWI2MzkxZDg0YWZiZCIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjgxYzM1ZmM0LTBhOGQtYzM0OS1iOWFjLWI2MzkxZDg0YWZiZCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ODFjMzVmYzQtMGE4ZC1jMzQ5LWI5YWMtYjYzOTFkODRhZmJkIiBzdEV2dDp3aGVuPSIyMDIwLTAxLTEwVDEzOjM4OjM0KzA1OjMwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pkd4p98AAAYKSURBVGiBzdpbjBVUFAbgb4aZtlwKBQqC0AoIIl6i4IUgoiAm3h5QDInRB2MSH8QnE+ODzyb6oCY+iBdIDInGxGhUhIAGDKIIGAVEW6oUaAu0hdIydHqm4+OePfvsczlnDi3TxUl2zuyZvdf619r/WmvvBhyAJjyAfliJl/A7fsEfOBEr8Aas97L/ItyF25X/YxsuzyWgHm+nntXhDhzX+5P3/JL6ndrSXFJj+qEF430OftcU1+Ml3I0DFSBh1NUPDGLgZDM2NohZQYiW3qy3NKtfEtTMnTQceCfV9aQ6I7+DH0EjTsNpOAt/YnFXQurwJBbgLlyJy/qgciF+xecYknmIKwJTq4N0+eKCwZhSlTrHYboPZmfutuJWLOqqwE9jnlgFVRlCb6BHBFyMuWJs7xbRjffwKNbjb5EOrxYv8Tg+x+8i7ZWl5rDJrNpKl0wxdXIk26bsf/o/Yw1WkJ+LnuQSTMYYjRYnK6JeBMQRNlrrhsAt9c0agsGYkEiYLrxtpOFKQRTEi2Iu8hmxolJOdB8qM8JOO2CGLBcMMX5y4MTpFmMulugWZ6L3W0WKu0OU29m4GGdgYKp/A/6xyw0Yxfk4I/nRYJRVdmBk9lLXgbbiM8Zg5uABZlbVMUB8c0ukDdPq9NZ0gQPxXJ3o19K0Pm2eGXO9YvFl4KPSzaZE0GhRmT2DGV2LF4lXDYmU2oqXRDXVhctE6cyo3uiOxC8dXmCsmfLDolDprKpHm0RZVIqmVEsLnhN52JF4CefhUBF1K3GJiJxUj2XJdUbqmFe6k7dCMvCAK9b3hPbYgWU4R2OY5xpGWI1n8XrqdzFzpZQXGTwxpqw8GDQbKHKOQ7YOOcEfxI03Aeg4J8kbiKV2ZqZSKUCVKNmyajGXo0TuS2O5qB7TqjNFxNa5pmyV2yUBo0fmUJtNdW0GDhE7pyXAocn90eL8YGnm+a+i5O6MvoZS6LjImGRsshMYl+o4kPGIlcnzJK0a1duhxXwdVmcXTU+lQ52W8dCxFcfsSiHpn2NE9ZmNhg3YqLfiCVG+vZg8z8dHmW8OxfyuCEgGfnA5JFKGYWQ70hWRJ+BYcXpSFDDVZi79UiH5KbHI9q1WGI4Z4kxinCip5uPr5Fmnx0OXBMTGZqsNMTXdJI1R4NeYmj9O7PYk0R5UX9o1jVhld+WKUF4LcG9yHyeuC4XnNYqThU7XZs0WK1Snn4DpOnPmMvzaM9OEgA7bsPLvWB0sMXGCVuNcWOZWrm3qnAXyWigw/OSB4jBjW/Iej40izS3BVXaeO+xoFmO9dOFqUXw4mOt6TdgeL0qXZcltKVN2jfOJBnuL04x8FX9NvjGk0pV1/bJWx3WQu7F0PV2rGDsbjDRFt/4/DVcJAXWiSsxLbX/is3w3OZXjHQJGiXP+jPW5Qg7LdZhyW6BNvO2sRxJxlWgpO2NgB9WdrlDgZV2vcYl1nzrRm8JGgR7n9FXuFxuVWZWKaG1TvDFZ3/6Uh06Kw4/3RQn9aNLfmZXCXm3ym+CITMdbzxXn6inroThHT1Nt/iw/L1vfU2aJaiqjFrHqshmqXKx5ixWJJ3XvvOEBkROb8FJyP03PVl/XIbz4VFY7fkA2OJXoWvpYJEZU5v5G8QT4URxapI77dwXBUV0XMEZEekdYIbqeqr3/NCsexbExue8Vhyp5vQbhCVHVNCf3i3FLngEPiQqolH9WJ3eLc4CvxJusTTQvUF5L+QJWiTfMHpu3LlucpM+1IwbXZW6zllgmvCPyecr0oNNPzA+r7LDIEpnCMtGIdLb7WJYroEFsfpbgyUQUic/TjuWb/Ik9YLZifrAww9J0e1qrqD7TWCF2q4tw1BxbnaP8nOD9bkvNaLjIM5amBm0PNLQ2eWO9UQsM+WqTrW7baqvmzfbdPMuChwnvaqv0J2lKt5UxJQEPGrPCkm1LjVlS5we9aA3iPH1Jcr9ObAhXiw3QZW2pL1LGiA3PfXa87VSiIcz8rqHb9n9a/JDvZZKo8QAAAABJRU5ErkJggg==");
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Separador de dia */
.chat-day-separator {
    text-align: center;
    margin: 10px 0;
    font-size: 12px;
}

.chat-day-separator span {
    background-color: #1E2C35;
    color: #d4d4d4;
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

/* Mensagens */
.whatsapp-message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    position: relative;
    margin-bottom: 8px;
}

.whatsapp-message.received {
    align-self: flex-start;
}

.whatsapp-message.sent {
    align-self: flex-end;
}

.message-content {
    padding: 8px 10px 4px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.whatsapp-message.received .message-content {
    background-color: #202C33;
    color: white;
    border-top-left-radius: 0;
}

.whatsapp-message.sent .message-content {
    background-color: #005C4B;
    color: white;
    border-top-right-radius: 0;
}

.whatsapp-message.received .message-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 8px;
    height: 13px;
    background-color: #202C33;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    transform: rotate(0deg);
}

.whatsapp-message.sent .message-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 8px;
    height: 13px;
    background-color: #005C4B;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: rotate(90deg);
}

.message-content p {
    margin: 0 0 4px 0;
    font-size: 14px;
    line-height: 1.4;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-time {
    font-size: 10px;
    color: #8696A0;
    align-self: flex-end;
    margin-top: 2px;
    margin-right: 8px;
}

.message-check {
    color: #53BDEB;
}

.message-content strong {
    font-weight: 600;
}

.whatsapp-link {
    color: #53BDEB;
    text-decoration: none;
}

/* Imagem na mensagem */
.message-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 5px;
}

/* Botões de ação */
.whatsapp-button-container {
    margin-bottom: 15px;
}

.whatsapp-action-button {
    background-color: #FFFFFF;
    color: black;
    padding: 10px 15px;
    border-radius: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: block;
    width: 90%;
    margin: 0 auto;
}

/* Linha dos termos */
.terms-marker {
    margin-right: 4px;
    color: #8696A0;
}

/* Notas do sistema */
.whatsapp-system-note {
    background-color: #182229;
    color: #FFC300;
    padding: 6px 10px;
    border-radius: 8px;
    max-width: 80%;
    margin: 8px auto;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    position: relative;
}

.system-note-time {
    font-size: 10px;
    color: #8696A0;
    position: absolute;
    right: 8px;
    bottom: -14px;
}

/* Notificações do sistema */
.whatsapp-system-notification {
    background-color: #182229;
    color: #8696A0;
    padding: 6px 10px;
    border-radius: 8px;
    max-width: 85%;
    margin: 8px auto;
    font-size: 12px;
    text-align: center;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

/* Rodapé do WhatsApp */
.whatsapp-footer {
    background-color: #202C33;
    padding: 10px;
}

.message-input-container {
    display: flex;
    align-items: center;
    background-color: #2A3942;
    border-radius: 20px;
    padding: 8px 10px;
}

.message-input {
    flex: 1;
    border: none;
    font-size: 14px;
    color: #8696A0;
    background: transparent;
}

.send-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #00A884;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    cursor: pointer;
}

/* Identificadores de remetente */
.message-sender {
    font-size: 11px;
    margin-bottom: 2px;
    color: #8696A0;
    font-weight: 500;
}

.whatsapp-message.received .message-sender {
    margin-left: 4px;
}

.whatsapp-message.sent .message-sender {
    margin-right: 4px;
    text-align: right;
}

/* Responsividade */
@media (max-width: 576px) {
    .whatsapp-simulator {
        max-width: 100%;
        height: 70vh;
    }
    
    .whatsapp-message {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .youtube-banner {
        max-width: 100%;
    }
}

/* Estilos para a imagem do responsável */
.step-responsible img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 0.75rem;
}

.step-responsible .responsavel-img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 0.75rem;
}

.step-responsible .avatar {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-weight: 600;
}

.step-0 .avatar { background-color: var(--primary); }
.step-1 .avatar { background-color: var(--success); }
.step-2 .avatar { background-color: var(--info); }
.step-3 .avatar { background-color: var(--warning); }

/* Estilos para impressão */
@media print {
    body {
        background-color: white !important;
        color: black !important;
        font-size: 12pt;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .sidebar, .topbar, .theme-toggle, .toast-container {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 20px !important;
        overflow: visible !important;
    }
    
    .main-content-full {
        display: block !important;
    }
    
    .journey-section {
        page-break-after: always;
        break-after: page;
        margin-bottom: 0;
        border: none !important;
        box-shadow: none !important;
    }
    
    .process-step {
        border-left: 2px solid #333 !important;
        padding-left: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .process-step:before {
        display: none !important;
    }
    
    .step-header {
        margin-bottom: 15px !important;
    }
    
    .step-number {
        font-size: 16pt !important;
        font-weight: bold !important;
    }
    
    .step-title {
        font-size: 16pt !important;
        font-weight: bold !important;
    }
    
    .step-objective {
        background-color: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        padding: 10px !important;
        margin-bottom: 15px !important;
    }
    
    .destaque-box {
        background-color: #f9f9f9 !important;
        border-left: 3px solid #333 !important;
        padding: 10px !important;
        margin: 10px 0 !important;
        box-shadow: none !important;
    }
    
    .documentos-container {
        background-color: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        padding: 10px !important;
        margin: 10px 0 !important;
    }
    
    .documento-tag {
        border: 1px solid #ddd !important;
        background-color: white !important;
    }
    
    a {
        text-decoration: none !important;
        color: black !important;
    }
    
    /* Garantir que as imagens não sejam cortadas */
    img {
        max-width: 100% !important;
        page-break-inside: avoid !important;
    }
    
    /* Evitar quebras dentro de elementos importantes */
    .task-item, .detail-item, .etapa-detalhe {
        page-break-inside: avoid !important;
    }
    
    /* Remover animações */
    .fade-in, .slide-up {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Estilos para a seção de responsáveis */
.step-responsaveis {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
}

.responsavel-tag {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 30px;
    padding: 0.4rem 0.8rem 0.4rem 0.4rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
    border: 1px solid var(--neutral-200);
}

.responsavel-tag .responsavel-img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 0.5rem;
}

.responsavel-tag span {
    font-weight: 500;
    font-size: 0.9rem;
}

.responsavel-tag::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
    margin-left: 0.5rem;
}

.step-0 .responsavel-tag::after {
    background-color: var(--primary);
}

.step-1 .responsavel-tag::after {
    background-color: var(--success);
}

.step-2 .responsavel-tag::after {
    background-color: var(--info);
}

.step-3 .responsavel-tag::after {
    background-color: var(--warning);
}

[data-bs-theme="dark"] .responsavel-tag {
    background-color: var(--neutral-800);
    color: var(--neutral-200);
    border-color: var(--neutral-700);
}

/* Estilos para a seção de responsáveis */
.responsaveis-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.responsaveis-titulo {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-responsaveis {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
}

.responsavel-tag {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 6px;
    padding: 0.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
    border: 1px solid var(--neutral-200);
}

.responsavel-tag .responsavel-img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 0.4rem;
}

.responsavel-tag span {
    font-weight: 500;
    font-size: 0.8rem;
}

.responsavel-tag::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #22c55e;
    margin-left: 0.4rem;
}

.step-0 .responsavel-tag::after {
    background-color: var(--primary);
}

.step-1 .responsavel-tag::after {
    background-color: var(--success);
}

.step-2 .responsavel-tag::after {
    background-color: var(--info);
}

.step-3 .responsavel-tag::after {
    background-color: var(--warning);
}

[data-bs-theme="dark"] .responsavel-tag {
    background-color: var(--neutral-800);
    color: var(--neutral-200);
    border-color: var(--neutral-700);
} 

/* Estilos para destacar termos importantes */
.termo-empresa {
    font-weight: 700;
    color: var(--primary);
}

.termo-cliente {
    font-weight: 700;
    color: var(--success);
}

.termo-responsavel {
    font-weight: 700;
}

.termo-responsavel.bancario {
    color: #3b82f6; /* Azul */
}

.termo-responsavel.imoveis {
    color: #10b981; /* Verde */
}

.termo-responsavel.juridico {
    color: #8b5cf6; /* Roxo */
}

.termo-responsavel.operacional {
    color: #f59e0b; /* Laranja */
}

/* Não aplicar estilos especiais dentro do checklist */
.task-item .termo-empresa,
.task-item .termo-cliente,
.task-item .termo-responsavel {
    font-weight: inherit;
    color: inherit;
}

/* Estilos para destacar valores, percentuais e tempo */
.valor-destaque {
    font-weight: 700;
    color: var(--neutral-800);
}

[data-bs-theme="dark"] .valor-destaque {
    color: var(--neutral-200);
}

/* Estilos para tags de documentos */
.documentos-container {
    margin-bottom: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.documentos-titulo {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
    width: 100%;
}

.documento-tag {
    display: inline-flex;
    align-items: center;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    margin: 0.25rem;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    position: relative;
}

.documento-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.documento-tag i {
    font-size: 0.9rem;
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.documento-tag.pessoal i {
    color: var(--primary);
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.documento-tag.financeiro i {
    color: var(--success);
    background-color: rgba(var(--bs-success-rgb), 0.1);
}

.documento-tag span {
    font-weight: 500;
}

.documento-tag::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.documento-tag.pessoal::after {
    background-color: var(--primary);
}

.documento-tag.financeiro::after {
    background-color: var(--success);
}

.documentos-container {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.documentos-titulo {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--neutral-700);
    width: 100%;
}

[data-bs-theme="dark"] .documento-tag {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .documentos-titulo {
    color: var(--neutral-300);
}

/* Estilos para etapas numeradas */
.etapa-numerada {
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-left: 0;
}

.etapa-numerada .numero {
    font-weight: 700;
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1rem;
    position: relative;
    display: inline-block;
    background-color: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    min-width: 30px;
    text-align: left;
}

.etapa-detalhe {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
    padding-left: 0.75rem;
    border-left: 2px dashed var(--border-color);
}

/* Estilos para numeração hierárquica */







/* Cores para os números conforme a etapa */
.process-step.step-0 .etapa-numerada .numero {
    color: var(--primary);
}

.process-step.step-1 .etapa-numerada .numero {
    color: var(--success);
}

.process-step.step-2 .etapa-numerada .numero {
    color: var(--info);
}

.process-step.step-3 .etapa-numerada .numero {
    color: var(--warning);
}

.process-step.step-4 .etapa-numerada .numero {
    color: var(--danger);
}

.process-step.step-5 .etapa-numerada .numero {
    color: var(--primary);
}

.process-step.step-6 .etapa-numerada .numero {
    color: var(--success);
}

.process-step.step-7 .etapa-numerada .numero {
    color: var(--info);
}

.process-step.step-8 .etapa-numerada .numero {
    color: var(--warning);
}

.process-step.step-9 .etapa-numerada .numero {
    color: var(--danger);
}

.process-step.step-10 .etapa-numerada .numero {
    color: var(--primary);
}

.process-step.step-11 .etapa-numerada .numero {
    color: var(--success);
}

.process-step.step-12 .etapa-numerada .numero {
    color: var(--info);
}

/* Remover os estilos de fundo colorido */
.etapa-numerada.etapa-1 .numero,
.etapa-numerada.etapa-2 .numero,
.etapa-numerada.etapa-3 .numero,
.etapa-numerada.etapa-4 .numero,
.etapa-numerada.etapa-5 .numero {
    background-color: transparent;
    color: inherit;
    display: inline-block;
    width: auto;
    height: auto;
    justify-content: flex-start;
}

.observacao {
    background-color: rgba(var(--bs-warning-rgb), 0.1);
    border-left: 3px solid var(--warning);
    padding: 0.75rem;
    margin: 1rem 0;
    border-radius: 6px;
    font-size: 0.9rem;
}

.observacao strong {
    color: var(--warning);
    display: block;
    margin-bottom: 0.25rem;
}

/* Estilos para resumo do processo */
.processo-resumo {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.processo-resumo h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}

.processo-resumo h3 {
    font-size: 1.2rem;
    margin: 1.25rem 0 0.75rem;
    color: var(--neutral-700);
}

.processo-resumo .etapa {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.processo-resumo .etapa:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.processo-resumo .etapa-titulo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.processo-resumo .etapa-numero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    margin-right: 0.75rem;
}

.processo-resumo .etapa-nome {
    font-size: 1.25rem;
    font-weight: 600;
}

.processo-resumo ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.processo-resumo li {
    margin-bottom: 0.5rem;
}

.processo-resumo .valores {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.processo-resumo .valores p {
    margin-bottom: 0.5rem;
}

.processo-resumo .observacoes {
    background-color: rgba(var(--bs-warning-rgb), 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 3px solid var(--warning);
}

.processo-resumo .observacoes h4 {
    color: var(--warning);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.processo-resumo .separador {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--neutral-500);
    font-size: 0.9rem;
}

.processo-resumo .separador:before,
.processo-resumo .separador:after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.processo-resumo .separador:before {
    margin-right: 0.5rem;
}

.processo-resumo .separador:after {
    margin-left: 0.5rem;
}

[data-bs-theme="dark"] .processo-resumo h2 {
    color: var(--primary-light);
}

[data-bs-theme="dark"] .processo-resumo h3 {
    color: var(--neutral-300);
}

.observacao ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding-left: 0;
    margin-top: 0.5rem;
    list-style-type: none;
}

.observacao li {
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 1.25rem;
    display: flex;
    align-items: center;
}

.observacao li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--warning);
    margin-top: 1px;
}

