
        :root {
            --primary: #5E56E7;
            --primary-light: #A39DF2;
            --primary-dark: #3D36B0;
            --secondary: #8B85EB;
            --accent: #00C9A7;
            --success: #00C9A7;
            --warning: #FFB86C;
            --danger: #FF6B6B;
            --light: #F8F9FA;
            --dark: #1E1E2D;
            --gray: #6C757D;
            --gray-light: #E9ECEF;
            --gray-dark: #495057;
            --white: #FFFFFF;
            --black: #121212;
            
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
            
            --rounded-sm: 8px;
            --rounded: 12px;
            --rounded-md: 16px;
            --rounded-lg: 20px;
            --rounded-full: 9999px;
            
            --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            
            --header-height: 60px;
            --bottom-nav-height: 60px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: var(--bottom-nav-height);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--dark);
            line-height: 1.3;
        }
        
        /* Layout principal */
        .app-container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        /* Container responsivo */
        .container {
            width: 100%;
            padding: 0 16px;
            max-width: 100%;
        }
        
        /* Header mobile */
        .navbar {
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            padding: 0 16px;
            position: sticky;
            top: 0;
            z-index: 100;
            height: var(--header-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .navbar-brand {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .navbar-logo {
            width: 28px;
            height: 28px;
        }
        
        /* Bottom Navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
            height: var(--bottom-nav-height);
            display: flex;
            z-index: 90;
        }
        
        .nav-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            text-decoration: none;
            font-size: 0.75rem;
            transition: var(--transition);
        }
        
        .nav-item.active {
            color: var(--primary);
        }
        
        .nav-icon {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }
        
        /* Alertas */
        .alert {
            padding: 12px 16px;
            border-radius: var(--rounded-sm);
            margin: 16px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: fadeIn 0.4s ease-out;
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--success);
        }
        
        .alert-success {
            border-left-color: var(--success);
            background-color: rgba(0, 201, 167, 0.08);
            color: var(--success);
        }
        
        /* Cards */
        .card {
            background: var(--white);
            border-radius: var(--rounded);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            overflow: hidden;
            margin-bottom: 16px;
        }
        
        .card-header {
            padding: 16px;
            border-bottom: 1px solid var(--gray-light);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .card-body {
            padding: 16px;
        }
        
        /* Botões */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border-radius: var(--rounded);
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            border: none;
            gap: 8px;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        
        .btn-sm {
            padding: 8px 12px;
            font-size: 0.85rem;
        }
        
        .btn-block {
            display: flex;
            width: 100%;
        }
        
        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(94, 86, 231, 0.2);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid var(--gray-light);
            color: var(--dark);
        }
        
        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .btn-danger {
            background: var(--danger);
            color: var(--white);
        }
        
        /* Formulários */
        .form-group {
            margin-bottom: 16px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
            font-size: 0.9rem;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--gray-light);
            border-radius: var(--rounded-sm);
            background-color: var(--white);
            transition: var(--transition);
            font-family: inherit;
            font-size: 0.95rem;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(94, 86, 231, 0.1);
        }
        
        /* Badges */
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 8px;
            border-radius: var(--rounded-full);
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .badge-primary {
            background-color: rgba(94, 86, 231, 0.1);
            color: var(--primary);
        }
        
        .badge-gray {
            background-color: rgba(108, 117, 125, 0.1);
            color: var(--gray);
        }
        
        /* Timeline */
        .timeline-day {
            margin-bottom: 24px;
        }
        
        .timeline-day-header {
            background: var(--primary);
            color: var(--white);
            padding: 12px 16px;
            margin: 16px 0;
            border-radius: var(--rounded);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--shadow-sm);
        }
        
        .timeline-items {
            padding-left: 16px;
            position: relative;
        }
        
        .timeline-items::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gray-light);
        }
        
        .timeline-item {
            padding: 12px 0;
            position: relative;
        }
        
        .timeline-item-content {
            background: var(--white);
            border-radius: var(--rounded);
            padding: 16px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--primary);
        }
        
        .timeline-item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        
        .timeline-item-title {
            font-weight: 600;
        }
        
        .timeline-item-time {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.8rem;
            color: var(--gray);
        }
        
        /* Trip Info Cards */
        .trip-info-card {
            border-radius: var(--rounded);
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-sm);
        }
        
        .trip-info-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .trip-info-icon i {
            font-size: 14px;
        }
        
        .trip-info-label {
            font-size: 0.6rem;
            color: var(--gray);
            margin-bottom: 2px;
        }
        
        .trip-info-value {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        .progress-container {
            height: 6px;
            background: var(--gray-light);
            border-radius: 3px;
            overflow: hidden;
            margin-top: 12px;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 3px;
            transition: width 0.5s ease;
        }
        
        /* Espaçamentos */
        .mb-2 { margin-bottom: 8px; }
        .mb-3 { margin-bottom: 12px; }
        .mb-4 { margin-bottom: 16px; }
        .mb-6 { margin-bottom: 24px; }
        
        .mt-4 { margin-top: 16px; }
        .mt-6 { margin-top: 24px; }
        
        .py-4 { padding-top: 16px; padding-bottom: 16px; }
        .py-6 { padding-top: 24px; padding-bottom: 24px; }
        
        /* Flex utilities */
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .justify-center { justify-content: center; }
        .gap-2 { gap: 8px; }
        .gap-3 { gap: 12px; }
        .gap-4 { gap: 16px; }
        
        /* Grid utilities */
        .grid { display: grid; }
        .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        
        /* Text utilities */
        .text-center { text-align: center; }
        .text-muted { color: var(--gray); }
        .text-small { font-size: 0.85rem; }
        
        /* Gradients */
        .bg-gradient-blue {
            background: linear-gradient(135deg, rgba(94, 86, 231, 0.1) 0%, rgba(163, 157, 242, 0.1) 100%);
        }
        
        .bg-gradient-purple {
            background: linear-gradient(135deg, rgba(139, 133, 235, 0.1) 0%, rgba(192, 188, 242, 0.1) 100%);
        }
        
        .bg-gradient-green {
            background: linear-gradient(135deg, rgba(0, 201, 167, 0.1) 0%, rgba(128, 232, 215, 0.1) 100%);
        }
        
        /* Animações */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }
        
        .modal-content {
            background-color: var(--white);
            border-radius: var(--rounded);
            width: 90%;
            max-width: 400px;
            padding: 20px;
            box-shadow: var(--shadow-md);
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-footer {
            margin-top: 20px;
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }
        
        /* Classes para estados */
        .past-destination {
            opacity: 0.8;
        }
        
        .past-event .timeline-item-content {
            border-left-color: var(--gray);
            opacity: 0.85;
        }
        
        /* Estilo para os botões que ocupam toda a largura */
.btn-full-width {
    width: 100%;
    justify-content: center;
}

/* Ajuste para o container dos botões */
.button-container {
    display: flex;
    gap: 0.5rem;
    margin-top: auto; /* Isso empurra os botões para baixo */
    padding-top: 1rem; /* Espaço acima dos botões */
}

        .place-info-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .place-info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .place-info-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            flex-shrink: 0;
        }

        .place-info-content {
            flex-grow: 1;
        }

        .place-info-label {
            font-size: 0.75rem;
            color: #6b7280;
            margin-bottom: 0.1rem;
        }

        .place-info-value {
            font-size: 0.875rem;
            color: #3b82f6;
            font-weight: 500;
        }

        /* Cores personalizadas */
        .bg-pink-100 {
            background-color: #fce7f3;
        }
        .text-pink-600 {
            color: #db2777;
        }
        .bg-blue-100 {
            background-color: #dbeafe;
        }
        .text-blue-600 {
            color: #2563eb;
        }