/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Página de Login */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-header {
    margin-bottom: 30px;
}

.login-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.login-header h1 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 5px;
}

.login-header p {
    color: #7f8c8d;
    font-size: 14px;
}

.login-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group label i {
    margin-right: 8px;
    color: #16a34a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #15803d, #166534);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* Alertas */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #fdf2f2;
    color: #e53e3e;
    border: 1px solid #feb2b2;
}

.alert-success {
    background: #f0fff4;
    color: #38a169;
    border: 1px solid #9ae6b4;
}

.alert-warning {
    background: #fffbeb;
    color: #d69e2e;
    border: 1px solid #fbd38d;
}

.alert-info {
    background: #ebf8ff;
    color: #3182ce;
    border: 1px solid #90cdf4;
}

/* Layout principal */
.container {
    width: 100%;
    margin: 0;
    background: white;
    min-height: 100vh;
}

.header {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 20px 0;
}

.header-content {
    width: 100%;
    margin: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-info span {
    font-weight: 600;
    font-size: 13px;
}

.user-role {
    background: rgba(255, 255, 255, 0.25);
    padding: 5px 12px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logout-btn {
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

/* Navegação */
.nav {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0;
}

.nav {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: #6c757d;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: #16a34a;
    border-bottom-color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
}

/* Conteúdo principal */
.main {
    padding: 30px 20px;
    width: 100%;
    margin: 0;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.page-header h2 {
    color: #2c3e50;
    font-size: 28px;
    margin: 0;
}

.page-header p {
    color: #6c757d;
    margin: 5px 0 0 0;
}

.page-actions {
    display: flex;
    gap: 10px;
}

/* Dashboard */
.dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.admin-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.welcome-card {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.welcome-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.welcome-card p {
    font-size: 16px;
    opacity: 0.9;
}

/* Grid de estatísticas */
.stats-grid,
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.stat-content h3 {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-detail {
    font-size: 12px;
    color: #95a5a6;
}

.stat-progress {
    margin-top: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #ecf0f1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    transition: width 0.3s ease;
}

/* Lista de atividades recentes */
.recent-activities {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recent-activities h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 20px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    border-color: #16a34a;
    background: rgba(22, 163, 74, 0.05);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.activity-icon.status-rascunho { background: #95a5a6; }
.activity-icon.status-enviado { background: #3498db; }
.activity-icon.status-em_analise { background: #f39c12; }
.activity-icon.status-solicitar_complementacao { background: #e67e22; }
.activity-icon.status-aprovado { background: #16a34a; }
.activity-icon.status-aprovado_ajuste { background: #16a34a; }
.activity-icon.status-indeferido { background: #e74c3c; }
.activity-icon.status-computado { background: #16a34a; }

.activity-content {
    flex: 1;
}

.activity-content h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.activity-content p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.activity-date {
    font-size: 12px;
    color: #95a5a6;
}

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

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-rascunho { background: #ecf0f1; color: #7f8c8d; }
.status-badge.status-enviado { background: #d6eaf8; color: #2980b9; }
.status-badge.status-em_analise { background: #fef9e7; color: #d68910; }
.status-badge.status-solicitar_complementacao { background: #fadbd8; color: #e74c3c; }
.status-badge.status-aprovado { background: #dcfce7; color: #16a34a; }
.status-badge.status-aprovado_ajuste { background: #dcfce7; color: #16a34a; }
.status-badge.status-indeferido { background: #fadbd8; color: #e74c3c; }
.status-badge.status-computado { background: #dcfce7; color: #16a34a; }

/* Ações rápidas */
.quick-actions {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-actions h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 20px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: #16a34a;
    background: rgba(22, 163, 74, 0.05);
    transform: translateY(-2px);
}

.action-card i {
    font-size: 24px;
    color: #16a34a;
}

.action-card span {
    font-weight: 600;
    text-align: center;
}

/* Footer do login */
.login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 12px;
    color: #7f8c8d;
}

.login-footer p {
    margin-bottom: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav {
        flex-wrap: wrap;
    }
    
    .nav-item {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .stats-grid,
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .login-card {
        padding: 30px 20px;
    }
}

/* Estilos para páginas de configuração e relatórios */
.config-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.config-section {
    margin-bottom: 30px;
}

.config-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.config-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.config-item label {
    font-weight: 600;
    color: #2c3e50;
}

.config-item input {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.config-item input:focus {
    outline: none;
    border-color: #16a34a;
}

.config-info {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.config-info h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #16a34a;
}

.info-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 16px;
}

.info-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

/* Estilos para relatórios */
.reports-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.reports-section h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 20px;
}

.category-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-stat-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #16a34a;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-header h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 16px;
}

.category-numbers {
    display: flex;
    gap: 15px;
    font-size: 14px;
}

.activities-count {
    color: #6c757d;
}

.hours-count {
    color: #16a34a;
    font-weight: 600;
}

.category-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    transition: width 0.3s ease;
}

.hours-approved {
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.export-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.export-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
}

.export-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 16px;
    margin: 0;
}

/* Estilos para página de usuários */
.users-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.users-section h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 20px;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.user-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.user-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.user-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.user-info h4 {
    color: #2c3e50;
    margin: 0 0 5px 0;
    font-size: 16px;
}

.user-info p {
    color: #6c757d;
    margin: 0 0 5px 0;
    font-size: 14px;
}

.user-status {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.user-status.active {
    background: #dcfce7;
    color: #16a34a;
}

.user-status.inactive {
    background: #fef2f2;
    color: #dc2626;
}

.user-details {
    margin-bottom: 15px;
}

.user-details .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #6c757d;
}

.user-details .detail-item i {
    color: #16a34a;
    width: 16px;
}

.user-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.user-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .main {
        padding: 20px 15px;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
    }
    
    .config-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .export-actions {
        flex-direction: column;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .users-grid {
        grid-template-columns: 1fr;
    }
    
    .user-header {
        flex-direction: column;
        text-align: center;
    }
    
    .user-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .user-actions {
        justify-content: center;
    }
}

/* Estilos para página de edição */
.activity-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group label i {
    margin-right: 8px;
    color: #16a34a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
}

.file-info {
    margin-top: 8px;
    color: #6c757d;
    font-size: 12px;
}

.file-info i {
    color: #16a34a;
    margin-right: 5px;
}

.file-preview {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 8px;
}

.file-item i {
    color: #16a34a;
}

.existing-documents {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #16a34a;
}

.existing-documents h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.document-item i {
    color: #16a34a;
    font-size: 16px;
}

.document-item span {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
}

.document-actions {
    display: flex;
    gap: 5px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Estilos para página do estudante */
.student-info {
    margin-bottom: 30px;
}

.activities-section {
    margin-top: 30px;
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #16a34a;
}

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

.activity-title h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 18px;
}

.activity-category {
    background: #e8f5e8;
    color: #16a34a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.activity-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.detail-item i {
    color: #16a34a;
    width: 16px;
}

.activity-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .activity-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .activity-details {
        grid-template-columns: 1fr;
    }
    
    .activity-actions {
        flex-direction: column;
    }
    
    .activity-actions .btn {
        width: 100%;
    }
}

/* Estilos para página de análise detalhada */
.analysis-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.documents-section {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.documents-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.document-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #16a34a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.document-icon {
    font-size: 24px;
    color: #16a34a;
    width: 40px;
    text-align: center;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 14px;
}

.document-info p {
    margin: 0;
    color: #6c757d;
    font-size: 12px;
}

.document-actions {
    display: flex;
    gap: 8px;
}

.analysis-actions {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.analysis-actions h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    color: #6c757d;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.tab-btn:focus {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

.tab-btn:hover {
    background: #f8f9fa;
    color: #16a34a;
}

.tab-btn.active {
    background: #16a34a;
    color: white;
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel .form-group {
    margin-bottom: 20px;
}

.tab-panel .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.tab-panel .form-group input,
.tab-panel .form-group select,
.tab-panel .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.tab-panel .form-group input:focus,
.tab-panel .form-group select:focus,
.tab-panel .form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
}

.history-section {
    grid-column: 1 / -1;
    margin-top: 30px;
}

.history-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #16a34a;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #16a34a;
}

.timeline-content {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.timeline-action {
    font-weight: 600;
    color: #16a34a;
}

.timeline-date {
    color: #6c757d;
    font-size: 12px;
}

.timeline-details {
    margin: 8px 0;
    color: #2c3e50;
    font-size: 14px;
}

.timeline-user {
    color: #6c757d;
    font-size: 12px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .analysis-layout {
        grid-template-columns: 1fr;
    }
    
    .documents-section {
        grid-column: 1;
    }
    
    .history-section {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .action-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .document-card {
        flex-direction: column;
        text-align: center;
    }
    
    .document-actions {
        justify-content: center;
    }
}

/* Mensagens de Alerta */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Barra de Ações */
.actions-bar {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 10px;
    align-items: center;
}

.actions-bar .btn {
    margin: 0;
}

/* Botão de Aviso */
.btn-warning {
    background: #ffc107;
    color: #212529;
    border: 1px solid #ffc107;
}

.btn-warning:hover {
    background: #e0a800;
    border-color: #d39e00;
    color: #212529;
}

/* Melhorias nos botões */
.btn {
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

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

/* Responsividade para mensagens */
@media (max-width: 768px) {
    .alert {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .actions-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .actions-bar .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Estilos específicos para a tela de progresso */
.progress-summary {
    margin-bottom: 40px;
}

.progress-card.main-progress {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.progress-card.main-progress::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.progress-title h3 {
    font-size: 24px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-title p {
    opacity: 0.9;
    font-size: 14px;
}

.percentage-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.progress-ring-fill {
    transition: stroke-dashoffset 1s ease-in-out;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
}

.percentage-text {
    position: absolute;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.progress-bar-large {
    position: relative;
    height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.progress-fill-large {
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
    border-radius: 10px;
    transition: width 1s ease-in-out;
    position: relative;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    border-radius: 10px;
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.progress-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.progress-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.progress-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.progress-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-value {
    font-size: 18px;
    font-weight: 700;
}

/* Cards de estatísticas melhorados */
.stat-card-primary { border-left: 4px solid #3498db; }
.stat-card-success { border-left: 4px solid #16a34a; }
.stat-card-warning { border-left: 4px solid #f39c12; }
.stat-card-danger { border-left: 4px solid #e74c3c; }

.stat-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

.stat-trend i {
    font-size: 10px;
}

/* Seções com cabeçalho */
.section-header {
    margin-bottom: 25px;
    text-align: center;
}

.section-header h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-header p {
    color: #6c757d;
    font-size: 14px;
}

/* Resumo das categorias */
.category-summary {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.summary-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.summary-icon.completed {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.summary-icon.in-progress {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.summary-icon.pending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.summary-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.summary-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

/* Cards de categoria melhorados */
.category-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e9ecef, #e9ecef);
    transition: all 0.3s ease;
}

.category-card-pending::before { 
    background: linear-gradient(90deg, #f39c12, #e67e22);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}

.category-card-in-progress::before { 
    background: linear-gradient(90deg, #3498db, #2980b9);
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.category-card-completed::before { 
    background: linear-gradient(90deg, #16a34a, #15803d);
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.3);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.category-info h4 {
    font-size: 20px;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

.category-description p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

.category-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-card-pending .category-badge {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.category-card-in-progress .category-badge {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.category-card-completed .category-badge {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
}

.category-hours {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.hours-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.hours-current {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.hours-total {
    font-size: 16px;
    color: #6c757d;
}

.hours-percentage {
    font-size: 14px;
    font-weight: 600;
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Seção de progresso melhorada */
.category-progress-section {
    margin-bottom: 25px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-status {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-card-pending .progress-status {
    color: #d97706;
}

.category-card-in-progress .progress-status {
    color: #2563eb;
}

.category-card-completed .progress-status {
    color: #16a34a;
}

.category-progress-bar {
    position: relative;
    height: 12px;
    background: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.category-progress-bar .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #16a34a, #15803d);
    border-radius: 15px;
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.category-progress-bar .progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-milestones {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.milestone {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.5);
    border-radius: 1px;
}

.milestone-25 { background: rgba(255,255,255,0.3); }
.milestone-50 { background: rgba(255,255,255,0.5); }
.milestone-75 { background: rgba(255,255,255,0.3); }
.milestone-100 { background: rgba(255,255,255,0.7); }

.category-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.category-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.category-stat:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.category-stat .stat-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-label {
    font-size: 11px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

/* Ações da categoria */
.category-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.completion-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.completion-badge i {
    font-size: 16px;
}

/* Gráfico melhorado */
.progress-chart {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.chart-wrapper {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6c757d;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

/* Recomendações melhoradas */
.recommendations {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recommendation-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.recommendation-start {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #f59e0b;
}

.recommendation-progress {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-color: #3b82f6;
}

.recommendation-almost {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-color: #16a34a;
}

.recommendation-complete {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #f59e0b;
}

.recommendation-pending {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border-color: #ef4444;
}

.recommendation-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.recommendation-start .recommendation-icon { color: #f59e0b; }
.recommendation-progress .recommendation-icon { color: #3b82f6; }
.recommendation-almost .recommendation-icon { color: #16a34a; }
.recommendation-complete .recommendation-icon { color: #f59e0b; }
.recommendation-pending .recommendation-icon { color: #ef4444; }

.recommendation-content {
    flex: 1;
}

.recommendation-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.recommendation-content p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.recommendation-actions {
    display: flex;
    gap: 10px;
}

/* Responsividade para progresso */
@media (max-width: 768px) {
    .progress-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .progress-details {
        grid-template-columns: 1fr;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .category-title {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .category-hours {
        align-items: center;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .chart-legend {
        flex-direction: column;
        gap: 10px;
    }
    
    .recommendation-item {
        flex-direction: column;
        text-align: center;
    }
    
    .recommendation-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .summary-item {
        padding: 15px;
    }
    
    .category-stat {
        padding: 12px;
    }
}

/* Estilos para a tela de todas as atividades (admin) */
.page-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.header-info h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

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

.view-controls {
    display: flex;
    gap: 5px;
    background: #f8f9fa;
    padding: 4px;
    border-radius: 8px;
}

.view-controls .btn.active {
    background: #16a34a;
    color: white;
    box-shadow: 0 2px 4px rgba(22, 163, 74, 0.3);
}

/* Container principal */
.activities-container {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    min-height: 400px;
}

/* Estado vazio melhorado */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #adb5bd;
}

.empty-state h3 {
    color: #495057;
    margin-bottom: 10px;
}


/* Visualização em Cards */
.activities-list.cards-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.minimal-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.minimal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f4;
}

.card-title h3 {
    font-size: 16px;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.3;
}

.card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 6px;
}

.meta-item i {
    color: #16a34a;
    font-size: 10px;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6c757d;
}

.status-indicator.status-enviado { background: #3498db; }
.status-indicator.status-em_analise { background: #9b59b6; }
.status-indicator.status-aprovado { background: #16a34a; }
.status-indicator.status-aprovado_ajuste { background: #16a34a; }
.status-indicator.status-indeferido { background: #e74c3c; }
.status-indicator.status-computado { background: #16a34a; }
.status-indicator.status-rascunho { background: #f39c12; }
.status-indicator.status-solicitar_complementacao { background: #e67e22; }

.status-text {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.card-content {
    margin-bottom: 15px;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.student-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.student-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.student-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.student-period {
    font-size: 12px;
    color: #6c757d;
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #495057;
}

.info-item i {
    width: 16px;
    color: #6c757d;
    font-size: 12px;
}

.card-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid #f1f3f4;
}

/* Visualização em Tabela */
.activities-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.table-wrapper {
    overflow-x: auto;
}

.minimal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.minimal-table th {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 16px 12px;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.minimal-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #f1f3f4;
    vertical-align: middle;
}

.minimal-table tr:hover {
    background: #f8f9fa;
}

.table-title strong {
    color: #2c3e50;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.table-title small {
    color: #6c757d;
    font-size: 12px;
}

.table-student {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.table-student .student-name {
    font-weight: 600;
    color: #2c3e50;
}

.table-student small {
    color: #6c757d;
    font-size: 12px;
}

.table-category {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.table-hours {
    font-weight: 600;
    color: #16a34a;
}

.table-date {
    color: #6c757d;
    font-size: 13px;
}

.table-actions {
    display: flex;
    gap: 6px;
}

/* Responsividade */
@media (max-width: 768px) {
    .page-header .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    
    .activities-list.cards-view {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .card-actions {
        justify-content: center;
    }
    
    .minimal-table {
        font-size: 12px;
    }
    
    .minimal-table th,
    .minimal-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .activities-container {
        padding: 20px;
    }
    
    .card-meta {
        flex-direction: column;
        gap: 6px;
    }
    
    .table-actions {
        flex-direction: column;
        gap: 4px;
    }
}

/* Tela de Análise Melhorada */
.activity-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.activity-title-section {
    flex: 1;
}

.activity-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.activity-meta i {
    font-size: 16px;
}

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

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-bottom: 30px;
}

.analysis-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.analysis-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards de Informação */
.info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.card-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header i {
    color: #6c757d;
}

/* Card do Estudante */
.student-card .card-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.student-card .card-header h3,
.student-card .card-header i {
    color: white;
}

.student-info {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.student-details h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.student-details p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.student-email {
    color: #007bff !important;
}

/* Card de Detalhes */
.details-grid {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 14px;
}

.detail-value {
    font-weight: 600;
    color: #212529;
    font-size: 14px;
}

.detail-value.approved {
    color: #28a745;
}

/* Cards de Conteúdo */
.description-content,
.observations-content {
    padding: 20px;
}

.description-content p,
.observations-content p {
    margin: 0;
    line-height: 1.6;
    color: #495057;
}

/* Card de Documentos */
.documents-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.document-item:hover {
    background: #e9ecef;
}

.document-icon {
    width: 40px;
    height: 40px;
    background: #007bff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.document-info p {
    margin: 0;
    font-size: 12px;
    color: #6c757d;
}

.document-actions {
    display: flex;
    gap: 8px;
}

/* Card de Ações */
.actions-card .card-header {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
}

.actions-card .card-header h3,
.actions-card .card-header i {
    color: white;
}

.action-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid #e9ecef;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: #f8f9fa;
    color: #495057;
}

.tab-btn.active {
    color: #007bff;
    border-bottom-color: #007bff;
    background: #f8f9fa;
}

.tab-btn i {
    font-size: 16px;
}

.tab-content {
    padding: 20px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.btn-block {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-outline {
    background: transparent;
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
}

/* Card de Histórico */
.history-card .card-header {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: white;
}

.history-card .card-header h3,
.history-card .card-header i {
    color: white;
}

.timeline {
    padding: 20px;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

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

.timeline-marker {
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #007bff;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e9ecef;
}

.timeline-content {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #007bff;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.timeline-action {
    font-weight: 600;
    color: #007bff;
    font-size: 14px;
}

.timeline-date {
    font-size: 12px;
    color: #6c757d;
}

.timeline-details {
    margin: 0 0 8px 0;
    color: #495057;
    font-size: 14px;
    line-height: 1.4;
}

.timeline-user {
    color: #6c757d;
    font-size: 12px;
    font-style: italic;
}

/* Responsividade para tela de análise */
@media (max-width: 1200px) {
    .analysis-grid {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 992px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-right {
        order: -1;
    }
    
    .activity-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .activity-meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .activity-header {
        padding: 20px;
    }
    
    .activity-title {
        font-size: 24px;
    }
    
    .activity-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-btn {
        padding: 12px 8px;
        font-size: 11px;
    }
    
    .tab-btn i {
        font-size: 14px;
    }
    
    .student-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .document-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .document-actions {
        justify-content: center;
    }
}


 
 / *   R e s p o n s i v i d a d e   p a r a   c a r d   d e   u s u � r i o   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . u s e r - i n f o   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   1 0 p x ; 
                 p a d d i n g :   1 5 p x ; 
                 t e x t - a l i g n :   c e n t e r ; 
         } 
         
         . u s e r - i n f o   s p a n   { 
                 f o n t - s i z e :   1 6 p x ; 
         } 
         
         . u s e r - r o l e   { 
                 f o n t - s i z e :   1 1 p x ; 
                 p a d d i n g :   4 p x   1 0 p x ; 
         } 
         
         . l o g o u t - b t n   { 
                 p a d d i n g :   1 0 p x   2 0 p x ; 
                 f o n t - s i z e :   1 4 p x ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
         . h e a d e r - c o n t e n t   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   1 5 p x ; 
         } 
         
         . u s e r - i n f o   { 
                 w i d t h :   1 0 0 % ; 
                 m a r g i n - t o p :   1 0 p x ; 
         } 
 } 
 
 
 
 / *   T e l a   d e   S u b m e t e r   A t i v i d a d e   M e l h o r a d a   * / 
 . p a g e - h e a d e r   . h e a d e r - c o n t e n t   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         m a r g i n - b o t t o m :   3 0 p x ; 
 } 
 
 . h e a d e r - t e x t   h 2   { 
         m a r g i n :   0   0   8 p x   0 ; 
         f o n t - s i z e :   2 8 p x ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   # 2 c 3 e 5 0 ; 
 } 
 
 . h e a d e r - t e x t   p   { 
         m a r g i n :   0 ; 
         c o l o r :   # 6 c 7 5 7 d ; 
         f o n t - s i z e :   1 6 p x ; 
 } 
 
 . h e a d e r - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 5 p x ; 
 } 
 
 . b t n - o u t l i n e   { 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
         b o r d e r :   2 p x   s o l i d   # 0 0 7 b f f ; 
         c o l o r :   # 0 0 7 b f f ; 
         p a d d i n g :   1 0 p x   2 0 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
 } 
 
 . b t n - o u t l i n e : h o v e r   { 
         b a c k g r o u n d :   # 0 0 7 b f f ; 
         c o l o r :   w h i t e ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 / *   P r o g r e s s   S t e p s   * / 
 . f o r m - p r o g r e s s   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         m a r g i n - b o t t o m :   4 0 p x ; 
         p a d d i n g :   2 0 p x ; 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
 } 
 
 . p r o g r e s s - s t e p   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         p o s i t i o n :   r e l a t i v e ; 
         f l e x :   1 ; 
         m a x - w i d t h :   2 0 0 p x ; 
 } 
 
 . p r o g r e s s - s t e p : n o t ( : l a s t - c h i l d ) : : a f t e r   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   2 0 p x ; 
         l e f t :   6 0 % ; 
         r i g h t :   - 4 0 % ; 
         h e i g h t :   2 p x ; 
         b a c k g r o u n d :   # e 9 e c e f ; 
         z - i n d e x :   1 ; 
 } 
 
 . p r o g r e s s - s t e p . c o m p l e t e d : n o t ( : l a s t - c h i l d ) : : a f t e r   { 
         b a c k g r o u n d :   # 2 8 a 7 4 5 ; 
 } 
 
 . s t e p - n u m b e r   { 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   # e 9 e c e f ; 
         c o l o r :   # 6 c 7 5 7 d ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - w e i g h t :   6 0 0 ; 
         f o n t - s i z e :   1 6 p x ; 
         m a r g i n - b o t t o m :   1 0 p x ; 
         p o s i t i o n :   r e l a t i v e ; 
         z - i n d e x :   2 ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . p r o g r e s s - s t e p . a c t i v e   . s t e p - n u m b e r   { 
         b a c k g r o u n d :   # 0 0 7 b f f ; 
         c o l o r :   w h i t e ; 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 } 
 
 . p r o g r e s s - s t e p . c o m p l e t e d   . s t e p - n u m b e r   { 
         b a c k g r o u n d :   # 2 8 a 7 4 5 ; 
         c o l o r :   w h i t e ; 
 } 
 
 . s t e p - l a b e l   { 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 6 c 7 5 7 d ; 
         t e x t - a l i g n :   c e n t e r ; 
         l i n e - h e i g h t :   1 . 3 ; 
 } 
 
 . p r o g r e s s - s t e p . a c t i v e   . s t e p - l a b e l   { 
         c o l o r :   # 0 0 7 b f f ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 / *   F o r m   S e c t i o n s   * / 
 . f o r m - s e c t i o n   { 
         d i s p l a y :   n o n e ; 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
         p a d d i n g :   3 0 p x ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
         a n i m a t i o n :   f a d e I n   0 . 3 s   e a s e ; 
 } 
 
 . f o r m - s e c t i o n . a c t i v e   { 
         d i s p l a y :   b l o c k ; 
 } 
 
 @ k e y f r a m e s   f a d e I n   { 
         f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ;   } 
         t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
 } 
 
 . s e c t i o n - h e a d e r   { 
         t e x t - a l i g n :   c e n t e r ; 
         m a r g i n - b o t t o m :   3 0 p x ; 
         p a d d i n g - b o t t o m :   2 0 p x ; 
         b o r d e r - b o t t o m :   2 p x   s o l i d   # f 1 f 3 f 4 ; 
 } 
 
 . s e c t i o n - h e a d e r   h 3   { 
         m a r g i n :   0   0   8 p x   0 ; 
         f o n t - s i z e :   2 4 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 2 c 3 e 5 0 ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   1 0 p x ; 
 } 
 
 . s e c t i o n - h e a d e r   p   { 
         m a r g i n :   0 ; 
         c o l o r :   # 6 c 7 5 7 d ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 / *   F o r m   C o n t r o l s   * / 
 . f o r m - c o n t r o l   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   1 2 p x   1 5 p x ; 
         b o r d e r :   2 p x   s o l i d   # e 9 e c e f ; 
         b o r d e r - r a d i u s :   8 p x ; 
         f o n t - s i z e :   1 4 p x ; 
         t r a n s i t i o n :   b o r d e r - c o l o r   0 . 2 s   e a s e ,   b o x - s h a d o w   0 . 2 s   e a s e ; 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 } 
 
 . f o r m - c o n t r o l : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   # 0 0 7 b f f ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 1 ) ; 
 } 
 
 . f o r m - g r o u p   l a b e l   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
         m a r g i n - b o t t o m :   8 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 4 9 5 0 5 7 ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 . f o r m - g r o u p   l a b e l   i   { 
         c o l o r :   # 0 0 7 b f f ; 
         w i d t h :   1 6 p x ; 
 } 
 
 / *   F i l e   U p l o a d   * / 
 . f i l e - u p l o a d - a r e a   { 
         p o s i t i o n :   r e l a t i v e ; 
         b o r d e r :   2 p x   d a s h e d   # d e e 2 e 6 ; 
         b o r d e r - r a d i u s :   8 p x ; 
         p a d d i n g :   4 0 p x   2 0 p x ; 
         t e x t - a l i g n :   c e n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . f i l e - u p l o a d - a r e a : h o v e r   { 
         b o r d e r - c o l o r :   # 0 0 7 b f f ; 
         b a c k g r o u n d :   # f 8 f 9 f f ; 
 } 
 
 . f i l e - i n p u t   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o p a c i t y :   0 ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . f i l e - u p l o a d - c o n t e n t   i   { 
         f o n t - s i z e :   4 8 p x ; 
         c o l o r :   # 0 0 7 b f f ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . f i l e - u p l o a d - c o n t e n t   p   { 
         m a r g i n :   0   0   8 p x   0 ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 4 9 5 0 5 7 ; 
 } 
 
 . f i l e - u p l o a d - c o n t e n t   s m a l l   { 
         c o l o r :   # 6 c 7 5 7 d ; 
         f o n t - s i z e :   1 2 p x ; 
 } 
 
 / *   F o r m   N a v i g a t i o n   * / 
 . f o r m - n a v i g a t i o n   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         p a d d i n g :   2 0 p x   0 ; 
         b o r d e r - t o p :   1 p x   s o l i d   # e 9 e c e f ; 
         m a r g i n - t o p :   3 0 p x ; 
 } 
 
 . f o r m - n a v i g a t i o n   . b t n   { 
         p a d d i n g :   1 2 p x   2 4 p x ; 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         b o r d e r - r a d i u s :   8 p x ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         b o r d e r :   n o n e ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . b t n - p r i m a r y   { 
         b a c k g r o u n d :   # 0 0 7 b f f ; 
         c o l o r :   w h i t e ; 
 } 
 
 . b t n - p r i m a r y : h o v e r   { 
         b a c k g r o u n d :   # 0 0 5 6 b 3 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 . b t n - s u c c e s s   { 
         b a c k g r o u n d :   # 2 8 a 7 4 5 ; 
         c o l o r :   w h i t e ; 
 } 
 
 . b t n - s u c c e s s : h o v e r   { 
         b a c k g r o u n d :   # 1 e 7 e 3 4 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 / *   R e s p o n s i v i d a d e   p a r a   s u b m e t e r   a t i v i d a d e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . p a g e - h e a d e r   . h e a d e r - c o n t e n t   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   2 0 p x ; 
                 t e x t - a l i g n :   c e n t e r ; 
         } 
         
         . f o r m - p r o g r e s s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   2 0 p x ; 
         } 
         
         . p r o g r e s s - s t e p : n o t ( : l a s t - c h i l d ) : : a f t e r   { 
                 d i s p l a y :   n o n e ; 
         } 
         
         . f o r m - s e c t i o n   { 
                 p a d d i n g :   2 0 p x ; 
         } 
         
         . s e c t i o n - h e a d e r   h 3   { 
                 f o n t - s i z e :   2 0 p x ; 
         } 
         
         . f o r m - n a v i g a t i o n   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   1 5 p x ; 
         } 
         
         . f o r m - n a v i g a t i o n   . b t n   { 
                 w i d t h :   1 0 0 % ; 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
         . h e a d e r - t e x t   h 2   { 
                 f o n t - s i z e :   2 4 p x ; 
         } 
         
         . s t e p - n u m b e r   { 
                 w i d t h :   3 5 p x ; 
                 h e i g h t :   3 5 p x ; 
                 f o n t - s i z e :   1 4 p x ; 
         } 
         
         . s t e p - l a b e l   { 
                 f o n t - s i z e :   1 1 p x ; 
         } 
         
         . f i l e - u p l o a d - c o n t e n t   i   { 
                 f o n t - s i z e :   3 6 p x ; 
         } 
         
         . f i l e - u p l o a d - c o n t e n t   p   { 
                 f o n t - s i z e :   1 4 p x ; 
         } 
 } 
 
 
 
 / *   T e l a   d e   A c o m p a n h a m e n t o   M i n i m a l i s t a   * / 
 . a c t i v i t i e s - c o n t a i n e r   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   2 0 p x ; 
 } 
 
 . a c t i v i t y - i t e m   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b o x - s h a d o w :   0   1 p x   3 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 } 
 
 . a c t i v i t y - i t e m : h o v e r   { 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 . a c t i v i t y - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         p a d d i n g :   2 0 p x ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # f 3 f 4 f 6 ; 
         b a c k g r o u n d :   # f a f a f a ; 
 } 
 
 . a c t i v i t y - i n f o   h 3   { 
         m a r g i n :   0   0   8 p x   0 ; 
         f o n t - s i z e :   1 8 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         l i n e - h e i g h t :   1 . 4 ; 
 } 
 
 . a c t i v i t y - m e t a   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 2 p x ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . a c t i v i t y - m e t a   s p a n   { 
         f o n t - s i z e :   1 3 p x ; 
         p a d d i n g :   4 p x   8 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 . c a t e g o r y   { 
         b a c k g r o u n d :   # e 0 f 2 f e ; 
         c o l o r :   # 0 3 6 9 a 1 ; 
 } 
 
 . h o u r s   { 
         b a c k g r o u n d :   # f 0 f 9 f f ; 
         c o l o r :   # 0 c 4 a 6 e ; 
 } 
 
 . h o u r s - a p p r o v e d   { 
         b a c k g r o u n d :   # d c f c e 7 ; 
         c o l o r :   # 1 6 6 5 3 4 ; 
 } 
 
 . a c t i v i t y - s t a t u s   { 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . s t a t u s - b a d g e   { 
         p a d d i n g :   6 p x   1 2 p x ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . s t a t u s - e n v i a d o   { 
         b a c k g r o u n d :   # d b e a f e ; 
         c o l o r :   # 1 e 4 0 a f ; 
 } 
 
 . s t a t u s - e m _ a n a l i s e   { 
         b a c k g r o u n d :   # f e f 3 c 7 ; 
         c o l o r :   # 9 2 4 0 0 e ; 
 } 
 
 . s t a t u s - a p r o v a d o   { 
         b a c k g r o u n d :   # d c f c e 7 ; 
         c o l o r :   # 1 6 6 5 3 4 ; 
 } 
 
 . s t a t u s - a p r o v a d o _ a j u s t e   { 
         b a c k g r o u n d :   # d 1 f a e 5 ; 
         c o l o r :   # 0 6 5 f 4 6 ; 
 } 
 
 . s t a t u s - i n d e f e r i d o   { 
         b a c k g r o u n d :   # f e e 2 e 2 ; 
         c o l o r :   # d c 2 6 2 6 ; 
 } 
 
 . s t a t u s - s o l i c i t a r _ c o m p l e m e n t a c a o   { 
         b a c k g r o u n d :   # f e f 3 c 7 ; 
         c o l o r :   # 9 2 4 0 0 e ; 
 } 
 
 . s t a t u s - r a s c u n h o   { 
         b a c k g r o u n d :   # f 3 f 4 f 6 ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
 } 
 
 . a c t i v i t y - c o n t e n t   { 
         p a d d i n g :   2 0 p x ; 
 } 
 
 . a c t i v i t y - d e s c r i p t i o n   { 
         m a r g i n - b o t t o m :   1 6 p x ; 
 } 
 
 . a c t i v i t y - d e s c r i p t i o n   p   { 
         m a r g i n :   0 ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         l i n e - h e i g h t :   1 . 6 ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 . a c t i v i t y - d e t a i l s   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   8 p x ; 
         m a r g i n - b o t t o m :   1 6 p x ; 
 } 
 
 . d e t a i l   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
         f o n t - s i z e :   1 3 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
 } 
 
 . d e t a i l   i   { 
         w i d t h :   1 4 p x ; 
         c o l o r :   # 9 c a 3 a f ; 
 } 
 
 . a c t i v i t y - f e e d b a c k   { 
         m a r g i n - b o t t o m :   1 6 p x ; 
 } 
 
 . f e e d b a c k - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         g a p :   8 p x ; 
         p a d d i n g :   1 2 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         m a r g i n - b o t t o m :   8 p x ; 
         f o n t - s i z e :   1 3 p x ; 
         l i n e - h e i g h t :   1 . 5 ; 
 } 
 
 . f e e d b a c k - i t e m . e r r o r   { 
         b a c k g r o u n d :   # f e f 2 f 2 ; 
         b o r d e r :   1 p x   s o l i d   # f e c a c a ; 
         c o l o r :   # d c 2 6 2 6 ; 
 } 
 
 . f e e d b a c k - i t e m . w a r n i n g   { 
         b a c k g r o u n d :   # f f f b e b ; 
         b o r d e r :   1 p x   s o l i d   # f e d 7 a a ; 
         c o l o r :   # d 9 7 7 0 6 ; 
 } 
 
 . f e e d b a c k - i t e m   i   { 
         m a r g i n - t o p :   2 p x ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . a c t i v i t y - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   8 p x ; 
         f l e x - w r a p :   w r a p ; 
         m a r g i n - b o t t o m :   1 6 p x ; 
 } 
 
 . b t n - o u t l i n e   { 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
         b o r d e r :   1 p x   s o l i d   # d 1 d 5 d b ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         p a d d i n g :   8 p x   1 6 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         f o n t - s i z e :   1 3 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
 } 
 
 . b t n - o u t l i n e : h o v e r   { 
         b a c k g r o u n d :   # f 9 f a f b ; 
         b o r d e r - c o l o r :   # 9 c a 3 a f ; 
         c o l o r :   # 1 1 1 8 2 7 ; 
 } 
 
 . b t n - p r i m a r y   { 
         b a c k g r o u n d :   # 3 b 8 2 f 6 ; 
         c o l o r :   w h i t e ; 
         b o r d e r :   n o n e ; 
         p a d d i n g :   8 p x   1 6 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         f o n t - s i z e :   1 3 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . b t n - p r i m a r y : h o v e r   { 
         b a c k g r o u n d :   # 2 5 6 3 e b ; 
 } 
 
 . b t n - w a r n i n g   { 
         b a c k g r o u n d :   # f 5 9 e 0 b ; 
         c o l o r :   w h i t e ; 
         b o r d e r :   n o n e ; 
         p a d d i n g :   8 p x   1 6 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         f o n t - s i z e :   1 3 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 
 . b t n - w a r n i n g : h o v e r   { 
         b a c k g r o u n d :   # d 9 7 7 0 6 ; 
 } 
 
 . b t n - s m   { 
         p a d d i n g :   6 p x   1 2 p x ; 
         f o n t - s i z e :   1 2 p x ; 
 } 
 
 . d o c u m e n t s - s e c t i o n   { 
         m a r g i n - t o p :   1 6 p x ; 
         p a d d i n g - t o p :   1 6 p x ; 
         b o r d e r - t o p :   1 p x   s o l i d   # f 3 f 4 f 6 ; 
 } 
 
 . d o c u m e n t s - l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   8 p x ; 
 } 
 
 . d o c u m e n t - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   1 2 p x ; 
         b a c k g r o u n d :   # f 9 f a f b ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . d o c u m e n t - i t e m   i   { 
         c o l o r :   # 6 b 7 2 8 0 ; 
         w i d t h :   1 6 p x ; 
 } 
 
 . d o c u m e n t - i t e m   s p a n   { 
         f l e x :   1 ; 
         f o n t - s i z e :   1 3 p x ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
 } 
 
 / *   R e s p o n s i v i d a d e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . a c t i v i t y - h e a d e r   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   1 2 p x ; 
                 a l i g n - i t e m s :   s t r e t c h ; 
         } 
         
         . a c t i v i t y - m e t a   { 
                 j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
         } 
         
         . a c t i v i t y - a c t i o n s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
         } 
         
         . b t n - o u t l i n e , 
         . b t n - p r i m a r y , 
         . b t n - w a r n i n g   { 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
                 w i d t h :   1 0 0 % ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
         . a c t i v i t y - h e a d e r , 
         . a c t i v i t y - c o n t e n t   { 
                 p a d d i n g :   1 6 p x ; 
         } 
         
         . a c t i v i t y - i n f o   h 3   { 
                 f o n t - s i z e :   1 6 p x ; 
         } 
         
         . a c t i v i t y - m e t a   { 
                 g a p :   8 p x ; 
         } 
         
         . a c t i v i t y - m e t a   s p a n   { 
                 f o n t - s i z e :   1 2 p x ; 
                 p a d d i n g :   3 p x   6 p x ; 
         } 
 } 
 
 
 
 / *   U l t r a   M i n i m a l i s t a   -   T e l a   d e   A c o m p a n h a m e n t o   * / 
 . a c t i v i t i e s - l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   1 6 p x ; 
 } 
 
 . a c t i v i t y - c a r d   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
         b o r d e r - r a d i u s :   8 p x ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . c a r d - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         p a d d i n g :   1 6 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . a c t i v i t y - t i t l e   h 3   { 
         m a r g i n :   0   0   6 p x   0 ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         l i n e - h e i g h t :   1 . 3 ; 
 } 
 
 . a c t i v i t y - m e t a   { 
         d i s p l a y :   f l e x ; 
         g a p :   8 p x ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . a c t i v i t y - m e t a   s p a n   { 
         f o n t - s i z e :   1 1 p x ; 
         p a d d i n g :   2 p x   6 p x ; 
         b o r d e r - r a d i u s :   4 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 . c a t e g o r y   { 
         b a c k g r o u n d :   # e 0 f 2 f e ; 
         c o l o r :   # 0 3 6 9 a 1 ; 
 } 
 
 . h o u r s   { 
         b a c k g r o u n d :   # f 0 f 9 f f ; 
         c o l o r :   # 0 c 4 a 6 e ; 
 } 
 
 . a p p r o v e d   { 
         b a c k g r o u n d :   # d c f c e 7 ; 
         c o l o r :   # 1 6 6 5 3 4 ; 
 } 
 
 . s t a t u s   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
 } 
 
 . s t a t u s - d o t   { 
         w i d t h :   8 p x ; 
         h e i g h t :   8 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
 } 
 
 . s t a t u s - e n v i a d o   {   b a c k g r o u n d :   # 3 b 8 2 f 6 ;   } 
 . s t a t u s - e m _ a n a l i s e   {   b a c k g r o u n d :   # f 5 9 e 0 b ;   } 
 . s t a t u s - a p r o v a d o   {   b a c k g r o u n d :   # 1 0 b 9 8 1 ;   } 
 . s t a t u s - a p r o v a d o _ a j u s t e   {   b a c k g r o u n d :   # 1 0 b 9 8 1 ;   } 
 . s t a t u s - i n d e f e r i d o   {   b a c k g r o u n d :   # e f 4 4 4 4 ;   } 
 . s t a t u s - s o l i c i t a r _ c o m p l e m e n t a c a o   {   b a c k g r o u n d :   # f 5 9 e 0 b ;   } 
 . s t a t u s - r a s c u n h o   {   b a c k g r o u n d :   # 6 b 7 2 8 0 ;   } 
 
 . s t a t u s - t e x t   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 . c a r d - c o n t e n t   { 
         p a d d i n g :   1 6 p x ; 
 } 
 
 . d e s c r i p t i o n   { 
         m a r g i n :   0   0   1 2 p x   0 ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - s i z e :   1 3 p x ; 
         l i n e - h e i g h t :   1 . 4 ; 
 } 
 
 . i n f o - r o w   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   4 p x ; 
         m a r g i n - b o t t o m :   1 2 p x ; 
 } 
 
 . i n f o - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
 } 
 
 . i n f o - i t e m   i   { 
         w i d t h :   1 2 p x ; 
         c o l o r :   # 9 c a 3 a f ; 
 } 
 
 . f e e d b a c k   { 
         m a r g i n - b o t t o m :   1 2 p x ; 
 } 
 
 . f e e d b a c k - m e s s a g e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         g a p :   6 p x ; 
         p a d d i n g :   8 p x ; 
         b o r d e r - r a d i u s :   4 p x ; 
         f o n t - s i z e :   1 2 p x ; 
         l i n e - h e i g h t :   1 . 4 ; 
         m a r g i n - b o t t o m :   4 p x ; 
 } 
 
 . f e e d b a c k - m e s s a g e . e r r o r   { 
         b a c k g r o u n d :   # f e f 2 f 2 ; 
         c o l o r :   # d c 2 6 2 6 ; 
 } 
 
 . f e e d b a c k - m e s s a g e . w a r n i n g   { 
         b a c k g r o u n d :   # f f f b e b ; 
         c o l o r :   # d 9 7 7 0 6 ; 
 } 
 
 . f e e d b a c k - m e s s a g e   i   { 
         m a r g i n - t o p :   1 p x ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . c a r d - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   6 p x ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . a c t i o n - b t n   { 
         p a d d i n g :   6 p x   1 2 p x ; 
         b o r d e r - r a d i u s :   4 p x ; 
         f o n t - s i z e :   1 1 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         b o r d e r :   n o n e ; 
         c u r s o r :   p o i n t e r ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   4 p x ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . a c t i o n - b t n . e d i t   { 
         b a c k g r o u n d :   # f 3 f 4 f 6 ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         b o r d e r :   1 p x   s o l i d   # d 1 d 5 d b ; 
 } 
 
 . a c t i o n - b t n . e d i t : h o v e r   { 
         b a c k g r o u n d :   # e 5 e 7 e b ; 
 } 
 
 . a c t i o n - b t n . s e n d   { 
         b a c k g r o u n d :   # 3 b 8 2 f 6 ; 
         c o l o r :   w h i t e ; 
 } 
 
 . a c t i o n - b t n . s e n d : h o v e r   { 
         b a c k g r o u n d :   # 2 5 6 3 e b ; 
 } 
 
 . a c t i o n - b t n . c o m p l e m e n t   { 
         b a c k g r o u n d :   # f 5 9 e 0 b ; 
         c o l o r :   w h i t e ; 
 } 
 
 . a c t i o n - b t n . c o m p l e m e n t : h o v e r   { 
         b a c k g r o u n d :   # d 9 7 7 0 6 ; 
 } 
 
 . a c t i o n - b t n . d o c u m e n t s   { 
         b a c k g r o u n d :   # f 8 f a f c ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . a c t i o n - b t n . d o c u m e n t s : h o v e r   { 
         b a c k g r o u n d :   # f 1 f 5 f 9 ; 
 } 
 
 . d o c u m e n t s   { 
         m a r g i n - t o p :   1 2 p x ; 
         p a d d i n g - t o p :   1 2 p x ; 
         b o r d e r - t o p :   1 p x   s o l i d   # f 3 f 4 f 6 ; 
 } 
 
 . d o c u m e n t   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
         p a d d i n g :   8 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - r a d i u s :   4 p x ; 
         m a r g i n - b o t t o m :   4 p x ; 
         f o n t - s i z e :   1 1 p x ; 
 } 
 
 . d o c u m e n t   i   { 
         c o l o r :   # 6 b 7 2 8 0 ; 
         w i d t h :   1 2 p x ; 
 } 
 
 . d o c u m e n t   s p a n   { 
         f l e x :   1 ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
 } 
 
 . d o c u m e n t   a   { 
         c o l o r :   # 6 b 7 2 8 0 ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 
 . d o c u m e n t   a : h o v e r   { 
         c o l o r :   # 3 7 4 1 5 1 ; 
 } 
 
 / *   R e s p o n s i v i d a d e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . c a r d - h e a d e r   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   8 p x ; 
                 a l i g n - i t e m s :   s t r e t c h ; 
         } 
         
         . s t a t u s   { 
                 j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
         } 
         
         . c a r d - a c t i o n s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
         } 
         
         . a c t i o n - b t n   { 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
                 w i d t h :   1 0 0 % ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
         . c a r d - h e a d e r , 
         . c a r d - c o n t e n t   { 
                 p a d d i n g :   1 2 p x ; 
         } 
         
         . a c t i v i t y - t i t l e   h 3   { 
                 f o n t - s i z e :   1 5 p x ; 
         } 
         
         . a c t i v i t y - m e t a   { 
                 g a p :   6 p x ; 
         } 
         
         . a c t i v i t y - m e t a   s p a n   { 
                 f o n t - s i z e :   1 0 p x ; 
                 p a d d i n g :   2 p x   4 p x ; 
         } 
 } 
 
 
 
 / *   E s t i l o   d a   T e l a   d e   A c o m p a n h a m e n t o   -   M e s m o   v i s u a l   d a   t e l a   d e   P r o g r e s s o   * / 
 . a c t i v i t i e s - s u m m a r y   { 
         m a r g i n - b o t t o m :   3 0 p x ; 
 } 
 
 . s u m m a r y - s t a t s   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 0 0 p x ,   1 f r ) ) ; 
         g a p :   2 0 p x ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . s u m m a r y - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 5 p x ; 
         p a d d i n g :   2 0 p x ; 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . s u m m a r y - i t e m : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   4 p x   1 6 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 . s u m m a r y - i c o n   { 
         w i d t h :   5 0 p x ; 
         h e i g h t :   5 0 p x ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   2 0 p x ; 
         c o l o r :   w h i t e ; 
 } 
 
 . s u m m a r y - i c o n . t o t a l   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 3 b 8 2 f 6 ,   # 1 d 4 e d 8 ) ; 
 } 
 
 . s u m m a r y - i c o n . a p p r o v e d   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 0 b 9 8 1 ,   # 0 5 9 6 6 9 ) ; 
 } 
 
 . s u m m a r y - i c o n . p e n d i n g   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 5 9 e 0 b ,   # d 9 7 7 0 6 ) ; 
 } 
 
 . s u m m a r y - i c o n . r e j e c t e d   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # e f 4 4 4 4 ,   # d c 2 6 2 6 ) ; 
 } 
 
 . s u m m a r y - i n f o   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 } 
 
 . s u m m a r y - l a b e l   { 
         f o n t - s i z e :   1 4 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - w e i g h t :   5 0 0 ; 
         m a r g i n - b o t t o m :   4 p x ; 
 } 
 
 . s u m m a r y - v a l u e   { 
         f o n t - s i z e :   2 4 p x ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
 } 
 
 . a c t i v i t i e s - l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   2 0 p x ; 
 } 
 
 . a c t i v i t y - c a r d   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         b o x - s h a d o w :   0   2 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . a c t i v i t y - c a r d : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x ) ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 . a c t i v i t y - c a r d - c o m p l e t e d   { 
         b o r d e r - l e f t :   4 p x   s o l i d   # 1 0 b 9 8 1 ; 
 } 
 
 . a c t i v i t y - c a r d - i n - p r o g r e s s   { 
         b o r d e r - l e f t :   4 p x   s o l i d   # f 5 9 e 0 b ; 
 } 
 
 . a c t i v i t y - c a r d - r e j e c t e d   { 
         b o r d e r - l e f t :   4 p x   s o l i d   # e f 4 4 4 4 ; 
 } 
 
 . a c t i v i t y - c a r d - d r a f t   { 
         b o r d e r - l e f t :   4 p x   s o l i d   # 6 b 7 2 8 0 ; 
 } 
 
 . a c t i v i t y - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         p a d d i n g :   2 4 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f a f c ,   # f 1 f 5 f 9 ) ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . a c t i v i t y - i n f o   { 
         f l e x :   1 ; 
 } 
 
 . a c t i v i t y - t i t l e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         m a r g i n - b o t t o m :   8 p x ; 
 } 
 
 . a c t i v i t y - t i t l e   h 3   { 
         m a r g i n :   0 ; 
         f o n t - s i z e :   2 0 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         l i n e - h e i g h t :   1 . 3 ; 
 } 
 
 . a c t i v i t y - b a d g e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
         p a d d i n g :   6 p x   1 2 p x ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . a c t i v i t y - c a r d - c o m p l e t e d   . a c t i v i t y - b a d g e   { 
         b a c k g r o u n d :   # d c f c e 7 ; 
         c o l o r :   # 1 6 6 5 3 4 ; 
 } 
 
 . a c t i v i t y - c a r d - i n - p r o g r e s s   . a c t i v i t y - b a d g e   { 
         b a c k g r o u n d :   # f e f 3 c 7 ; 
         c o l o r :   # 9 2 4 0 0 e ; 
 } 
 
 . a c t i v i t y - c a r d - r e j e c t e d   . a c t i v i t y - b a d g e   { 
         b a c k g r o u n d :   # f e e 2 e 2 ; 
         c o l o r :   # d c 2 6 2 6 ; 
 } 
 
 . a c t i v i t y - c a r d - d r a f t   . a c t i v i t y - b a d g e   { 
         b a c k g r o u n d :   # f 3 f 4 f 6 ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
 } 
 
 . a c t i v i t y - d e s c r i p t i o n   { 
         m a r g i n - t o p :   8 p x ; 
 } 
 
 . a c t i v i t y - d e s c r i p t i o n   p   { 
         m a r g i n :   0 ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - s i z e :   1 4 p x ; 
         l i n e - h e i g h t :   1 . 5 ; 
 } 
 
 . a c t i v i t y - h o u r s   { 
         t e x t - a l i g n :   r i g h t ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . h o u r s - d i s p l a y   { 
         m a r g i n - b o t t o m :   8 p x ; 
 } 
 
 . h o u r s - c u r r e n t   { 
         f o n t - s i z e :   2 4 p x ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         l i n e - h e i g h t :   1 ; 
 } 
 
 . h o u r s - a p p r o v e d   { 
         f o n t - s i z e :   1 4 p x ; 
         c o l o r :   # 1 0 b 9 8 1 ; 
         f o n t - w e i g h t :   6 0 0 ; 
         m a r g i n - t o p :   4 p x ; 
 } 
 
 . c a t e g o r y - n a m e   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . a c t i v i t y - d e t a i l s   { 
         p a d d i n g :   2 4 p x ; 
 } 
 
 . d e t a i l s - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 0 0 p x ,   1 f r ) ) ; 
         g a p :   2 0 p x ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . a c t i v i t y - s t a t   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   1 6 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . s t a t - i c o n   { 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 3 b 8 2 f 6 ,   # 1 d 4 e d 8 ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c o l o r :   w h i t e ; 
         f o n t - s i z e :   1 6 p x ; 
 } 
 
 . s t a t - i n f o   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 } 
 
 . s t a t - l a b e l   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
         m a r g i n - b o t t o m :   2 p x ; 
 } 
 
 . s t a t - v a l u e   { 
         f o n t - s i z e :   1 4 p x ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . a c t i v i t y - f e e d b a c k   { 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . f e e d b a c k - m e s s a g e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   1 6 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         m a r g i n - b o t t o m :   1 2 p x ; 
 } 
 
 . f e e d b a c k - m e s s a g e . e r r o r   { 
         b a c k g r o u n d :   # f e f 2 f 2 ; 
         b o r d e r :   1 p x   s o l i d   # f e c a c a ; 
 } 
 
 . f e e d b a c k - m e s s a g e . w a r n i n g   { 
         b a c k g r o u n d :   # f f f b e b ; 
         b o r d e r :   1 p x   s o l i d   # f e d 7 a a ; 
 } 
 
 . f e e d b a c k - i c o n   { 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   1 6 p x ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . f e e d b a c k - m e s s a g e . e r r o r   . f e e d b a c k - i c o n   { 
         b a c k g r o u n d :   # f e e 2 e 2 ; 
         c o l o r :   # d c 2 6 2 6 ; 
 } 
 
 . f e e d b a c k - m e s s a g e . w a r n i n g   . f e e d b a c k - i c o n   { 
         b a c k g r o u n d :   # f e f 3 c 7 ; 
         c o l o r :   # d 9 7 7 0 6 ; 
 } 
 
 . f e e d b a c k - c o n t e n t   h 4   { 
         m a r g i n :   0   0   8 p x   0 ; 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
 } 
 
 . f e e d b a c k - c o n t e n t   p   { 
         m a r g i n :   0 ; 
         f o n t - s i z e :   1 3 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         l i n e - h e i g h t :   1 . 5 ; 
 } 
 
 . a c t i v i t y - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 2 p x ; 
         f l e x - w r a p :   w r a p ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . d o c u m e n t s - s e c t i o n   { 
         m a r g i n - t o p :   2 0 p x ; 
         p a d d i n g - t o p :   2 0 p x ; 
         b o r d e r - t o p :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . d o c u m e n t s - l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   1 2 p x ; 
 } 
 
 . d o c u m e n t - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   1 6 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . d o c u m e n t - i c o n   { 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 b 7 2 8 0 ,   # 4 b 5 5 6 3 ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c o l o r :   w h i t e ; 
         f o n t - s i z e :   1 6 p x ; 
 } 
 
 . d o c u m e n t - i n f o   { 
         f l e x :   1 ; 
 } 
 
 . d o c u m e n t - n a m e   { 
         f o n t - s i z e :   1 4 p x ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 . d o c u m e n t - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   8 p x ; 
 } 
 
 / *   R e s p o n s i v i d a d e   p a r a   A c o m p a n h a m e n t o   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . s u m m a r y - s t a t s   { 
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ; 
                 g a p :   1 5 p x ; 
         } 
         
         . a c t i v i t y - h e a d e r   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   1 6 p x ; 
                 a l i g n - i t e m s :   s t r e t c h ; 
         } 
         
         . a c t i v i t y - h o u r s   { 
                 t e x t - a l i g n :   l e f t ; 
         } 
         
         . d e t a i l s - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   1 2 p x ; 
         } 
         
         . a c t i v i t y - a c t i o n s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
         } 
         
         . a c t i v i t y - a c t i o n s   . b t n   { 
                 w i d t h :   1 0 0 % ; 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
         . s u m m a r y - s t a t s   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
         
         . s u m m a r y - i t e m   { 
                 p a d d i n g :   1 6 p x ; 
         } 
         
         . a c t i v i t y - h e a d e r , 
         . a c t i v i t y - d e t a i l s   { 
                 p a d d i n g :   2 0 p x ; 
         } 
         
         . a c t i v i t y - t i t l e   h 3   { 
                 f o n t - s i z e :   1 8 p x ; 
         } 
         
         . h o u r s - c u r r e n t   { 
                 f o n t - s i z e :   2 0 p x ; 
         } 
 } 
 
 
 
 / *   C a r d s   M e n o r e s   -   T e l a   d e   A c o m p a n h a m e n t o   * / 
 . a c t i v i t i e s - s u m m a r y   { 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . s u m m a r y - s t a t s   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 1 5 0 p x ,   1 f r ) ) ; 
         g a p :   1 5 p x ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . s u m m a r y - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   1 5 p x ; 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o x - s h a d o w :   0   1 p x   4 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . s u m m a r y - i t e m : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 . s u m m a r y - i c o n   { 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   1 6 p x ; 
         c o l o r :   w h i t e ; 
 } 
 
 . s u m m a r y - i c o n . t o t a l   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 3 b 8 2 f 6 ,   # 1 d 4 e d 8 ) ; 
 } 
 
 . s u m m a r y - i c o n . a p p r o v e d   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 0 b 9 8 1 ,   # 0 5 9 6 6 9 ) ; 
 } 
 
 . s u m m a r y - i c o n . p e n d i n g   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 5 9 e 0 b ,   # d 9 7 7 0 6 ) ; 
 } 
 
 . s u m m a r y - i c o n . r e j e c t e d   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # e f 4 4 4 4 ,   # d c 2 6 2 6 ) ; 
 } 
 
 . s u m m a r y - i n f o   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 } 
 
 . s u m m a r y - l a b e l   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - w e i g h t :   5 0 0 ; 
         m a r g i n - b o t t o m :   2 p x ; 
 } 
 
 . s u m m a r y - v a l u e   { 
         f o n t - s i z e :   1 8 p x ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
 } 
 
 . a c t i v i t i e s - l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   1 5 p x ; 
 } 
 
 . a c t i v i t y - c a r d   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   0   1 p x   6 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . a c t i v i t y - c a r d : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 . a c t i v i t y - c a r d - c o m p l e t e d   { 
         b o r d e r - l e f t :   3 p x   s o l i d   # 1 0 b 9 8 1 ; 
 } 
 
 . a c t i v i t y - c a r d - i n - p r o g r e s s   { 
         b o r d e r - l e f t :   3 p x   s o l i d   # f 5 9 e 0 b ; 
 } 
 
 . a c t i v i t y - c a r d - r e j e c t e d   { 
         b o r d e r - l e f t :   3 p x   s o l i d   # e f 4 4 4 4 ; 
 } 
 
 . a c t i v i t y - c a r d - d r a f t   { 
         b o r d e r - l e f t :   3 p x   s o l i d   # 6 b 7 2 8 0 ; 
 } 
 
 . a c t i v i t y - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         p a d d i n g :   1 6 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f a f c ,   # f 1 f 5 f 9 ) ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . a c t i v i t y - i n f o   { 
         f l e x :   1 ; 
 } 
 
 . a c t i v i t y - t i t l e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 0 p x ; 
         m a r g i n - b o t t o m :   6 p x ; 
 } 
 
 . a c t i v i t y - t i t l e   h 3   { 
         m a r g i n :   0 ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         l i n e - h e i g h t :   1 . 3 ; 
 } 
 
 . a c t i v i t y - b a d g e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   4 p x ; 
         p a d d i n g :   4 p x   8 p x ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 0 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . a c t i v i t y - c a r d - c o m p l e t e d   . a c t i v i t y - b a d g e   { 
         b a c k g r o u n d :   # d c f c e 7 ; 
         c o l o r :   # 1 6 6 5 3 4 ; 
 } 
 
 . a c t i v i t y - c a r d - i n - p r o g r e s s   . a c t i v i t y - b a d g e   { 
         b a c k g r o u n d :   # f e f 3 c 7 ; 
         c o l o r :   # 9 2 4 0 0 e ; 
 } 
 
 . a c t i v i t y - c a r d - r e j e c t e d   . a c t i v i t y - b a d g e   { 
         b a c k g r o u n d :   # f e e 2 e 2 ; 
         c o l o r :   # d c 2 6 2 6 ; 
 } 
 
 . a c t i v i t y - c a r d - d r a f t   . a c t i v i t y - b a d g e   { 
         b a c k g r o u n d :   # f 3 f 4 f 6 ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
 } 
 
 . a c t i v i t y - d e s c r i p t i o n   { 
         m a r g i n - t o p :   6 p x ; 
 } 
 
 . a c t i v i t y - d e s c r i p t i o n   p   { 
         m a r g i n :   0 ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - s i z e :   1 2 p x ; 
         l i n e - h e i g h t :   1 . 4 ; 
 } 
 
 . a c t i v i t y - h o u r s   { 
         t e x t - a l i g n :   r i g h t ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . h o u r s - d i s p l a y   { 
         m a r g i n - b o t t o m :   6 p x ; 
 } 
 
 . h o u r s - c u r r e n t   { 
         f o n t - s i z e :   1 8 p x ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         l i n e - h e i g h t :   1 ; 
 } 
 
 . h o u r s - a p p r o v e d   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 1 0 b 9 8 1 ; 
         f o n t - w e i g h t :   6 0 0 ; 
         m a r g i n - t o p :   2 p x ; 
 } 
 
 . c a t e g o r y - n a m e   { 
         f o n t - s i z e :   1 0 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . a c t i v i t y - d e t a i l s   { 
         p a d d i n g :   1 6 p x ; 
 } 
 
 . d e t a i l s - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 1 5 0 p x ,   1 f r ) ) ; 
         g a p :   1 2 p x ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . a c t i v i t y - s t a t   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
         p a d d i n g :   1 2 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . s t a t - i c o n   { 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 3 b 8 2 f 6 ,   # 1 d 4 e d 8 ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c o l o r :   w h i t e ; 
         f o n t - s i z e :   1 2 p x ; 
 } 
 
 . s t a t - i n f o   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 } 
 
 . s t a t - l a b e l   { 
         f o n t - s i z e :   1 0 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
         m a r g i n - b o t t o m :   1 p x ; 
 } 
 
 . s t a t - v a l u e   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . a c t i v i t y - f e e d b a c k   { 
         m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . f e e d b a c k - m e s s a g e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         g a p :   1 0 p x ; 
         p a d d i n g :   1 2 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         m a r g i n - b o t t o m :   8 p x ; 
 } 
 
 . f e e d b a c k - m e s s a g e . e r r o r   { 
         b a c k g r o u n d :   # f e f 2 f 2 ; 
         b o r d e r :   1 p x   s o l i d   # f e c a c a ; 
 } 
 
 . f e e d b a c k - m e s s a g e . w a r n i n g   { 
         b a c k g r o u n d :   # f f f b e b ; 
         b o r d e r :   1 p x   s o l i d   # f e d 7 a a ; 
 } 
 
 . f e e d b a c k - i c o n   { 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   1 2 p x ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . f e e d b a c k - m e s s a g e . e r r o r   . f e e d b a c k - i c o n   { 
         b a c k g r o u n d :   # f e e 2 e 2 ; 
         c o l o r :   # d c 2 6 2 6 ; 
 } 
 
 . f e e d b a c k - m e s s a g e . w a r n i n g   . f e e d b a c k - i c o n   { 
         b a c k g r o u n d :   # f e f 3 c 7 ; 
         c o l o r :   # d 9 7 7 0 6 ; 
 } 
 
 . f e e d b a c k - c o n t e n t   h 4   { 
         m a r g i n :   0   0   6 p x   0 ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
 } 
 
 . f e e d b a c k - c o n t e n t   p   { 
         m a r g i n :   0 ; 
         f o n t - s i z e :   1 1 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         l i n e - h e i g h t :   1 . 4 ; 
 } 
 
 . a c t i v i t y - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   8 p x ; 
         f l e x - w r a p :   w r a p ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . d o c u m e n t s - s e c t i o n   { 
         m a r g i n - t o p :   1 5 p x ; 
         p a d d i n g - t o p :   1 5 p x ; 
         b o r d e r - t o p :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . d o c u m e n t s - l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   8 p x ; 
 } 
 
 . d o c u m e n t - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 0 p x ; 
         p a d d i n g :   1 2 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . d o c u m e n t - i c o n   { 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 b 7 2 8 0 ,   # 4 b 5 5 6 3 ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c o l o r :   w h i t e ; 
         f o n t - s i z e :   1 2 p x ; 
 } 
 
 . d o c u m e n t - i n f o   { 
         f l e x :   1 ; 
 } 
 
 . d o c u m e n t - n a m e   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 . d o c u m e n t - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   6 p x ; 
 } 
 
 / *   R e s p o n s i v i d a d e   p a r a   C a r d s   M e n o r e s   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . s u m m a r y - s t a t s   { 
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ; 
                 g a p :   1 2 p x ; 
         } 
         
         . a c t i v i t y - h e a d e r   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   1 2 p x ; 
                 a l i g n - i t e m s :   s t r e t c h ; 
         } 
         
         . a c t i v i t y - h o u r s   { 
                 t e x t - a l i g n :   l e f t ; 
         } 
         
         . d e t a i l s - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   8 p x ; 
         } 
         
         . a c t i v i t y - a c t i o n s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
         } 
         
         . a c t i v i t y - a c t i o n s   . b t n   { 
                 w i d t h :   1 0 0 % ; 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
         . s u m m a r y - s t a t s   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
         
         . s u m m a r y - i t e m   { 
                 p a d d i n g :   1 2 p x ; 
         } 
         
         . a c t i v i t y - h e a d e r , 
         . a c t i v i t y - d e t a i l s   { 
                 p a d d i n g :   1 2 p x ; 
         } 
         
         . a c t i v i t y - t i t l e   h 3   { 
                 f o n t - s i z e :   1 4 p x ; 
         } 
         
         . h o u r s - c u r r e n t   { 
                 f o n t - s i z e :   1 6 p x ; 
         } 
 } 
 
 
 
 / *   L a y o u t   H o r i z o n t a l   p a r a   I n f o r m a � � e s   d o s   C a r d s   * / 
 . i n f o - r o w   { 
         d i s p l a y :   f l e x ; 
         f l e x - w r a p :   w r a p ; 
         g a p :   2 0 p x ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
         p a d d i n g :   1 2 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
 } 
 
 . i n f o - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
         f l e x :   1 ; 
         m i n - w i d t h :   2 0 0 p x ; 
 } 
 
 . i n f o - i t e m   i   { 
         w i d t h :   1 6 p x ; 
         c o l o r :   # 3 b 8 2 f 6 ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 . i n f o - l a b e l   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - w e i g h t :   5 0 0 ; 
         w h i t e - s p a c e :   n o w r a p ; 
 } 
 
 . i n f o - v a l u e   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         f o n t - w e i g h t :   6 0 0 ; 
         f l e x :   1 ; 
 } 
 
 / *   R e s p o n s i v i d a d e   p a r a   L a y o u t   H o r i z o n t a l   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . i n f o - r o w   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   1 2 p x ; 
         } 
         
         . i n f o - i t e m   { 
                 m i n - w i d t h :   a u t o ; 
                 j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
         . i n f o - r o w   { 
                 p a d d i n g :   1 0 p x ; 
                 g a p :   1 0 p x ; 
         } 
         
         . i n f o - i t e m   { 
                 g a p :   6 p x ; 
         } 
         
         . i n f o - l a b e l , 
         . i n f o - v a l u e   { 
                 f o n t - s i z e :   1 1 p x ; 
         } 
 } 
 
 
 
 / *   E s t i l o s   p a r a   E d i t a r   U s u � r i o   * / 
 . d a n g e r - a c t i o n s   { 
         m a r g i n - t o p :   3 0 p x ; 
         p a d d i n g :   2 0 p x ; 
         b a c k g r o u n d :   # f e f 2 f 2 ; 
         b o r d e r :   1 p x   s o l i d   # f e c a c a ; 
         b o r d e r - r a d i u s :   8 p x ; 
 } 
 
 . d a n g e r - a c t i o n s   h 4   { 
         m a r g i n :   0   0   1 5 p x   0 ; 
         c o l o r :   # d c 2 6 2 6 ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . a c t i o n - b u t t o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 2 p x ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . a c t i o n - i n f o   { 
         b a c k g r o u n d :   # f f f b e b ; 
         b o r d e r :   1 p x   s o l i d   # f e d 7 a a ; 
         b o r d e r - r a d i u s :   6 p x ; 
         p a d d i n g :   1 2 p x ; 
 } 
 
 . a c t i o n - i n f o   p   { 
         m a r g i n :   0   0   8 p x   0 ; 
         f o n t - s i z e :   1 3 p x ; 
         c o l o r :   # 9 2 4 0 0 e ; 
         l i n e - h e i g h t :   1 . 4 ; 
 } 
 
 . a c t i o n - i n f o   p : l a s t - c h i l d   { 
         m a r g i n - b o t t o m :   0 ; 
 } 
 
 . s t a t u s - b a d g e   { 
         p a d d i n g :   4 p x   8 p x ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 1 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . s t a t u s - a c t i v e   { 
         b a c k g r o u n d :   # d c f c e 7 ; 
         c o l o r :   # 1 6 6 5 3 4 ; 
 } 
 
 . s t a t u s - i n a c t i v e   { 
         b a c k g r o u n d :   # f e e 2 e 2 ; 
         c o l o r :   # d c 2 6 2 6 ; 
 } 
 
 / *   R e s p o n s i v i d a d e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . a c t i o n - b u t t o n s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
         } 
         
         . a c t i o n - b u t t o n s   . b t n   { 
                 w i d t h :   1 0 0 % ; 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
         } 
         
         . d a n g e r - a c t i o n s   { 
                 p a d d i n g :   1 5 p x ; 
         } 
 } 
 
 
 
 / *   E s t i l o   p a r a   d e b u g   * / 
 . f o r m - t e x t   { 
         d i s p l a y :   b l o c k ; 
         m a r g i n - t o p :   5 p x ; 
         f o n t - s i z e :   1 1 p x ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - s t y l e :   i t a l i c ; 
 } 
 
 
 
 / *   E s t i l o s   p a r a   E d i t a r   U s u � r i o   -   V i s u a l   M o d e r n o   * / 
 . e d i t - c o n t a i n e r   { 
         m a x - w i d t h :   1 2 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
 } 
 
 . e d i t - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   3 0 p x ; 
         m a r g i n - b o t t o m :   3 0 p x ; 
 } 
 
 . f o r m - s e c t i o n   { 
         g r i d - c o l u m n :   1 ; 
 } 
 
 . a c t i o n s - s e c t i o n   { 
         g r i d - c o l u m n :   2 ; 
 } 
 
 . i n f o - s e c t i o n   { 
         g r i d - c o l u m n :   1   /   - 1 ; 
 } 
 
 / *   H e a d e r   d o   F o r m u l � r i o   * / 
 . f o r m - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 5 p x ; 
         p a d d i n g :   2 5 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a   0 % ,   # 7 6 4 b a 2   1 0 0 % ) ; 
         c o l o r :   w h i t e ; 
         b o r d e r - r a d i u s :   1 2 p x   1 2 p x   0   0 ; 
 } 
 
 . h e a d e r - i c o n   { 
         w i d t h :   5 0 p x ; 
         h e i g h t :   5 0 p x ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   2 0 p x ; 
 } 
 
 . h e a d e r - c o n t e n t   h 3   { 
         m a r g i n :   0   0   5 p x   0 ; 
         f o n t - s i z e :   2 0 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . h e a d e r - c o n t e n t   p   { 
         m a r g i n :   0 ; 
         o p a c i t y :   0 . 9 ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 / *   S t a t u s   T o g g l e   * / 
 . s t a t u s - g r o u p   { 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         b o r d e r - r a d i u s :   8 p x ; 
         p a d d i n g :   2 0 p x ; 
         m a r g i n :   2 0 p x   0 ; 
 } 
 
 . f o r m - l a b e l   { 
         d i s p l a y :   b l o c k ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 2 d 3 7 4 8 ; 
         m a r g i n - b o t t o m :   1 2 p x ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 . s t a t u s - t o g g l e   { 
         m a r g i n - b o t t o m :   1 0 p x ; 
 } 
 
 . t o g g l e - l a b e l   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         c u r s o r :   p o i n t e r ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 . t o g g l e - s l i d e r   { 
         p o s i t i o n :   r e l a t i v e ; 
         w i d t h :   5 0 p x ; 
         h e i g h t :   2 6 p x ; 
         b a c k g r o u n d :   # c b d 5 e 0 ; 
         b o r d e r - r a d i u s :   1 3 p x ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . t o g g l e - s l i d e r : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   2 p x ; 
         l e f t :   2 p x ; 
         w i d t h :   2 2 p x ; 
         h e i g h t :   2 2 p x ; 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ; 
 } 
 
 . t o g g l e - l a b e l   i n p u t [ t y p e = ' c h e c k b o x ' ]   { 
         d i s p l a y :   n o n e ; 
 } 
 
 . t o g g l e - l a b e l   i n p u t [ t y p e = ' c h e c k b o x ' ] : c h e c k e d   +   . t o g g l e - s l i d e r   { 
         b a c k g r o u n d :   # 4 8 b b 7 8 ; 
 } 
 
 . t o g g l e - l a b e l   i n p u t [ t y p e = ' c h e c k b o x ' ] : c h e c k e d   +   . t o g g l e - s l i d e r : : b e f o r e   { 
         t r a n s f o r m :   t r a n s l a t e X ( 2 4 p x ) ; 
 } 
 
 . t o g g l e - t e x t   { 
         f o n t - s i z e :   1 6 p x ; 
         c o l o r :   # 2 d 3 7 4 8 ; 
 } 
 
 . f o r m - h e l p   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 7 1 8 0 9 6 ; 
         m a r g i n - t o p :   8 p x ; 
 } 
 
 . t e x t - s u c c e s s   { 
         c o l o r :   # 4 8 b b 7 8 ; 
 } 
 
 . t e x t - d a n g e r   { 
         c o l o r :   # f 5 6 5 6 5 ; 
 } 
 
 / *   A � � e s   A d m i n i s t r a t i v a s   * / 
 . a c t i o n s - c a r d   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   0   4 p x   6 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . a c t i o n s - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 5 p x ; 
         p a d d i n g :   2 5 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 0 9 3 f b   0 % ,   # f 5 5 7 6 c   1 0 0 % ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . a c t i o n s - i c o n   { 
         w i d t h :   5 0 p x ; 
         h e i g h t :   5 0 p x ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   2 0 p x ; 
 } 
 
 . a c t i o n s - c o n t e n t   h 3   { 
         m a r g i n :   0   0   5 p x   0 ; 
         f o n t - s i z e :   2 0 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . a c t i o n s - c o n t e n t   p   { 
         m a r g i n :   0 ; 
         o p a c i t y :   0 . 9 ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 . a c t i o n s - g r i d   { 
         p a d d i n g :   2 5 p x ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   2 0 p x ; 
 } 
 
 . a c t i o n - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         g a p :   1 5 p x ; 
         p a d d i n g :   2 0 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . a c t i o n - i t e m : h o v e r   { 
         b a c k g r o u n d :   # e d f 2 f 7 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 } 
 
 . a c t i o n - i c o n   { 
         w i d t h :   4 5 p x ; 
         h e i g h t :   4 5 p x ; 
         b o r d e r - r a d i u s :   1 0 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   1 8 p x ; 
         c o l o r :   w h i t e ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . a c t i o n - i c o n . s t a t u s   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 6 a d 5 5 ,   # e d 8 9 3 6 ) ; 
 } 
 
 . a c t i o n - i c o n . d a n g e r   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f c 8 1 8 1 ,   # f 5 6 5 6 5 ) ; 
 } 
 
 . a c t i o n - c o n t e n t   { 
         f l e x :   1 ; 
 } 
 
 . a c t i o n - c o n t e n t   h 4   { 
         m a r g i n :   0   0   5 p x   0 ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 2 d 3 7 4 8 ; 
 } 
 
 . a c t i o n - c o n t e n t   p   { 
         m a r g i n :   0   0   1 2 p x   0 ; 
         f o n t - s i z e :   1 3 p x ; 
         c o l o r :   # 7 1 8 0 9 6 ; 
         l i n e - h e i g h t :   1 . 4 ; 
 } 
 
 / *   I n f o r m a � � e s   d o   S i s t e m a   * / 
 . i n f o - c a r d   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   0   4 p x   6 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . i n f o - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 5 p x ; 
         p a d d i n g :   2 5 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 4 f a c f e   0 % ,   # 0 0 f 2 f e   1 0 0 % ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . i n f o - i c o n   { 
         w i d t h :   5 0 p x ; 
         h e i g h t :   5 0 p x ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   2 0 p x ; 
 } 
 
 . i n f o - c o n t e n t   h 3   { 
         m a r g i n :   0   0   5 p x   0 ; 
         f o n t - s i z e :   2 0 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . i n f o - c o n t e n t   p   { 
         m a r g i n :   0 ; 
         o p a c i t y :   0 . 9 ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 . i n f o - g r i d   { 
         p a d d i n g :   2 5 p x ; 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 5 0 p x ,   1 f r ) ) ; 
         g a p :   2 0 p x ; 
 } 
 
 . i n f o - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   1 5 p x ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 } 
 
 . i n f o - i c o n - s m a l l   { 
         w i d t h :   3 5 p x ; 
         h e i g h t :   3 5 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 ) ; 
         b o r d e r - r a d i u s :   8 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c o l o r :   w h i t e ; 
         f o n t - s i z e :   1 4 p x ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . i n f o - d e t a i l s   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         f l e x :   1 ; 
 } 
 
 . i n f o - l a b e l   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 7 1 8 0 9 6 ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
         m a r g i n - b o t t o m :   2 p x ; 
 } 
 
 . i n f o - v a l u e   { 
         f o n t - s i z e :   1 4 p x ; 
         c o l o r :   # 2 d 3 7 4 8 ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . p r o f i l e - b a d g e   { 
         p a d d i n g :   4 p x   8 p x ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 1 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . p r o f i l e - e s t u d a n t e   { 
         b a c k g r o u n d :   # b e e 3 f 8 ; 
         c o l o r :   # 2 b 6 c b 0 ; 
 } 
 
 . p r o f i l e - c o o r d e n a c a o   { 
         b a c k g r o u n d :   # f b b 6 c e ; 
         c o l o r :   # b 8 3 2 8 0 ; 
 } 
 
 / *   R e s p o n s i v i d a d e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . e d i t - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   2 0 p x ; 
         } 
         
         . f o r m - s e c t i o n , 
         . a c t i o n s - s e c t i o n   { 
                 g r i d - c o l u m n :   1 ; 
         } 
         
         . i n f o - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
         
         . f o r m - h e a d e r , 
         . a c t i o n s - h e a d e r , 
         . i n f o - h e a d e r   { 
                 p a d d i n g :   2 0 p x ; 
         } 
         
         . h e a d e r - i c o n , 
         . a c t i o n s - i c o n , 
         . i n f o - i c o n   { 
                 w i d t h :   4 0 p x ; 
                 h e i g h t :   4 0 p x ; 
                 f o n t - s i z e :   1 6 p x ; 
         } 
         
         . h e a d e r - c o n t e n t   h 3 , 
         . a c t i o n s - c o n t e n t   h 3 , 
         . i n f o - c o n t e n t   h 3   { 
                 f o n t - s i z e :   1 8 p x ; 
         } 
 } 
 
 